Application throws "Caused by: java.net.SocketException: Too many open files", then we increased linux file limit.
Now we can start the process manually, but the auto start from autosys still fails, anyone have any idea on why it still fails?
autosys agent takes defaults limits value's. so create ulimits values for autosys. It will fix the issue.
You have to create /etc/sysconfig/autosys and then paste in this file ulimit command depending on what you want to change for example ulimit -n after that you have to recycle autosys agent
eg:
# cat /etc/sysconfig/autosys
ulimit -n 65538
ulimit -nand redirect the output into a logfile to check if this setting is not overwritten by the process which starts the script. - SubOptimal