What are the implications of running a script as a daemon versus using nohup?
I know what the difference is in terms of forking processes etc., but what impact does that have on my script?
|
feedback
|
|
The Typically, a process run via Typically (which means if you try hard, you can find exceptions to these rules), a daemon process is something which lurks in the background, disconnected from any terminal, but waiting to respond to some input of some sort. Network daemons wait for connection requests or UDP messages to arrive over the network, do the appropriate work and send a response back again. Think of a web server, for example, or a DBMS. When a process fully daemonizes itself, it goes through some of the steps that the You can look at Stevens' 'Advanced Programming in the UNIX Environment' or 'UNIX Network Programming (3rd Edn)', or Rochkind's 'Advanced UNIX Programming' for discussions of daemonization. I have a program | |||||||||
feedback
|
|
In UNIX variants, a process is associated with a terminal process (login shell). So when the terminal process exits, the process is halted as well, because of this association. The nohup prevents a process from exiting when the terminal stops. A daemon or demon is a process that is started by the system when it starts up, it runs till shutdown, no user asked for it explicitly. So by definition it is not part of a user interaction but belongs to the system. If you have access to the system as a user, you can use nohup. If you are sysadmin, you can install a deamon process. For the process it does not matter. | |||||||||
feedback
|
|
This link has a good list of steps a process should take in becoming a daemon: http://www.steve.org.uk/Reference/Unix/faq_2.html#SEC16 I can't copy the list verbatim because of copyright (see the About section), but here's the summary:
What nohup does:
Similarities and Differences Notice how the only common actions are redirecting stdout and stderr. To be a daemon doesn't even require ignoring SIGHUP. nohup doesn't require you to use '&' to background the process - meaning you can still use ctrl-c to send SIGINT. The process still responds to keyboard input. It also doesn't change stdin automatically, so it's recommended that you do it yourself via "< /dev/null". Please do not confuse nohup with other features normally used with it (e.g. backgrounding). The OP asked specifically about nohup. In Practice In terms of practicality, when you want to start a one-time long-running process which should continue when the shell exits, you'll want to use nohup, but you'll also want to combine it with backgrounding and redirecting of stdin. A one-time job isn't worth making a daemon, but some of the properties of a daemon can still be useful with a nohup job, like "cd /". Periodic tasks on a regular schedule are best run via cron (or some other scheduler). Daemons are best suited for overseeing repeated tasks that don't have a predictable start time. There normally is no definite end time for the daemon process (it's explicitly stopped by a user/another process or by system shutdown). Often daemons are services that respond to applications (clients) or other conditions (e.g. incoming data via on an IO device via unix select()). Other daemons poll for a condition and perform an action in response. Addendum about controlling terminal Note that having a controlling terminal is not the same as having the standard streams associated with a terminal. I think being associated with a controlling terminal means the user's keyboard can send signals to the process. On the other hand, the association of standard streams determines what happens when you read from stdin or write to stdout/stderr. See http://uw714doc.sco.com/en/SDK_sysprog/_The_Controlling-Terminal_and_Pr.html for more info. | ||||
|
feedback
|