如果在docker 中遇到下方字串
Please set vm.max_map_count to be 2000000 under root using 'sysctl -w vm.max_map_count=2000000'
使用下方指令
docker run -it --privileged --pid=host --name=change_count debian nsenter -t 1 -m -u -n -i sh
進入到容器後再執行指令:
sysctl -w vm.max_map_count=2000000
`
然後exit退出並建立Doris Docker叢集。