I've been attempting to execute a java application using SSH from a remote machine but it quite doesn't work well :(
To execute this application on the local machine, I wrote a shell script including java command, and it works okay on local.
So, I tried to execute this shell script remotely via ssh like below
ssh username@hostname execute.sh
It seemed to worked out at first, but then result in the following error, and shutdown.
GC Warning: Repeated allocation of very large block (appr. size 929792): May lead to memory leak and poor performance.
GC Warning: Out of Memory! Returning NIL!
I understood what the message means reading this page ( http://www.hpl.hp.com/personal/Hans_Boehm/gc/debugging.html ), yet, I have no idea how come this error occur only when I execute java command remotely.
Does anyone know anything about this? Or, is there any better way to execute java command remotely other than ssh?
Any idea or information will be greatly appreciated!
Regards, May
java version: Java(TM) SE Runtime Environment (build 1.6.0_18-b07)

ulimit -ainteresting? – rlibby Apr 12 '11 at 6:46