Wednesday, November 12, 2014

“SSH: JAILSHELL: FORK: RETRY: RESOURCE TEMPORARILY UNAVAILABLE”

Today, one of the customer SSH(cPanel) getting error as below when they logged into their jailed shell access.
======================
-jailshell: fork: retry: Resource temporarily unavailable
-jailshell: fork: retry: Resource temporarily unavailable
-jailshell: fork: retry: Resource temporarily unavailable
========================

To overcome the problem, simply run the following command from root.
=================
for i in `ps aux | grep username | awk '{print $2}'`; do kill -9 $i; done

for i in `cat /proc/mounts | grep username | awk '{print $2}'`; do umount $i; done
================


1 comment:

  1. solution is ok .But what might be the reason may i know that.

    ReplyDelete