Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
firstline1
titleulimitCheck the number of open files allowed for your current user
myuser@build> ulimit -n
1024

...

Code Block
languagebash
titleIncrease Ulimit ITemporarily increase the number of open files
sudo bash
ulimit -n 40960
sudo -u myuser bash
mvn clean install

...

Code Block
languagebash
titleModify limits.conf to permanently increase the number of allowed open files for all users and root
*  soft nofile 40960
*  soft nofile 40960
root soft nofile  40960
root soft nofile 40960

...

Code Block
languagebash
titleModify pam.d to permanently increase the number of allowed open files
session required pam_limits.so

...