赞
踩
临时解决方法:
- # 查看 inotify 的相关配置
- $ sysctl fs.inotify
- fs.inotify.max_queued_events = 16384
- fs.inotify.max_user_instances = 128
- fs.inotify.max_user_watches = 8192
- # 临时修改配置(重启后会恢复)
- $ sudo sysctl -w fs.inotify.max_user_watches=100000
永久解决方法:
- $ sudo echo fs.inotify.max_user_watches=100000 | sudo tee -a /etc/sysctl.conf
- # 重载配置文件,使之马上生效
- $ sudo sysctl -p
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。