躬行系列-ElasticSearch集群部署

版本选择

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

常用命令

你可能感兴趣的:(ElasticSearch)