Quote:
Originally Posted by vandervyvere Try setting the open files limit to unlimited. I had similair problems with JBoss cluster servers. It should help. Just follow the steps below.
This setting will set the maximum limit allowed for open files. On the system.
As sudo or root edit the /etc/security/limits.conf file. At the end of the file just above “# End of File” enter the following values:
* soft nofile 65535
* hard nofile 65535
Save the file. This will set the number of open files to unlimited.
Just need to reset the server after this. |
Ubuntu does not include pam_limits.so in common-session, so the open file overrides you have specified in limits.conf are not applied.
To check su to the zimbra user and type 'ulimit -n' if it returns 1024 instead of what you have configured in /etc/security/limits.conf add the following to /etc/pam.d/common-session:
session required pam_limits.so
Restart Zimbra and you should be fine.