服务器可以打开多少个文件?
它是基于ram/cpu的吗?
/etc/security/limits.conf
* soft nproc 65536
* hard nproc 65536
* soft nofile 65536
* hard nofile 65536
root soft nproc 65536
root hard nproc 65536
root soft nofile 65536
root hard nofile 65536
我用它来增加限制,但我想知道这个数字是否65536
可以更大?
另外,是否* sfot nproc
也涵盖root soft nproc
?还是需要为root
and指定*
?