Update max_map_count for ElasticSearch docker container Mac host

34.9k views Asked by At

I'm using this container to start elasticsearch in docker. In accordance with the manual I have to update max_map_count to start the container

sudo sysctl -w vm.max_map_count=262144

but.. I can update it in my host (container) AFTER I start it while I'm unable to start it. Am I doing something wrong?

ERROR: bootstrap checks failed max virtual memory areas vm.max_map_count [65530] likely too low, increase to at least [262144]

If I try to do it on my host machine (which is Mac) I get the following error.

sysctl: unknown oid 'vm.max_map_count'

Docker engine installs the Lunix VM where all containers are running. So the command to increase the limit should be executed for the Linux host, not for the Mac.

How can I access Linux VM via terminal installed by the Docker engine?

10

There are 10 answers

10
Octavio Soto On BEST ANSWER

On Docker Toolbox

If you are in docker toolbox try the docker client from terminal and then make the configs:

docker-machine ssh
sudo sysctl -w vm.max_map_count=262144
exit

On Docker For Mac:

The vm_max_map_count setting must be set within the xhyve virtual machine:

$ screen ~/Library/Containers/com.docker.docker/Data/com.docker.driver.amd64-linux/tty

If it asks you for a username and passwordLog in with root and no password.

If it just has a blank screen, press RETURN.

Then configure the sysctl setting as you would for Linux:

sysctl -w vm.max_map_count=262144

Exit by Control-A Control-\.

Se the docs here.

Persistence

In some cases, this change does not persist across restarts of the VM. So, while screen'd into, edit the file /etc/sysctl.d/00-alpine.conf and add the parameter vm.max_map_count=262144 to the end of file.

2
Gleb On

I fixed it on my Mac (Sonoma 14.0) without dealing with vm.max_map_count by downgrading Docker Desktop to v.23 (https://docs.docker.com/desktop/release-notes/#docker-community-edition-17120-ce-mac49-2018-01-19)

2
Fabrizio Fortino On

To make it work with Mac Sonoma 14.0 + Docker Desktop 25.0, follow these steps:

  • Enable Use Rosetta for x86/amd64 emulation on Apple Silicon in Settings -> General
  • Disable Access experimental features in Settings -> Features in development -> Experimental Features
  • Run the following commands (see https://github.com/docker/for-mac/issues/4822)

docker run -it --privileged --pid=host debian nsenter -t 1 -m -u -n -i sh

/ # sysctl -w vm.max_map_count=262144

vm.max_map_count = 262144

0
Serge On

For mac users you might have a problem connecting to docker VM, therefore you should run this command to enter the shell of the Docker VM:

docker run -it --privileged --pid=host debian nsenter -t 1 -m -u -n -i sh

GitHub issue description: https://github.com/docker/for-mac/issues/4822

0
Hayi On

For those using Docker Desktop on windows 10 you have to execute:

wsl -d docker-desktop in the command line before sysctl -w vm.max_map_count=262144

1
Shakeel On

If you have installed Docker from docker's Mac installer then you will have Docker desktop installed(also includes includes Docker Engine, Docker CLI client, Docker Compose, Notary, Kubernetes, and Credential Helper.)

Here is what Docker desktop looks like in 2021 where you can change memory/swap or any other resources.

Step 1 - click on docker's preferences as shown below.

enter image description here

Step 2 - Click on resources tab, here you can tweak the resources and finally click on "Apply and Restart" button.

enter image description here

Please ignore configuration what I made. You can set based on your requirement.

5
Charith De Silva On

On Latest Docker For Mac (Version 18.06.0-ce-mac70):

$ screen ~/Library/Containers/com.docker.docker/Data/vms/0/tty

On the blank screen, press RETURN.

Then configure the sysctl setting as you would for Linux:

sysctl -w vm.max_map_count=262144

Exit by Control-A Control-\

0
hooknc On

Podman Desktop for Mac OS

For those of us having the same problem with Podman Desktop, we have to update the settings of the virtual machine that Podman runs for running containers on Macs.

Steps...

Login into the Podman VM

From a terminal on your mac:

$ podman machine ssh

Edit Default /etc/sysctl.conf File

Using sudo edit the /etc/sysctl.conf and add the vm.max_map_count = 262144 property.

$ sudo echo "vm.max_map_count = 262144" | sudo tee /etc/sysctl.conf

After exiting the podman virtual machine you should be able to run the ElasticSearch container:

$ podman run --name es01 --net elastic -p 9200:9200 -it docker.elastic.co/elasticsearch/elasticsearch:8.8.0

I would then recommend stopping Podman Desktop and rebooting your mac. Then restarting Podman Desktop and trying to run the ElasticSearch container again. It should work.

1
Bye On

For those who use docker desktop on mac, you can easily increase the memory by the following steps:

  1. click on docker desktop -> preferences...
  2. navigate to 'Resources'
  3. change the memory to whatever you need
  4. click on 'Apply & Restard'
1
datamonk On

Folder has been moved and this is the new location -

$screen ~/Library/Containers/com.docker.docker/Data/vms/0/tty

and then

sysctl -w vm.max_map_count=262144