/etc/security/limits.conf not applied

limitulimit

I have /etc/security/limits.conf, that seems not been applied:

a soft nofile 1048576 # default: 1024
a hard nofile 2097152
a soft noproc 262144  # default 128039
a hard noproc 524288  

Where a is my username, when I run ulimit -Hn and ulimit -Sn, it shows:

4096
1024

There's only one other file in the /etc/security/limits.d that the content is:

scylla  -  core     unlimited
scylla  -  memlock  unlimited
scylla  -  nofile   200000
scylla  -  as       unlimited
scylla  -  nproc    8096

I tried also append those values to /etc/security/limits.conf then restarting, and do this:

echo '
session required pam_limits.so
' | sudo tee -a /etc/pam.d/common-session

but it didn't work. My OS is Ubuntu 17.04.

Best Answer

https://superuser.com/questions/1200539/cannot-increase-open-file-limit-past-4096-ubuntu/1200818#=

There's a bug since Ubuntu 16 apparently.

Basically:

  1. Edit /etc/systemd/user.conf for the soft limit, and add DefaultLimitNOFILE=1048576.
  2. Edit /etc/systemd/system.conf for the soft limit, and add DefaultLimitNOFILE=2097152.

Credit goes to @mkasberg.

Related Question