在ES安装过程中,一般都会报这么一个错,
max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
这个错误,网上有解决方案的,一般就是要修改内核参数的:
echo "vm.max_map_count=262144" > /etc/sysctl.conf
#刷新配置
sysctl -p
按道理来说,这个问题也就解决了,在我的wsl中,我按上面操作完,的确也是可以了,但是电脑重启以后,这个配置还是不生效得到,就是wsl中这个值还是原始的65535。
查看该值的方法:
sysctl vm.max_map_count
难道每次重启以后还要重新刷新一下配置才能正常生效吗?这很麻烦了,这么难顶的吗?
我就不,然后就又google一下,找到正确的解决的方案了,需要配置一下wsl。
下面我就直接把解决方案复制过来了。
在 C:\Users\<username>
创建.wslconfig
文件,文件内容如下
[wsl2]
kernelCommandLine = "sysctl.vm.max_map_count=262144"
Then exit any WSL instance, wsl --shutdown, and restart.
> sysctl vm.max_map_count
vm.max_map_count = 262144
参考
1、https://github.com/docker/for-win/issues/5202
2、https://stackoverflow.com/questions/69214301/using-docker-desktop-for-windows-how-can-sysctl-parameters-be-configured-to-per/69294687#69294687