|
|
 Elian E | 2006-08-18 12:30:21 |
Hello!
I created my own daemon, which runs every seconds. I use this class. But I have a 'little' question: how can i stop a running daemon?
Elian |
| |
2. Re: Stoping daemon |
|
Reply |
|
|
 Andrew Bale | 2008-04-15 01:22:18 - In reply to message 1 from Elian E |
find the pid from the /tmp/daemon.pid
then type kill -SIGTERM <pid>
|
|