安装Elasticsearch 参考:https://my.oschina.net/topeagle/blog/591451?fromerr=mzOr2qzZ
https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.0.0-linux-x86_64.tar.gz #elasticsearch下载地址
#因为安全问题,需要创建elsearch用户组及elsearch用户
groupadd elsearch
useradd elsearch -g elsearch -p elasticsearch
#更改elasticsearch文件夹及内部文件的所属用户及组为elsearch:elsearch
chown -R elsearch:elsearch /root/elasticsearch-7.0.0
#修改配置文件config/elasticsearch.yml 参考:https://blog.51cto.com/zero01/2079879
cluster.name: master-node # 集群中的名称 单节点可以不用配
node.name: master # 该节点名称 有个默认名称node-1
node.master: true # 意思是该节点为主节点
node.data: false # 表示这不是数据节点
network.host: 0.0.0.0 # 监听全部ip,在实际环境中应设置为一个安全的ip
http.port: 9200 # es服务的端口号
discovery.zen.ping.unicast.hosts: ["192.168.77.128", "192.168.77.130", "192.168.77.134"] # 配置自动发现 有三个选择,需要开启一个
#启动出错参考
https://blog.csdn.net/wd2014610/article/details/89532638
https://blog.csdn.net/xiaoying0531/article/details/78941631
http://localhost:9200/