How to change open files limit in linux
You can change the open file limits for individual users using the following method.
You might want to also set in /etc/security/limits.conf
userID soft nofile 8192
userID hard nofile 8192
If you want to set it for all the all the users, then you need to put *
* soft nofile 8192
* hard nofile 8192