Bind Error: “max open files (3520) is smaller than max sockets (4096)”
Just notice one of the DNS server has the error message
1 2 3 4 5 6 7 |
28-Jun-2010 16:28:24.283 general: max open files (3520) is smaller than max sockets (4096) |
It’s something to do with kernel setting, on FreeBSD, configure the following
1 2 3 4 5 6 7 8 |
shell> sysctl kern.maxfiles=4096 shell> sysctl kern.maxfilesperproc=4096 |
Alternatively, put the above configuration on /etc/sysctl.conf in order to configure it at start up…
Recent Comments