If any processes within the hosting account freeze from, you can forcibly terminate in one of the ways.
ps aux
kill PID
Instead PID
substitute process id from output results ps aux
(number from column PID
).
kill $(pgrep -f php)
pkill -9 -u $(whoami)
Note After executing this command, the current SSH connection will be automatically terminated.
from 2-00 to 7-00