Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Leave it running

by Anonymous Monk
on Dec 04, 2003 at 06:35 UTC ( [id://312118]=note: print w/replies, xml ) Need Help??


in reply to Leave it running

my system does not recoginize the command nohup.

Replies are listed 'Best First'.
Re: Re: Leave it running
by mpeppler (Vicar) on Dec 04, 2003 at 15:52 UTC
    If you can't use nohup for some reason then you can still "daemonize" your script. Someone mentioned POSIX::setsid() - I have had good luck with using the following subroutine:
    sub daemonize { my $childpid; if(($childpid = fork()) < 0) { die("can't fork: $!"); } elsif($childpid > 0) { exit(0); # parent - exits } (setpgrp() != -1) || die("Can't change process group: $!"); $SIG{HUP} = 'IGNORE'; if(($childpid = fork()) < 0) { die("can't fork: $!"); } elsif($childpid > 0) { exit(0); # parent - exits } chdir("/"); umask(0); }
    This code was borrowed from Stevens' "Unix Network Programming" - a book that should be in every programmers bookshelf...

    Michael

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://312118]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-24 04:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found