While logging to user with shell access the following error was getting generated.
-jailshell: fork: retry: No child processes
-jailshell: fork: retry: No child processes
-jailshell: fork: retry: No child processes
-jailshell: fork: retry: No child processes
-jailshell: fork: Resource temporarily unavailable
Simply killed the resource intensive process of the user to fix the issue.
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
work thx
jogja
rental mobil jogja
LikeLiked by 1 person
Thanks, this resolved the same issue that I was having.
LikeLiked by 1 person
I fixed mine from WHM > Manage Shell Access
Select *Normal Shell*
Select *Disabled Shell*
Select Back *Jailed Shell*
Now all works perfect.
LikeLike