Products | Versions |
---|---|
TIBCO Enterprise Message Service | All |
It seems like you are facing an issue with the tibemsd process hitting the upper limit of files it's allowed to open. To address this problem, you can follow the steps outlined below:
ps -efl | grep tibemsd
more /proc/<pid>/limits
/etc/security/limits.conf
. It should have the following entries:<account> soft nofile 65535
<account> hard nofile 65535
Replace <account>
with the actual user account of the tibemsd64 process.
more /proc/<pid>/limits
/etc/pam.d/login
file and add the following line:session required /lib/security/pam_limits.so
echo 65535 > /proc/sys/fs/file-max
Restart the tibemsd64 process from the command line. You should notice that the "Max open files" is now expected.
If you encounter the same issue after restarting the service, continue to step 9.
Configure DefaultLimitNOFILE
in /etc/systemd/system.conf.d
: Add the following line to the configuration file:
DefaultLimitNOFILE=65535
Following these steps should help you resolve the issue with tibemsd reaching the upper limit of files it can open. If the problem persists, consider opening a TIBCO support ticket for further assistance.