在 podman 机器 vm 中永久增加 vm.max_map_count
Increase vm.max_map_count permanently in podman machine vm
我正在尝试使用 podman 运行 我的 Mac m1 笔记本电脑上的 Elasticsearch 图像。它将失败并显示消息:
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]
我可以通过使用ssh进入podman机器vm并设置vm.max_map_count为
暂时解决这个问题
sudo sysctl -w vm.max_map_count=262144
但是,如果我停止并重新启动 podman 机器 vm,设置将恢复为默认值 65530。
有没有办法为 podman 机器 vm 永久设置 vm.max_map_count?
我最近也遇到了这个。你已经整理好了
要在启动时修改内核参数,只需添加一个条目,执行您的 sysctl 配置,它将在重新启动时应用。
# echo "vm.max_map_count = 262144" >> /etc/sysctl.d/99-sysctl.conf
我正在尝试使用 podman 运行 我的 Mac m1 笔记本电脑上的 Elasticsearch 图像。它将失败并显示消息:
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]
我可以通过使用ssh进入podman机器vm并设置vm.max_map_count为
暂时解决这个问题sudo sysctl -w vm.max_map_count=262144
但是,如果我停止并重新启动 podman 机器 vm,设置将恢复为默认值 65530。
有没有办法为 podman 机器 vm 永久设置 vm.max_map_count?
我最近也遇到了这个。你已经整理好了
要在启动时修改内核参数,只需添加一个条目,执行您的 sysctl 配置,它将在重新启动时应用。
# echo "vm.max_map_count = 262144" >> /etc/sysctl.d/99-sysctl.conf