[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
To stop a daemon you can use the shutdown
command (with a telnet
connection or with `dio87c' :
$ dio87d -d $ $ ps ax | grep [d]io87d 21754 ? S 0:00 dio87d -d $ $ dio87c -- shutdown dio87d will stop... $ $ ps ax | grep [d]io87d $ |
A second way to stop the daemon is to send a SIGINT or a SIGTERM signal to its process :
$dio87d -d $ $ ps ax | grep [d]io87d 21830 ? S 0:00 dio87d -d $ $ kill -SIGINT 21830 $ $ ps ax | grep [d]g $ |