Quote:
Originally Posted by geom06005
I wander how you change your resource limits
|
You can change resource limits with the ulimit command (which should be implemented by your shell). To see your current resource limits, type (in a terminal) “ulimit -a”. You can see how many open file descriptors a process is allowed to have.
Quote:
Originally Posted by geom06005
and what is RLIMIT_NOFILE
|
RLIMIT_NOFILE is a macro describing the number of open file descriptors a process is allowed to have. It is normally used by getrlimit() and setrlimit().
There are many reasons why your resource limits might be too low. The most common culprit is PAM. A quick google might get you started.