To follow up, we want to increase the ulimit on open files.
Let's check the system:
Code: Select all
cat /proc/sys/fs/file-maxCode: Select all
vi /etc/sysctl.confCode: Select all
fs.file-max = 1000000Code: Select all
vi /etc/security/limits.confCode: Select all
#open files
* soft nofile 1000000
* hard nofile 1000000
#max user processes
* hard nproc 65535
* soft nproc 65535
#stack size
* hard stack 20480
* soft stack 20480
These changes require a server reboot, so you will want to get that scheduled.
Please let us know how things look.
Thanks,
Perry