进入到elasticsearch.yml
注意:key: value中间有个空格
cluster.name: my-application
node.name: node-1
network.host: 0.0.0.0
http.port: 9200
cluster.intial_master_nodes: ["node-1"]
~
进入bin目录下启动ES
./elasticsearch
注意:root权限下启动会报错
可以通过adduser
用户名添加用户
然后通过 chown -R cc:cc elasticsearch-7.4.0/
进行授权
vim /etc/security/limits.conf
shift+g跳到最后一行
修改可创建文件数
itheima soft nofile 65536
itheima hard nofile 65536
修改第二项
vim /etc/security/limits.d/20-nproc.conf
插入
itheima soft nofile 65536
itheima hard nofile 65536
* hard nproc 4096
修改第三项
vim /etc/sysctl.conf
写入
vm.max_map_count=65530
在控制它输入sysctl -p
重新加载
看到如图所示表示配置成功
启动前需要关闭防火墙
systemctl stop firewalld