1、启动服务不能使用root权限 需要添加用户
2、 max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
在 etc/sysctl.config 添加 vm.max_map_count=655360
用root 用户 执行 sysctl -p
3、max file descriptors [65535] for elasticsearch process likely too low, increase to at least [65536]
进入root用户,编辑/etc/security/limits.conf,修改或者追加以下内容:
* soft nofile 65536
* hard nofile 65536
保存,此文件修改后需要重新登录用户,才会生效