Answers for "psutil kill process by pid"

SQL
1

psql kill pid

select pg_terminate_backend(pid) 
from pg_stat_activity 
where pid = '18765';
Posted by: Guest on March-08-2021
1

kill process from pid

kill SIGNAL PID

#Example
kill -9 3827

#See more information from : https://www.linux.com/training-tutorials/how-kill-process-command-line/
Posted by: Guest on January-06-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language