下载
下载elasticsearch 6.8.2版本
解压目录
tar -xvf 文件路径
开启服务
$ ./bin/elasticsearch &
max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536] 问题
1
2
3
4
5
6
7#切换到root用户修改
vim /etc/security/limits.conf
# 在最后面追加下面内容
*** hard nofile 65536
*** soft nofile 65536
*** 是启动ES的用户root无法启动问题
1
2
3root用户无法启动elasticsearch,切换至其他用户并执行
chown -R 文件目录 用户
修改目录权限非本机无法访问rest服务
1
2修改 config/elasticsearch.yml 修改以下标签为值
network.host: 0.0.0.0