Sponsored Content
Top Forums Programming autostart script for stopped services Post 302555090 by kitt on Tuesday 13th of September 2011 09:24:39 PM
Old 09-13-2011
I think it be some cross platform way
PHP Code:
#!/usr/bin/perl

use strict;
use 
warnings;
use 
Proc::Daemon;

Proc::Daemon::Init;

my $continue 1;
$SIG{TERM} = sub $continue };

while (
$continue) {
     
#do stuff

 

10 More Discussions You Might Find Interesting

1. HP-UX

rc.log problem about autostart script

On HP-UX, we add some our autostart scripts in the system script under /sbin/rc*.d directory. The output of application is redirected to /dev/null in our script,but once the application has been startup with the OS starting,its ouput is redirected to the /etc/rc.log finally and cause the rc.log... (2 Replies)
Discussion started by: Frank2004
2 Replies

2. UNIX and Linux Applications

Autostart/Autorun Applications

I have developed a CD that runs both Windows and Mac software. I would like it to function as an autorun/autostart; I do not have a problem with the Windows code, but I do for the Mac. I do not feel like investing a couple of hundred $$$ into software, when, I am sure that several lines of UNIX... (2 Replies)
Discussion started by: HornetDr
2 Replies

3. Shell Programming and Scripting

why my script stopped- any reason(urgent please)

Hi Friends, iam running some scripts, which are all off suddenly stopping. Can any one tell me the reason why it happend. Is there any reason to stop the scripts. Thanks Krishna. (1 Reply)
Discussion started by: krishna9
1 Replies

4. AIX

Autostart of LPAR

Hi, I have 2 lpars on my AIX that needs to be started manually after each reboot. Because the servers are storing the NFS and NIS info, other servers won't run correctly until they start up. I found in IBM documentation the steps to make it automatic. My question is, I want to know if... (2 Replies)
Discussion started by: rahzzbietel
2 Replies

5. Debian

Iomega ix2-200 Custom Debian - Autostart script in init.d not Working

!!Hello Everyone!! I Recently purchased a Iomega iX2-200 NAS that runs a custom debian installed by Iomega (Linux Debian 5.0.2 ( 2.6.22.18 armv5tejl)) . I have SSH access. I installed Transmission since the factory installed torrents manager that Iomega uses is terrible. Transmission-daemon... (1 Reply)
Discussion started by: stejimenez
1 Replies

6. UNIX for Advanced & Expert Users

stopped(sigttou) error while executing a script in background

Hi All, I have an issue where in when i execute a script in the background using '&', it exits with stopped(SIGTTOU) signal. There are two servers, where the Compute server is HP-Unix and Data server is Linux. I tried using the "stty - tostop" command to disable the SIGTTOU for background... (1 Reply)
Discussion started by: vmenon
1 Replies

7. Shell Programming and Scripting

shell script getting stopped at the middle.

I have created a shell scrit to run the informatica workflows sequentially.In the script i am executing 7 workflows sequentially after running 4 workflows the scrpt getting stop and it is not continuing next step evn it is updating logs.4th workflow will take more time to finish is that making... (1 Reply)
Discussion started by: katakamvivek
1 Replies

8. Shell Programming and Scripting

Script to Start services based on dependent services on other AIX machine

Hi, I just started working on a script. After my research, i found a command which can help me: AIM: To build a script which starts the services (Services 1) on server 1 automatically whenever its down. And it has a dependency on other service (Service 2) on Server 2. So my script has to... (4 Replies)
Discussion started by: draghun9
4 Replies

9. Shell Programming and Scripting

Perl script stopped working

Hi, I have the following segment of a script which is supposed to prompt a user for password and then capture the password entered by the user. The function is called in by another script and used to work without issue, the problem is that recently the script is not waiting for the user to... (3 Replies)
Discussion started by: belalr
3 Replies

10. Shell Programming and Scripting

Korn Shell script in stopped state while running in background

Hi, I want to run a shell script in background . but its going to stopped state $ ksh cat_Duplicate_Records_Removal.ksh & 8975 $ + Stopped (tty output) ksh cat_Duplicate_Records_Removal.ksh & why is this happening? Also could anyone please tell me what is a stopped... (12 Replies)
Discussion started by: TomG
12 Replies
Proc::Daemon(3pm)					User Contributed Perl Documentation					 Proc::Daemon(3pm)

NAME
Proc::Daemon - Run Perl program(s) as a daemon process. SYNOPSIS
use Proc::Daemon; $daemon = Proc::Daemon->new( work_dir => '/my/daemon/directory', ..... ); $Kid_1_PID = $daemon->Init; unless ( $Kid_1_PID ) { # code executed only by the child ... } $Kid_2_PID = $daemon->Init( { work_dir => '/other/daemon/directory', exec_command => 'perl /home/my_script.pl', } ); $pid = $daemon->Status( ... ); $stopped = $daemon->Kill_Daemon( ... ); DESCRIPTION
This module can be used by a Perl program to initialize itself as a daemon or to execute ("exec") a system command as daemon. You can also check the status of the daemon (alive or dead) and you can kill the daemon. A daemon is a process that runs in the background with no controlling terminal. Generally servers (like FTP, HTTP and SIP servers) run as daemon processes. Do not make the mistake to think that a daemon is a server. ;-) Proc::Daemon does the following: 1. The script forks a child. 2. The child changes the current working directory to the value of 'work_dir'. 3. The child clears the file creation mask. 4. The child becomes a session leader, which detaches the program from the controlling terminal. 5. The child forks another child (the final daemon process). This prevents the potential of acquiring a controlling terminal at all and detaches the daemon completely from the first parent. 6. The second child closes all open file descriptors (unless you define "dont_close_fh" and/or "dont_close_fd"). 7. The second child opens STDIN, STDOUT and STDERR to the location defined in the constructor ("new"). 8. The second child returns to the calling script, or the program defined in 'exec_command' is executed and the second child never returns. 9. The first child transfers the PID of the second child (daemon) to the parent. Additionally the PID of the daemon process can be written into a file if 'pid_file' is defined. Then the first child exits. 10. If the parent script is looking for a return value, then the PID(s) of the child/ren will be returned. Otherwise the parent will exit. NOTE: Because of the second fork the daemon will not be a session-leader and therefore Signals will not be send to other members of his process group. If you need the functionality of a session-leader you may want to call POSIX::setsid() manually at your daemon. INFO: Since "fork" is not performed the same way on Windows systems as on Linux, this module does not work with Windows. Patches appreciated! CONSTRUCTOR
new ( %ARGS ) The constructor creates a new Proc::Daemon object based on the hash %ARGS. The following keys from %ARGS are used: work_dir Defines the path to the working directory of your daemon. Defaults to "/". setuid Sets the real user identifier ($<) and the effective user identifier ($>) for the daemon process using "POSIX::setuid( ... )", in case you want to run your daemon under a different user from the parent. Obviously the first user must have the rights to switch to the new user otherwise it will stay the same. It is helpful to define the argument "setuid" if you start your script at boot time by init with the superuser, but wants the daemon to run under a normal user account. child_STDIN Defines the path to STDIN for your daemon. Defaults to "/dev/null". Default Mode is '<' (read). You can define other Mode the same way as you do using Perls "open" in a two-argument form. child_STDOUT Defines the path where the output of your daemon will go. Defaults to "/dev/null". Default Mode is '+>' (write/read). You can define other Mode the same way as you do using Perls "open" in a two-argument form. child_STDERR Defines the path where the error output of your daemon will go. Defaults to "/dev/null". Default Mode is '+>' (write/read). You can define other Mode the same way as you do using Perls "open" in a two-argument form, see example below. dont_close_fh If you define it, it must be an arrayref with file handles you want to preserve from the parent into the child (daemon). This may be the case if you have code below a "__DATA__" token in your script or module called by "use" or "require". dont_close_fh => [ 'main::DATA', 'PackageName::DATA', $my_filehandle, ... ], You can add any kind of file handle to the array (expression in single quotes or a scalar variable), including 'STDIN', 'STDOUT' and 'STDERR'. Logically the path settings from above ("child_STDIN", ...) will be ignored in this case. DISCLAIMER: Using this argument may not detach your daemon fully from the parent! Use it at your own risk. dont_close_fd Same function and disclaimer as "dont_close_fh", but instead of file handles you write the numeric file descriptors inside the arrayref. pid_file Defines the path to a file (owned by the parent user) where the PID of the daemon process will be stored. Defaults to "undef" (= write no file). exec_command Scalar or arrayref with system command(s) that will be executed by the daemon via Perls "exec PROGRAM_LIST". In this case the child will never return to the parents process! Example: my $daemon = Proc::Daemon->new( work_dir => '/working/daemon/directory', child_STDOUT => '/path/to/daemon/output.file', child_STDERR => '+>>debug.txt', pid_file => 'pid.txt', exec_command => 'perl /home/my_script.pl', # or: # exec_command => [ 'perl /home/my_script.pl', 'perl /home/my_other_script.pl' ], ); In this example: o the PID of the daemon will be returned to $daemon in the parent process and a pid-file will be created at "/working/daemon/directory/pid.txt". o STDOUT will be open with Mode '+>' (write/read) to "/path/to/daemon/output.file" and STDERR will be open to "/working/daemon/directory/debug.txt" with Mode '+>>' (write/read opened for appending). o the script "/home/my_script.pl" will be executed by "perl" and run as daemon. Therefore the child process will never return to this parent script. METHODS
Init( [ { %ARGS } ] ) Become a daemon. If used for the first time after "new", you call "Init" with the object reference to start the daemon. $pid = $daemon->Init(); If you want to use the object reference created by "new" for other daemons, you write "Init( { %ARGS } )". %ARGS are the same as described in "new". Notice that you shouldn't call "Init()" without argument in this case, or the next daemon will execute and/or write in the same files as the first daemon. To prevent this use at least an empty anonymous hash here. $pid = $daemon->Init( {} ); @pid = $daemon->Init( { work_dir => '/other/daemon/directory', exec_command => [ 'perl /home/my_second_script.pl', 'perl /home/my_third_script.pl' ], } ); If you don't need the Proc::Daemon object reference in your script, you can also use the method without object reference: $pid = Proc::Daemon::Init(); # or $pid = Proc::Daemon::Init( { %ARGS } ); "Init" returns the PID (scalar) of the daemon to the parent, or the PIDs (array) of the daemons created if "exec_command" has more then one program to execute. See examples above. "Init" returns 0 to the child (daemon). If you call the "Init" method in the context without looking for a return value (void context) the parent process will "exit" here like in earlier versions: Proc::Daemon::Init(); Status( [ $ARG ] ) This function checks the status of the process (daemon). Returns the PID number (alive) or 0 (dead). $ARG can be a string with: o "undef", in this case it tries to get the PID to check out of the object reference settings. o a PID number to check. o the path to a file containing the PID to check. o the command line entry of the running program to check. This requires Proc::ProcessTable to be installed. Kill_Daemon( [ $ARG [, SIGNAL] ] ) This function kills the Daemon process. Returns the number of processes successfully killed (which mostly is not the same as the PID number), or 0 if the process wasn't found. $ARG is the same as of "Status()". SIGNAL is an optional signal name or number as required by Perls "kill" function and listed out by "kill -l" on your system. Default value is 9 ('KILL' = non-catchable, non-ignorable kill). Fork Is like the Perl built-in "fork", but it retries to fork over 30 seconds if necessary and if possible to fork at all. It returns the child PID to the parent process and 0 to the child process. If the fork is unsuccessful it "warn"s and returns "undef". OTHER METHODS
Proc::Daemon also defines some other functions. See source code for more details: OpenMax( [ $NUMBER ] ) Returns the maximum file descriptor number. If undetermined $NUMBER will be returned. adjust_settings Does some fixes/adjustments on the "new" settings together with "fix_filename". fix_filename( $KEYNAME ) Prevents double use of same filename in different processes. get_pid( [ $STRING ] ) Returns the wanted PID if it can be found. get_pid_by_proc_table_attr( $ATTR, $MATCH ) Returns the wanted PID by looking into the process table, or "undef". Requires the "Proc::ProcessTable" module to be installed. NOTES
"Proc::Daemon::init" is still available for backwards capability. AUTHORS
Primary-maintainer and code writer until version 0.03: o Earl Hood, earl@earlhood.com, http://www.earlhood.com/ Co-maintainer and code writer since version 0.04: o Detlef Pilzecker, http://search.cpan.org/~deti/, http://www.secure-sip-server.net/ CREDITS
Initial implementation of "Proc::Daemon" derived from the following sources: o "Advanced Programming in the UNIX Environment" by W. Richard Stevens. Addison-Wesley, Copyright 1992. o "UNIX Network Programming", Vol 1, by W. Richard Stevens. Prentice-Hall PTR, Copyright 1998. PREREQUISITES
This module requires the "POSIX" module to be installed. The "Proc::ProcessTable" module is not essentially required but it can be useful if it is installed (see above). SEE ALSO
perl(1), POSIX, Proc::ProcessTable COPYRIGHT
This module is Copyright (C) 1997-2011 by Earl Hood and Detlef Pilzecker. All Rights Reserved. This module is free software. It may be used, redistributed and/or modified under the same terms as Perl itself. perl v5.12.3 2011-06-04 Proc::Daemon(3pm)
All times are GMT -4. The time now is 03:03 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy