I run a server executable in Centos using the following command "nohup server &". Now I need to kill the process "server". But I tried "ps -a" command to get the PID but I couldnt get the process. Now how to kill the "server" now?
|
|
|||||||||||||||||
|
|
ps auxwww|grep -i 'server' should return all process which has 'server' in them. Otherwise, server may have already stopped. You should be able to determine the PID (and store it in a file) as follows:
|
|||
|
|
|
There is no definitive way to catch the exact process with the help of
You will get a list of all the processes running with the name "server" Or, you can use any other keywords as well to grep the ps output. |
|||
|
|
|
The best way to launch a server in centos is with the service command. So
There is a chance that you want to write your program as a daemon
See http://www.netzmafia.de/skripten/unix/linux-daemon-howto.html |
|||||||
|
