How do I kill a runaway process?
-
You need to know the process id number.
-
Log into the machine that you suspect has a runaway process.
-
Next, type ps -ef at the Unix command line. The ps command lists the active processes on the machine.
-
Find those that are listed under your login name. The first number after your login name is the process id number.
-
You can kill this process by using the kill command. Suppose you want to kill process 21202. Simply type kill -9 21202 at the Unix command line. The -9 flag indicates that you really want to kill the process.