I am writing a linux daemon . I found two ways to do it.
- Daemonize your process by calling fork and setting sid.
- Running your program with &
Which is the right way to do it
|
|
From http://www.steve.org.uk/Reference/Unix/faq_2.html#SEC16
Better yet, just call the daemon() function if it's available. |
||||
|
|
I suggest not writing your program as a daemon at all. Make it run in the foreground with the file descriptors, current directory, process group, etc as given to it. If you want to then run this program as a daemon, use start-stop-daemon(8), init(8), runsv (from runit), upstart, systemd, or whatever to launch your process as a daemon. That is, let your user decide how to run your program and don't enforce that it must run as a daemon. |
|||||
|
|
The first. The second is not daemonizing, but running on the background. Daemonized programs should be on its own session and process group, and should not have a controlling terminal. |
|||
|
|
Actually to make a daemon you have to double fork. Running the program with a & makes the shell run the program in the background, which does not make it a daemon. Daemons have init (pid 1) as a parent, that's why the double fork is needed. So the nice way to do things, if your program is a daemon, would be to take care of this issue yourself (there are more methods, see here too). You could also use the start-stop-daemon program. |
|||
|
|
|
What language are you using? Some languages have helper methods that make daemonizing easier. For example, Ruby has the daemons package. |
|||
|
|
|
Just use daemon(3) (from unistd.h).
|
|||
|
|