问题:在用docker-compose启动容器后,发现有些容器没启动起来
原因:fs.inotify.max_user_watches默认值太小,导致too many open files
解决:
vim /etc/sysctl.conf
fs.inotify.max_user_instances=512
fs.inotify.max_user_watches=262144
修改文件后生效:
sysctl -p
2023-10-27 21:12:52
问题:在用docker-compose启动容器后,发现有些容器没启动起来
原因:fs.inotify.max_user_watches默认值太小,导致too many open files
解决:
vim /etc/sysctl.conf
fs.inotify.max_user_instances=512
fs.inotify.max_user_watches=262144
修改文件后生效:
sysctl -p