下载地址: Get Started with Elasticsearch, Kibana, and the Elastic Stack | Elastic
下载前 先安装java
yum install java -y
1.下载完成后开始解压
tar -zxvf elasticsearch-7.14.0-linux-x86_64.tar
2. es 不能用 root 运行
[逐行去运行]
chown -R es.es elasticsearch-7.14.0
chmod -R 777 elasticsearch-7.14.0
groupadd es
useradd -g es es
passwd es
su es
3.修改配置文件
1.进入config/elasticsearch.yml 中
cluster.initial_master_nodes: ["node-1"] network.host: 0.0.0.0
2. vi /etc/security/limits.conf 新增
* soft nofile 65536 * hard nofile 65536 * soft nproc 4096 * hard nproc 4096
3.修改/etc/sysctl.conf
,增加如下内容
vm.max_map_count=655360
4. 让配置生效
sysctl -p
4.启动es
先切换 es用户
su es
./bin/elasticsearch -d