Solaris - Why is java.lang.UNIXProcess.forkAndExec(Native Method) hanging

前端 未结 3 1373
被撕碎了的回忆
被撕碎了的回忆 2021-01-21 10:26

I have a java application running on Solaris. This application regularily launches external processes using Runtime.exec. It seems that after a while, having successfully laun

3条回答
  •  终归单人心
    2021-01-21 10:49

    Is stdout and stderr from the process being consumed? You might be looking at the results of a full buffer.

    You can test this by adding output redirection to a tempfile for the command that is spawned.

提交回复
热议问题