1.首先安装JAVA环境 2.下载链接 wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.3.2.deb wget https://artifacts.elastic.co/downloads/elas ...
分类:
系统相关 时间:
2021-07-05 17:46:31
阅读次数:
0
cd /etc/yum.repos.d/ rm -f CentOS-Base.repo CentOS-AppStream.repo CentOS-PowerTools.repo CentOS-centosplus.repo CentOS-Extras.repo curl -o CentOS-Base ...
分类:
其他好文 时间:
2021-07-05 16:52:40
阅读次数:
0
官网配置详解 1.从官网下载最新版本的calico部署文件 # 下载的etcd版本 curl https://docs.projectcalico.org/manifests/calico-etcd.yaml -o calico.yaml 2.配置外置etcd,这里使用的和master同一个etcd ...
分类:
其他好文 时间:
2021-07-05 16:43:09
阅读次数:
0
GET /megacorp/employee/_search megacorp :索引库 employee:类型 curl 'http://localhost:9200/?pretty' pretty:美化结果输出 GET /_count { "query": { "match_all": {} } ...
分类:
其他好文 时间:
2021-07-01 17:21:12
阅读次数:
0
1.安装python sudo yum install -y curl policycoreutils-pythonopenssh-server 2.将SSH服务设置成开机自启动,分别执行以下命令: sudo systemctl enable sshd sudo systemctl start ss ...
分类:
系统相关 时间:
2021-07-01 17:07:32
阅读次数:
0
macOS安装Oh My Zsh macOS从Catalina开始将默认的shell变为了Zsh,可以安装Oh My Zsh让其更加好用。 安装命令 sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zs ...
分类:
系统相关 时间:
2021-07-01 16:48:07
阅读次数:
0
#!/usr/bin/env bash __Author__="liy" # 发送钉钉告警 function DingDing(){ curl 'https://oapi.dingtalk.com/robot/send?access_token=xxxxxxxxxxxxxxxxxxxxxxxxxxx ...
分类:
其他好文 时间:
2021-06-30 18:14:38
阅读次数:
0
环境为最小化安装初始化环境 yum install -y vim net-tools wget tree lrzsz关闭防火墙systemctl stop firewalld.servicesystemctl disable firewalld.service关闭selinuxsed -i 's/S ...
分类:
数据库 时间:
2021-06-29 15:18:17
阅读次数:
0
原文:https://www.jianshu.com/p/534741a16c56 配置 mkdir -p ~/.vim/syntax cd ~/.vim/syntax wget http://www.vim.org/scripts/download_script.php?src_id=14376 ...
分类:
其他好文 时间:
2021-06-28 21:05:53
阅读次数:
0
redis的初级使用 下载redis的最新版 wget http://download.redis.io/releases/redis-6.0.3.tar.gz 解压并编译 tar -zxvf redis-6.0.3.tar.gz cd redis-6.0.3 make 修改配置文件 bind 12 ...
分类:
其他好文 时间:
2021-06-28 20:26:16
阅读次数:
0