版本抉择
CentOS7.6
java version “1.8.0_221”
elasticsearch-7.13.3
下载地址
百度官网即可
部署细节
java 环境疏忽
解压缩 …
因为平安问题,Elasticsearch 不容许 root 用户间接运行,所以要创立新用户
useradd es
passwd es
es
es
批改目录归属用户及用户组
chown -R es:es /usr/local/elasticsearch-7.13.3
批改配置文件 vim elasticsearch.yml
退出如下配置
cluster.name: elasticsearch
node.name: node-1
network.host: 0.0.0.0
http.port: 9200
cluster.initial_master_nodes: ["node-1"]
为了 es 的失常应用, 须要批改一些零碎的配置文件
vim /etc/security/limits.conf
es soft nofile 65536
es hard nofile 65536
vim /etc/security/limits.d/20-nproc.conf
es soft nofile 65536
es hard nofile 65536
vim /etc/sysctl.conf
vm.max_map_count=655360
#从新加载
sysctl -p
启动须要切换到 es 用户su es