Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
2  
ps auxwww|grep -i 'server' should return all process which has 'server' in them. Otherwise, server may have already stopped. – Usman Saleem Jan 4 at 6:04
1  
ps aux | grep server – Mikhail Jan 4 at 6:06
@Usman saleem thanks this solves my answer. I have One more doubt "nohup server &" is the right command, to run a process backgroung even if i close the terminal? – 2vision2 Jan 4 at 6:07
@Mikhail thanks this solves my answer. I have One more doubt "nohup server &" is the right command, to run a process background even if i close the terminal? – 2vision2 Jan 4 at 6:08
1  
Yes it is, you can determine the PID right when you invoke the command: 'nohup server &' followed by 'print $! >> server_pid_file' – Usman Saleem Jan 4 at 6:10
show 2 more comments

3 Answers

up vote 2 down vote accepted

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:

nohup server &
print $! >> my_server.pid
share|improve this answer
Thanks for the answer. – 2vision2 Jan 4 at 9:43

There is no definitive way to catch the exact process with the help of ps command, but you can use the following:

ps -a | grep "server"

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.

share|improve this answer
Thanks for the answer. – 2vision2 Jan 4 at 9:42

The best way to launch a server in centos is with the service command.

So service httpd start

There is a chance that you want to write your program as a daemon

A daemon (or service) is a background process that is designed to run autonomously,with little or not user intervention. The Apache web server http daemon (httpd) is one such example of a daemon. It waits in the background listening on specific ports, and serves up pages or processes scripts, based on the type of request.

See http://www.netzmafia.de/skripten/unix/linux-daemon-howto.html

share|improve this answer
I just need to run my executable background? can you give some example? – 2vision2 Jan 4 at 6:10
@2vision2 you want to write your program like a linux daemon see netzmafia.de/skripten/unix/linux-daemon-howto.html – Mikhail Jan 4 at 7:00
Thanks for the answer – 2vision2 Jan 4 at 9:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.