Skip to content

Elasticsearch 启动 vm.max_map_count error

在默认情况下启动elasticsearch 5.4.3版本的时候,报如下错误。

max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]

解决办法:docker情况下,在宿主机执行即可。

 

grep vm.max_map_count /etc/sysctl.conf
vm.max_map_count=262144

或者
sudo sysctl -w vm.max_map_count=262144

参考:

https://github.com/docker-library/elasticsearch/issues/111

发表评论

电子邮件地址不会被公开。 必填项已用*标注