4
votes
1answer
76 views

SHOUTcast daemon script not functioning properly

I've got a SHOUTcast server running on Ubuntu. The server process is running great, but I can't seem to get the daemon script to function properly. Following a couple tutorials I found I came up ...
1
vote
2answers
122 views

start daemon on remote server via Jenkins SSH shell script exits mysteriously

I have a build job on jenkins that is building my project and after it is done, it opens an ssh shell script on a remote server and transfers files and then stop and starts a daemon. When I stop and ...
0
votes
3answers
135 views

Python subprocess not executing when daemonized

I try to execute a script inside a method where parent Class is daemonized. autogamma.sh is a script that need ImageMagick to be installed (and use convert) that can be found here : ...
0
votes
1answer
38 views

cron output to a deamon process

I would like to know if I could make cron.d execute a cron command so that whatever comes on stdout or stderr is redirected to a daemon process running on the same machine waiting for an input. In ...
-3
votes
3answers
266 views

How to write the daemon scripts in unix? [closed]

Please could you tell me how to write the scripts for daemon process . Regards, Vedant
0
votes
1answer
132 views

check directory content every 2 second and copy its content if some file exists there in bash

I want to check a specific directory in linux bash every 2 second and if any file exists there make a copy of that file to a directory before a running daemon process hijacks that file (make some ...
0
votes
2answers
144 views

c pipes shell daemon with log capability not working

I have the following code: #include <netinet/in.h> #include <fcntl.h> #include <stdio.h> int main (void) { int fd_s=socket(AF_INET, SOCK_STREAM, IPPROTO_IP); struct sockaddr_in ...
3
votes
3answers
456 views

How to convert a cron to a daemon

I have a cron shell script which calls a stored procedure to do some operation. I want to know how can I change that cron to a daemon. Here's what I have. #!/bin/ksh # @(#)abc.sh . ...
4
votes
5answers
8k views

Getting pids from ps -ef |grep keyword

I want to use ps -ef | grep "keyword" to determine the pid of a daemon process (there is a unique string in output of ps -ef in it). I can kill the process with pkill keyword is there any command ...
1
vote
3answers
207 views

execute python script when directory is not empty - Directory Monitoring

I have a python script that converts images and videos withing a directory. The problem, the python script executes manually but I need the script to execute automatically when a file is dropped into ...
0
votes
2answers
573 views

BASH: Shell Script as Init Script

I have a shell script that calls a java jar file and runs an application. There's no way around this, so I have to work with what I have. When you execute this shell script, it outputs the ...
0
votes
2answers
48 views

Help regarding a shell script

I was creating a init.d service, and was reading a few scripts for reference. I found this one in a skeleton: What does this snippet do? I get that this is a switch:case. I am asking about the case ...
1
vote
1answer
1k views

JSVC initscript doesn't exit

I'm trying to deamonize my Java app using jsvc. This is my initscript #!/bin/sh # CONFIG JSVC=/opt/jsvc/jsvc JAVA_HOME=/usr/lib/jvm/jre-1.6.0-openjdk.x86_64 USER=gserv ARGS=none # END CONFIG ...
0
votes
3answers
3k views

Executing shell script with system() returns 256. What does that mean?

I've written a shell script to soft-restart HAProxy (reverse proxy). Executing the script from the shell works. But I want a daemon to execute the script. That doens't work. system() returns 256. I ...
5
votes
2answers
2k views

Simple queue for youtube-dl in the Linux shell

youtube-dl is a Python script that allows one to download YouTube videos. It supports an option for batch downloads: -a FILE, --batch-file=FILE file containing URLs to download ('-' for stdin) ...
0
votes
2answers
127 views

Periodic Script- Daemon-

ux and i need delete a specific file every day. then I need to do a shell script or something else with a simple command for example # rm <filename> But i need add this script to init, or ...
5
votes
2answers
4k views

Creating a Custom Ubuntu Daemon

What's the "correct" way to create a custom daemon in Ubuntu, that will start at boot time and be controllable by Ubuntu's standard daemon start/stop commands? Can I just copy and paste one of the ...
1
vote
4answers
455 views

call function at specific time intervals in Linux

What is the best way to call a function inside a Linux daemon at specific time intervals, and specific time (e.g. at 12am every day, call this function). I'm not referring to calling a process with ...
2
votes
3answers
3k views

Spawn and detach PHP process without sharing any db-resources so that the child can exit?

I want an "eternal" process that goes through a MySQL table and spawns child processes. Pseudo code: while(true) $rows = SELECT * FROM workers foreach($rows as $row){ DELETE ...