
App::Daemon - Start an Application as a Daemon

# Program:
use App::Daemon qw( daemonize );
daemonize();
# Then, in the shell:
# start app in background
$ app start
# stop app
$ app stop
# start app in foreground (for testing)
$ app -X
# show if app is currently running
$ app status

App::Daemon helps running an application as a daemon. Along with the common features offered by similar modules on CPAN, it
./my-app status
Pid file: /tmp/tt.pid
Pid in file: 14914
Running: no
Name match: 0
App::Daemon recognizes three different actions:
will start up the daemon. "start" itself is optional, as this is the default action,
$ ./my-app
will also run the 'start' action. If the -X option is given, the program is run in foreground mode for testing purposes.
will find the daemon's PID in the pidfile and send it a kill signal. It won't verify if this actually shut down the daemon or if it's immune to the kill signal.
will print out diagnostics on what the status of the daemon is. Typically, the output look like this:
Pid file: /tmp/tt.pid
Pid in file: 15562
Running: yes
Name match: 1
/usr/local/bin/perl -w test.pl
This indicates that the pidfile says that the daemon has PID 15562 and that a process with this PID is actually running at this moment. Also, a name grep on the process name in the process table results in 1 match, according to the output above.
Note that the name match is unreliable, as it just looks for a command line that looks approximately like the script itself. So if the script is test.pl, it will match lines like "perl -w test.pl" or "perl test.pl start", but unfortunately also lines like "vi test.pl".
If the process is no longer running, the status output might look like this instead:
Pid file: /tmp/tt.pid
Pid in file: 14914
Running: no
Name match: 0
Foreground mode. Log messages go to the screen.
Logfile to send Log4perl messages to in background mode. Defaults to /tmp/[appname].log.
User to run as if started as root. Defaults to 'nobody'.
Path to Log4perl configuration file.
Where to save the pid of the started process. Defaults to /tmp/[appname].pid.

Mike Schilli, cpan@perlmeister.com

Copyright (C) 2008 by Mike Schilli
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.5 or, at your option, any later version of Perl 5 you may have available.