- 论坛徽章:
- 0
|
10可用积分
本帖最后由 风吹不倒 于 2011-05-26 21:01 编辑
大家好:
最近参照仙子的作品写了个脚本 让自身进入后台;能接受HUP信号重启脚本,但目前发现,当我第一次kill -1 pid时是成功的,但第二次再发送信号却没了反应,象是没有接收信号一样,代码如下,大家帮我看看- use strict;
- use IO::File;
- use POSIX;
- my $pid_file='/home/perl.pid';
- my $quit=0;
- $SIG{TERM} = $SIG{INT} =\&do_term;
- $SIG{HUP} = \&DoHup;
- if (-e $pid_file) {
- open PIDFILE,"<$pid_file" or die "$!\n";
- my $pid=<PIDFILE>;
- close PIDFILE;
- die "Server already running with pid $pid" if kill 0 => $pid;
- warn "Removing old PID file for $0";
- die "Can't unlink PID file $pid_file" unless (-w $pid_file && unlink $pid_file);
- }
- open NEWPID,">$pid_file" or die "Can't create pid file:$!";
- my $pid= daemon();
- print NEWPID "$pid\n";
- close NEWPID;
- open LOGA," >>/home/test.log ";
- syswrite LOGA,"$quit\n";
- my $count;
- while (!$quit) {
- $count++;
- syswrite LOGA,"hello a $count\n";
- sleep 1;
- }
- sub daemon{
- die "can't fork!" unless defined (my $child = fork);
- exit 0 if $child;
- setsid();
- print "Server start with pid $\n";
- open(STDIN,"</dev/null");
- open(STDOUT,">/dev/null");
- open(STDERR,">&STDOUT");
- chdir '/';
- umask(0);
- $ENV{PATH} = '/bin:/sbin/:/usr/bin:/usr/sbin';
- return $;
- }
- sub do_term{
- unlink $pid_file;
- $quit++;
- }
- sub DoHup{
- warn "received SIGHUP,prepare to reload...\n";
- unlink $pid_file;
- exec '/usr/bin/perl','/home/daemon.pl';
- }
复制代码 |
|