Tagged Questions
-1
votes
0answers
6 views
daemon ceated via pam module is known as zombie [closed]
I need a program to run on user's login (with custom parameters for each user) and stop on users logout.
I have written a pam session module to start and stop program.
I run the program as a daemon ...
1
vote
1answer
25 views
What programs acquire a controlling tty?
The reason for doing a double-fork when daemonizing is to prevent the daemon acquiring a controlling tty (What is the reason for performing a double fork when creating a daemon?)
What are some ...
0
votes
0answers
30 views
In linux, is daemon processes more efficient than normal foreground programs?
I'm wondering whether daemon processes will perform better than normal programs because they eliminate some redundant features, such as allow interaction with users, etc.
0
votes
2answers
59 views
Really daemonize a command when using exec()?
From PHP pages of my apache server, I run some commands using a line like :
exec("{$command} >> /tmp/test.log 2>&1 & echo -n \$!");
You can see an explaination of the arguments ...
0
votes
0answers
33 views
subtle differences between foreground and daemon process?
I always assumed the only difference between these two was that the latter had a parent process id of 1 and could not use stdin/out/err.
I'm currently debugging an application that simply freezes ...
0
votes
1answer
31 views
Run code block with Daemons gem
can somebody explain why the following code won't spawn the passed block ?
require 'daemons'
t = Daemons.call do
# This block does not start
File.open('out.log','w') do # code don't get here ...
0
votes
1answer
62 views
UNIX - Stopping a custom service
I created a client-server application and now I would like to deploy it.
While development process I started the server on a terminal and when I wanted to stop it I just had to type "Ctrl-C".
Now ...
0
votes
3answers
214 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 ...
0
votes
0answers
75 views
What is the best way to automatically start and keep alive a gearman worker
Background info:
My app uses a typical newsfeed/activity stream where I fan out activity_id's into users activity streams upon the event taking place.
The activity streams are arrays of ...
0
votes
1answer
118 views
OS X double fork - daemonize script
I'm encountering some issues in one of my projects. I'm trying to code kind of a keylogger in python, that works on OS X 10.8 (Mountain Lion). But I'm getting this error when I try to launch my script ...
1
vote
2answers
143 views
Detect if a process has stopped in ubuntu
I have a daemon running on my server. It has been running smoothly for a while, and I keep logging every occurrence of an event in the daemon.
Yesterday I noticed something strange. The daemon had ...
1
vote
1answer
146 views
C++ Keep process alive after it kills its parent
I'm working on implementing a self-updater for a daemon on OS X. The update is published as a .pkg file, so what I'm trying to do is as follows:
When the daemon is notified that an update is ...
0
votes
2answers
132 views
Daemons & applications control
This is a duplicate question from here:
Differences in controlling daemons & applications
only with updated tags so more people
can view it and comment.
Hi everyone,
With respect to this ...
1
vote
1answer
96 views
Differences in controlling daemons & applications
With respect to this excellent post:
What's the difference between nohup and a daemon?
I would like to ask the following:
After launching an application from my terminal, the application keeps ...
1
vote
4answers
135 views
Python: reparenting or daemonizing a process
I have an action-queue in which I submit different jobs to different servers remotely using ssh. e.g.
ssh s1 job1.py
ssh s2 job2.py
The problem is job1.py and job2.py can take a long time to finish ...
1
vote
2answers
589 views
Launch an independent process with python
Its a really simple question really, but I cant seem to find any solution.
I have a python script and I want to launch an independent daemon process. I want to call ym python script, launch this ...
3
votes
1answer
371 views
Why does Process.setsid require root privileges in ruby?
In Ruby, a call to Process.setsid fails with "Operation not permitted" error if it's run as non-superuser. Try:
$ irb
irb(main):001:0> Process.setsid
Errno::EPERM: Operation not permitted
from ...
0
votes
2answers
360 views
proper way to stop a daemon process
I have a Jython script that I run as a daemon. It starts up, logs into a server and then goes into a loop that checks for things to process, processes them, then sleeps for 5 seconds.
I have a cron ...
0
votes
1answer
370 views
How to daemonize a process in C using fork() func. - socket programming
i ve searched quite a lot already and am aware that maybe i already came across some helpful answers but were unable to understand them...not really much of a programmer i am: )
the case is i would ...
3
votes
3answers
187 views
Java - under which circumstances may a JVM abruptly crash?
I'm running a daemon java process on my ubuntu machine :
java -cp (...) &> err.log&
The process runs for a random period of time and then just disappears. Nothing in LOGs, err.log, no ...
0
votes
4answers
828 views
Start process if dead
What I'm trying to do is to start a process if not started. Here is what I try
#!/bin/bash
pid=`ps ax | grep app | grep -v grep | wc -l`
if [ $pid = 0 ]
then
/etc/init.d/app start
fi
The problem ...
5
votes
2answers
451 views
Letting other users stop/restart simple bash daemons – use signals or what?
I have a web server where I run some slow-starting programs as daemons. These sometimes need quick restarting (or stopping) when I recompile them or switch to another installation of them.
Inspired ...
4
votes
4answers
406 views
How to know if a running script dies?
So I'm somewhat new to programming and mostly self-taught, so sorry if this question is a bit on the novice side.
I have a python script that runs over long periods (e.g. it downloads pages every few ...
3
votes
2answers
437 views
java Process' inputStream stuck
Here's my scenario:
process A spawns child process B and spins threads to drain B's outputs.
process B spawns daemon process C and drains its outputs, too.
process B finishes, daemon process still ...
0
votes
2answers
1k views
How to identify which Daemon Process is writing to the file
I need to identify a daemon process that is writing to a log file periodically. The problem is that I dont have any idea which process is doing the job, and I need to show some progress to the client ...
0
votes
1answer
989 views
How does one tell whether a process is in kernel or user space?
Some processes, and in particular some daemons, can run in either kernel space or user space (sort of like how a user can run in normal or superuser mode). Is there a simple way to find out which it ...
0
votes
2answers
415 views
How to run a script in daemon mode without output getting in the way?
I know how to run a script in daemon mode (add a & to it):
mycmd -y config.yaml run&
However, the script I'm running has lots of "print" statements, which ruin my output. Is there a way to ...
3
votes
2answers
2k views
Using python, daemonizing a process
Okay I have looked at python-daemon, and also at various other daemon related code recipes. Are there any 'hello world' tutorials out there that can help me get started using a python based daemonized ...
8
votes
1answer
260 views
Check what a running process is doing
Is there a way on Linux to check what a running Python daemon process is doing? That is, without instrumenting the code and without terminating it? Preferably I'd like to get the name of the module ...
1
vote
1answer
486 views
C# Keeping Sub-Process Running
I wrote a small program in C# NET a while back to keep a Java process running. I am about to deploy it to a bunch of servers and I am working on fixing up some of the code now. As it stands, I don't ...
0
votes
1answer
147 views
Is init process a daemon process
I want to know whether init process is a daemon process?
Thanks,
LinuxPenseur
48
votes
8answers
34k views
Node.js as a background service
I want my node.js server to run in the background, ie: when I close my terminal I want my server to keep running. I've googled this and came up with this tut, however it doesn't work as intended. So ...
0
votes
1answer
165 views
Talking with a Ruby daemonized process
I use Ruby 1.9 and the following method inside my program:
Process.daemon
Then, when I open a new terminal, I would like to call my daemonized program (named my_program) and send to it a message. ...
3
votes
4answers
573 views
C functions invoked as threads - Linux userland program
I'm writing a linux daemon in C which gets values from an ADC by SPI interface (ioctl). The SPI (spidev - userland) seems to be a bit unstable and freezes the daemon at random times.
I need to have ...
4
votes
3answers
2k views
How to auto-restart a python script on fail?
This post describes how to keep a child process alive in a BASH script:
http://stackoverflow.com/questions/696839/how-do-i-write-a-bash-script-to-restart-a-process-if-it-dies
This worked great for ...
2
votes
3answers
793 views
Recommended way to manage persistent PHP script processes?
First off - hello, this is my first Stack Overflow question so I'll try my best to communicate properly.
The title of my question may be a bit ambiguous so let me expand upon it immediately:
I'm ...
2
votes
3answers
831 views
Kill other bash daemons from the same script
I am having a hell of a time trying to write a "kill all other daemon processes" function for use within a bash daemon. I do not ever want more than one daemon running at once. Any suggestions? This ...
43
votes
6answers
43k views
Starting a background process in python
I'm trying to port a shell script to the much more readable python version. The original shell script starts several processes (utilities, monitors, etc.) in the background with "&". How can I ...
2
votes
3answers
2k 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 ...
4
votes
5answers
2k views
Can I start a script so it's independent of its parent process on Linux?
Is there a way to start a script from another process, so that if the process dies/ends, the script still continues?
Will setuid do this? If I were to set the owner to root, and then start the ...
23
votes
9answers
21k views
How to Daemonize a Java Program?
I have a Java program that I'd like to daemonize on a linux system. In other words, I want to start running it in a shell and have it continue running after I've logged out. I also want to be able to ...

