实验环境
- CentOS7
- elasticsearch-6.2.4
具体错误
[1]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
解决办法:
切换到root
账号修改配置/etc/sysctl.conf
添加下面配置项。
vm.max_map_count=262144
执行如下命令使配置生效。
sysctl -p
重新启动elasticsearch就不会有这个错误了。
./bin/elasticsearch
参考文章:
1. https://blog.csdn.net/jiankunking/article/details/65448030