|
Please try setting "Max Conns" to 1, if it works, the problem might be the socket connection established during Rails framework initialization, you should close all socket connection at end of your environment.rb. Since LSAPI ruby fork children process off initialized parent process, the file handle of a open socket will be messed up.
If it does not work either, double check if any shell environment variable need to be set. increase memory limit if more memory is used by your application.
|