Re: Nagios Host/Service Check Timeouts
Posted: Thu Sep 23, 2021 2:59 pm
Hello @Dusan.Mandic
To follow up, we want to increase the ulimit on open files.
Let's check the system:
We want this value to be; 1000000
and specify the maximum number of open files permitted by increasing or adding
Increase or add the following:
* indicates for all users
These changes require a server reboot, so you will want to get that scheduled.
Please let us know how things look.
Thanks,
Perry
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