免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3426 | 回复: 7
打印 上一主题 下一主题

向perl脚本发送HUP信号 只有第一次成功 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-05-26 20:58 |只看该作者 |倒序浏览
10可用积分
本帖最后由 风吹不倒 于 2011-05-26 21:01 编辑

大家好:
          最近参照仙子的作品写了个脚本 让自身进入后台;能接受HUP信号重启脚本,但目前发现,当我第一次kill -1 pid时是成功的,但第二次再发送信号却没了反应,象是没有接收信号一样,代码如下,大家帮我看看
  1. use strict;
  2. use IO::File;
  3. use POSIX;

  4. my $pid_file='/home/perl.pid';
  5. my $quit=0;

  6. $SIG{TERM} = $SIG{INT} =\&do_term;
  7. $SIG{HUP}  = \&DoHup;

  8. if (-e $pid_file) {
  9.     open PIDFILE,"<$pid_file" or die "$!\n";
  10.     my $pid=<PIDFILE>;
  11.         close PIDFILE;
  12.     die "Server already running with pid $pid" if kill 0 => $pid;
  13.     warn "Removing old PID file for $0";
  14.     die "Can't unlink PID file $pid_file"  unless (-w $pid_file && unlink $pid_file);
  15. }

  16. open NEWPID,">$pid_file" or die "Can't create pid file:$!";
  17. my $pid= daemon();
  18. print NEWPID "$pid\n";
  19. close NEWPID;

  20. open LOGA," >>/home/test.log ";
  21. syswrite LOGA,"$quit\n";
  22. my $count;
  23. while (!$quit) {
  24.         $count++;
  25.         syswrite LOGA,"hello a $count\n";
  26.         sleep 1;
  27. }

  28. sub daemon{
  29.         die "can't fork!" unless defined (my $child = fork);
  30.         exit 0 if $child;
  31.         setsid();
  32.         print "Server start with pid $\n";
  33.         open(STDIN,"</dev/null");
  34.         open(STDOUT,">/dev/null");
  35.         open(STDERR,">&STDOUT");
  36.         chdir '/';
  37.         umask(0);
  38.         $ENV{PATH} = '/bin:/sbin/:/usr/bin:/usr/sbin';
  39.         return $;
  40. }

  41. sub do_term{
  42.         unlink $pid_file;
  43.         $quit++;
  44. }
  45. sub DoHup{
  46.         warn "received SIGHUP,prepare to reload...\n";
  47.         unlink $pid_file;
  48.         exec '/usr/bin/perl','/home/daemon.pl';
  49. }
复制代码

最佳答案

论坛徽章:
78
双子座
日期:2013-10-15 08:50:09天秤座
日期:2013-10-16 18:02:08白羊座
日期:2013-10-18 13:35:33天蝎座
日期:2013-10-18 13:37:06狮子座
日期:2013-10-18 13:40:31双子座
日期:2013-10-22 13:58:42戌狗
日期:2013-10-22 18:50:04CU十二周年纪念徽章
日期:2013-10-24 15:41:34巨蟹座
日期:2013-10-24 17:14:56处女座
日期:2013-10-24 17:15:30双子座
日期:2013-10-25 13:49:39午马
日期:2013-10-28 15:02:15
2 [报告]
发表于 2011-05-26 20:58 |只看该作者
Signals are tricky beasts. When you exec to restart your program, the reborn version inherits a set of blocked signals from its parent. Inside a signal handler, that signal is blocked. So if your signal handler simply called exec right away, the new process would have SIGHUP blocked. You could only restart your program once!


书上的

论坛徽章:
0
3 [报告]
发表于 2011-05-26 22:11 |只看该作者
回复 2# yybmsrs

谢谢!!!有方向了 我再去找找解决方法

论坛徽章:
0
4 [报告]
发表于 2011-05-26 23:15 |只看该作者
暂时先这样解决了
  1. my $signals = POSIX::SigSet->new(SIGHUP,SIGTERM,SIGINT);
  2. sigprocmask(SIG_UNBLOCK,$signals);
复制代码

论坛徽章:
78
双子座
日期:2013-10-15 08:50:09天秤座
日期:2013-10-16 18:02:08白羊座
日期:2013-10-18 13:35:33天蝎座
日期:2013-10-18 13:37:06狮子座
日期:2013-10-18 13:40:31双子座
日期:2013-10-22 13:58:42戌狗
日期:2013-10-22 18:50:04CU十二周年纪念徽章
日期:2013-10-24 15:41:34巨蟹座
日期:2013-10-24 17:14:56处女座
日期:2013-10-24 17:15:30双子座
日期:2013-10-25 13:49:39午马
日期:2013-10-28 15:02:15
5 [报告]
发表于 2011-05-27 08:53 |只看该作者
不错。书上的例子:
  1. use POSIX qw(:signal_h sigprocmask);

  2. my $SELF = "/path/to/my/program";
  3. my @ARGS = @ARGV;   # save for later

  4. $SIG{HUP} = \&phoenix;

  5. # your program

  6. sub phoenix {
  7.   # make signals harmless
  8.   for my $nal (qw[ALRM CHLD HUP INT PIPE TERM]) {
  9.     $SIG{$nal} = sub {  };
  10.   }

  11.   # reenable them
  12.   my $s = POSIX::SigSet->new;
  13.   my $t = POSIX::SigSet->new;
  14.   sigprocmask(SIG_BLOCK, $s, $t);

  15.   # and restart
  16.   print "Restarting\n";
  17.   exec $SELF => @ARGS;
  18.   die "Couldn't exec $SELF => @ARGS\n";
  19. }
复制代码

论坛徽章:
0
6 [报告]
发表于 2011-05-27 09:49 |只看该作者
要设置SIGBLOCK和SIGUNBLOCK。我的daemon都可以自由kill -HUP N次。

论坛徽章:
0
7 [报告]
发表于 2011-05-27 14:33 |只看该作者
回复 5# yybmsrs


    不是太懂,屏蔽信号后执行再exec,不是又阻塞了吗?

论坛徽章:
0
8 [报告]
发表于 2011-05-27 14:36 |只看该作者
回复 6# 兰花仙子


    当时只想要让进程进入后台,就忽视了信号屏蔽这一块,谢谢你的pdf~
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP