容器错误日志ERROR: [1] bootstrap checks failed. You must address the points described in the following [1] lines before starting Elasticsearch. bootstrap check failure [1] of [1]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144] ERROR: Elasticsearch did not exit normally - check the logs at /opt/sonarqube/logs/sonarqube.log
时间: 2023-11-27 12:54:34 浏览: 133
前端固定的bootstrap包,js相关的包,vue相关的包
这个错误日志提示了Elasticsearch启动时的一个问题,即虚拟内存区域(vm.max_map_count)的数量不足。最简单的解决方法是在主机上使用以下命令将该值增加到至少262144:
```
sudo sysctl -w vm.max_map_count=262144
```
如果您希望永久设置此值,则可以编辑 /etc/sysctl.conf 文件并添加以下行:
```
vm.max_map_count=262144
```
然后保存并重新加载此文件以使更改生效:
```
sudo sysctl -p
```
完成这些步骤后,您应该可以重新启动Elasticsearch并解决此错误。
阅读全文