I have a xen HVM vps and I'm trying to raise the hard and soft file limits for nobody at boot time. I'm using Ubuntu 10.04.3 and inside /etc/security/limits.conf I have:
nobody soft nofile 10000
nobody hard nofile 30000
But when I check the file limits are still the default 1024:
su nobody -c 'ulimit -Hn'
1024
su nobody -c 'ulimit -Sn'
1024
What is the right way of raising the file limits for Ubuntu?
/etc/security/limits.conf file is processed by the
pam_limits
PAM module and is used to assign resource limits for a user session. These will be applied only when PAM and thepam_limits
module is used during the session setup.In your system the
su
utility may be not configured to use thepam_limits
module (see the/etc/pam.d/su.conf
file) or uses it only when creating a new login session (called with a-
,-l
or--login
option).Try using
or adding
To
/etc/pam.d/su
or/and/etc/pam.d/su-l
.It may also be the case, that your
su
utility is not compiled with PAM support at all. In such case it will never use thelimits.conf
file.