Tagged Questions
-1
votes
0answers
48 views
Have a server play a sound when it receives an email [closed]
There's a server sitting in my room, and I would like it to play a sound whenever I receive a specific email (let's just say, for example, the emails that notify me I have a new follower on twitter).
...
0
votes
1answer
30 views
how to send input to a daemon in linux
#!/bin/bash
. /etc/init.d/functions
NAME=foo
DIR=/home/amit/Desktop
EXEC=foo.pl
PID_FILE=/var/run/foo.pid
IEXE=/etc/init.d/foo
RUN_AS=root
if [ ! -f $DIR/$EXEC ]
then
echo "$DIR/$EXEC not ...
1
vote
1answer
46 views
What is good way share reloadable config parameters for perl scripts
I have a lot of small Perl daemons with a common configuration.
Currently, I use this to load the settings:
In myconfig.pm:
package MyConfig;
use base 'Exporter';
BEGIN {
our @EXPORT = qw( ...
1
vote
0answers
36 views
Daemon::Generic locks disappearing upon daemonization on Solaris
I'm trying to use Daemon::Generic, and it seems to be exactly what I need, except on Solaris it seems that locking the pid file doesn't work. As a result, status always reports the process is dead, ...
0
votes
3answers
216 views
Start stop daemon library in perl or python [duplicate]
Possible Duplicate:
How can I run a Perl script as a system daemon in linux?
A number of maintenance shell scripts I'm writing need to be daemonized, and I'd like a library that does ...
4
votes
1answer
203 views
How to start-stop perl daemon from php
I need to control (start\stop\restart) a perl daemon from a web application (php).
Daemon starts (and run) correctly when I use my init script (/etc/init.d/foodaemon start (works fine) ) from command ...
1
vote
2answers
172 views
Should I turn a perl script that parses a /var/log/.* file into a daemon?
I am writing a perl script to parse, for example, /var/log/syslog.
The perl script triggers further subsequent tasks when particular events in the log appear. The log is parsed following the advice ...
3
votes
3answers
272 views
Trapping signals cleanly in Perl
I have a simple Perl script that simply prints a line of text to stdout. What I want to accomplish is that while this script runs, if I (or someone else) issues a signal to that process to stop, I ...
1
vote
1answer
194 views
Daemonize/Background A Process Launched Via Script From Another Program
I was hesitant to post this question because I assumed someone somewhere had asked it already but after much scouring, I've come up empty, so here it is.
BACKGROUND: I'm running a local agent ...
0
votes
1answer
471 views
how to send command to telnet which is running on non standard port in perl
I have one daemon process written in perl which listens custom commands on port 8622.
Now I want to write a client program which can call daemon process using telnet command. client program must grab ...
1
vote
1answer
190 views
Seeking advice on implementation of pre-forking master/worker daemon in Perl
I need to implement a daemon to drive network service monitoring probes using Perl.
The daemon should pre-fork a configured number of workers and a master process to fetch scheduled probes from the ...
4
votes
2answers
5k views
Call to daemon in a /etc/init.d script is blocking, not running in background
I have a Perl script that I want to daemonize. Basically this perl script will read a directory every 30 seconds, read the files that it finds and then process the data. To keep it simple here ...
2
votes
1answer
155 views
How do I clean up after my Daemon?
I am running a local instance of HTTP::Daemon using a modified version of the looping structure outlined in the documentation. I have made it possible to exit the loop at the user's request, but a ...
1
vote
2answers
980 views
Creating a pid_file while using Proc::Daemon::Init
I've been following the explanation in run a perl script as a daemon. I would like to create the pid_file within the perl script. After going through the documentation I was sure that the following ...
4
votes
2answers
2k views
Making a Perl daemon that runs 24/7 and reads from named pipes
I'm trying to make a log analyser using perl. The analyser would run 24/7 in the background on an AIX server and read from pipes that syslog directs logs to (from the entire network). Basically:
logs ...
2
votes
2answers
393 views
Perl Daemon Not Working with Sleep()
I wrote a simple test daemon using Proc::Daemon . Here is the daemon:
#!/usr/bin/perl
use Proc::Daemon;
$daemon = Proc::Daemon->new(
work_dir => '/scripts/',
...
3
votes
1answer
631 views
Starting and Stopping Perl Daemon in Linux
I've been working on a perl daemon for linux and here is its skeleton:
#!/usr/bin/env perl
use File::Copy;
use Socket;
use Sys::Hostname;
use POSIX qw(setsid);
use Env;
use Sys::Info::Constants qw( ...
1
vote
2answers
412 views
perl File::Tail syncronization
im having this situation:
Im parsing some log files with perl daemon. This daemon writes data to mysql db.
Log file can:
be rotated ('solved by filesize and some logic')
doesnt exist ...
0
votes
1answer
740 views
While cycle and usleep
Here is a cut from my daemon code:
package somepackage;
use Proc::Daemon;
use Time::HiRes qw/usleep/;
use constant{
LOGFILE => '/var/log/.../work.log'
};
our $LOG;
unless($pid)
{
...
2
votes
1answer
891 views
How do I daemonize a perl script from within a perl script?
I have a perl script which calls another perl script using backticks. I want to instead call this script and have it daemonize. How do I go about doing this?
edit:
I dont care to communicate back ...
0
votes
1answer
349 views
perl daemon Proc::Daemon::Init issue with DBI
I have a program as mentioned below:
use DBI;
use Proc::Daemon;
Proc::Daemon::Init;
my $continue = 1; $SIG{TERM} = sub { $continue = 0 };
while ($continue) {
my ...
0
votes
2answers
503 views
How do I get Perl's HTTP::Daemon to accept more than one connection?
I do some testing with HTTP::Daemon:
use HTTP::Daemon;
use HTTP::Status;
my $d = HTTP::Daemon->new || die;
print "Please contact me at: <URL:", $d->url, ">\n";
while (my $c = ...
1
vote
3answers
609 views
Writing a daemon in perl
I'm writing a daemon for a newsletter in Perl.
The daemon will be running 24/7 on the server. It'll have an active connection to postgresql database almost all the time.
I don't have that much ...
1
vote
1answer
97 views
Why hangs the web page after it started a daemon on the underlying server?
I would like to start/stop a daemon process on my home server via a simple web page.
The html is like this:
<form action="http://192.168.2.101/cgi-bin/managedaemon.pl" method="post">
...
1
vote
3answers
590 views
Perl IPC - FIFO and daemons & CPU Usage
I have a mail parser perl script which is called every time a mail arrives for a user (using .qmail). It extracts a calendar attachment out of the mail and places the "path" of the file in a FIFO ...
1
vote
2answers
144 views
Use a non-perl daemon as an HTTP::Daemon Object in perl
I have an apache web server running an HTTP daemon on port 80. This web server won't let me start any other http daemons. Is there a way I can link the already-running apache http daemon as an ...
0
votes
1answer
219 views
How do I create a new HTTP::Daemon in perl without root permisson?
Line 271 from HTTP::Proxy is this:
my $daemon = HTTP::Daemon->new(%args) or die "Cannot initialize proxy daemon: $!";
When I try to run this script:
use CGI;
use CGI::Carp(fatalsToBrowser);
...
2
votes
1answer
2k views
Does sleep get interrupted when any signal is received in perl?
I have this simple perl daemon:
#!/usr/bin/perl
use strict;
use warnings;
use Proc::Daemon;
Proc::Daemon::Init;
my $continue = 1;
$SIG{TERM} = sub { $continue = 0 };
$SIG{USR1} = sub { ...
0
votes
1answer
318 views
Perl daemon script for message queue hanging for 20 seconds after each process. Why?
I have daemon script written in Perl that checks a database tables for rows, pulls them in one by one, sends the contents via HTTP post to another service, then logs the result and repeats (only a ...
2
votes
2answers
1k views
Managing Signal Handling for daemons that fork()
I want to write a robust daemon in perl that will run on Linux and am following the template described in this excellent answer. However there are a few differences in my situation: First I am using ...
1
vote
3answers
904 views
How can a Perl CGI script communicate with a daemon on the webserver?
I am building a Web interface to monitor an embedded system.
I have built a Perl script which runs remote commands and gathers output from that system.
Now what I need is a Web interface which makes ...
2
votes
7answers
1k views
Is it a bad idea to write a multithreaded TCP server daemon in Perl?
Is it a bad idea to write multithreaded programs (specifically, TCP server daemons) in Perl?
3
votes
2answers
748 views
Why doesn't my program write to the file while using Proc::Daemon?
I write some testing code before using Proc::Daemon, what my testing code is like:
#! /usr/bin/perl
use strict;
use warnings;
use Proc::Daemon;
Proc::Daemon::Init();
my $continue = 1;
$SIG{TERM} = ...
0
votes
3answers
314 views
How can I prevent an error in my Perl script from terminating the script?
I have a simple Perl script which runs as a Linux daemon using an infinite loop. It connects to a database every 10 seconds to execute a process.
while (1)
{
# THIS LINE WILL KILL THE SCRIPT IF ...
23
votes
3answers
25k views
How can I run a Perl script as a system daemon in linux?
What's a simple way to get a Perl script to run as a daemon in linux?
Currently, this is on CentOS. I'd want it to start up with the system and shutdown with the system, so some /etc/rc.d/init.d ...
46
votes
11answers
11k views
How do I daemonize an arbitrary script in unix?
I'd like a daemonizer that can turn an arbitrary, generic script or command into a daemon.
There are two common cases I'd like to deal with:
I have a script that should run forever. If it ever ...
0
votes
2answers
3k views
How can I write a simple HTTP proxy in Perl?
I don't want to use the HTTP::Proxy package because I want to dump out a couple requests. My one liner looks like this, but breaks on trying to pass the header in:
perl -MData::Dumper -MHTTP::Daemon ...