2.10.14. Force termination of processes
If any processes within the hosting account freeze from, you can forcibly terminate in one of the ways.
To force termination of all processes through the control panel, do the following:
- Open the section "Hosting ":
- Go to section "Linux configuration":
To force termination of all processes using console commands, do the following:
- Connect to the hosting account via SSH.
- Run the required command:
- Viewing the list of running processes:
ps aux
- Completing a separate process:
kill PID
Instead
PID
substitute process id from output resultsps aux
(number from columnPID
). - Terminating all PHP processes:
kill $(pgrep -f php)
- Completion of all processes:
pkill -9 -u $(whoami)
Note After executing this command, the current SSH connection will be automatically terminated.