If you run the User Application on Linux, you might encounter a
Error.Linux allows 1024 open files for each process, but the User Application often requires more. Novell suggests increasing the number of open files to 4096 to avoid the error.Use the ulimit command to increase the number of open files. There are some restrictions on ulimit for non-root users. Here is an example of how you can use the ulimit command to increase the number of open files to 4096 for a non-root user:
Log in as root.
Edit the file /etc/security/limits.conf. Add an entry for the user named
and allow up to 4096:smith hard nofile 4096
Log in as user ulimit -n command. You can issue the command again with no argument to see the current value:
and pass 4096 to thesmith@myhost:~> ulimit -n 4096 smith@myhost:~> ulimit -n
You might want to specify ulimit in the user environment or the start-jboss script so that the new value is always used.