ubuntu下用ulimit -SHn 65535修改最大能打开文件数时,老出现错误:
ulimit: open files: cannot modify limit:
在网上查了下,说要修改/etc/security/limits.conf里面,添加:
* soft nproc 11000
* hard nproc 11000
* soft nofile 65535
* hard nofile 65535
可是加了以后,通过ulimit -n 查还是1024,后来重启下就好了,不知道怎么能让它立即生效。