Traditionally, with
That thing is in an endless loop, continuously eating 100% of one CPU. How to get rid of it?
kill -9
we could unconditionally kill a running process. This doesn't work anymore:
Code:
# ps ax | grep 91293
91293 - RJ 1121:57.70 pg_dump -U postgres -p 5432 -bF c -f /var/db/pg-i
# kill -9 91293
# ps ax | grep 91293
91293 - RJ 1122:25.71 pg_dump -U postgres -p 5432 -bF c -f /var/db/pg-i
# kill -9 91293
# ps ax | grep 91293
91293 - RJ 1122:31.02 pg_dump -U postgres -p 5432 -bF c -f /var/db/pg-i
That thing is in an endless loop, continuously eating 100% of one CPU. How to get rid of it?