一般网上修改方法就是直接修改文件:
/proc/sys/fs/inotify/max_user_watches
或者修改方法:
sysctl -w fs.inotify.max_user_watches=“99999999”
但是这些修改后,Linux系统重启inotify配置max_user_watches无效被恢复默认值8192,这个可能很多的新手不是很明白,这个不详细讲解,有空大家去了解下:sysctl
Linux系统重启inotify配置max_user_watches无效被恢复默认值8192的正确修改方法为:
vim /etc/sysctl.conf
注意添加的内容:
fs.inotify.max_user_watches=99999999(你想设置的值)
haole ,好了,很简单。。