how many files can a server have open?
is it based on the 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
i used this to increase the limits, but i'm wondering if that number 65536
can be made larger?
Also, does * sfot nproc
also cover root soft nproc
? or does it need to be spcified for root
and *
?