标签:目录 浏览器 地址 conf nofile max network x86_64 root
环境centos7/ElasticSearch7.6.1,这里写了这个版本不需要JAVA jdk,以前的版本需要安装java JDK ElasticSearch下载地址
sudo tar -zxvf elasticsearch-7.6.1-linux-x86_64.tar.gz
sudo useradd es
sudo passwd es
sudo chown -R es elasticsearch-7.6.1
sudo vi /opt/elasticsearch-7.6.1/config/elasticsearch.yml
cluster.name: dust
node.name: node-1
network.host: 0.0.0.0
http.port: 9200
sudo vi /etc/security/limits.conf
es soft nofile 65536
es hard nofile 65536
es soft nproc 4096
es hard nproc 4096
sudo vi /etc/sysctl.conf
vm.max_map_count=262144
修改完 sudo sysctl -p 生效
./elasticsearch-7.6.1/bin/elasticsearch -d
标签:目录 浏览器 地址 conf nofile max network x86_64 root
原文地址:https://www.cnblogs.com/SuperDust/p/12534156.html