Tagged Questions
10
votes
7answers
9k views
How to make a python script run like a service or daemon in linux
I have written a python script that checks a certain e-mail address and passes new e-mails to an external program. How can I get this script to execute 24/7, such as turning it into daemon or service ...
3
votes
5answers
303 views
What is the preferred way to write my linux daemons?
Hello to All
I have a PHP website that should use some cached data (stored in Memcache, for example).
The data should be stored in cache by daemons fetching it from web services and some of it should ...
1
vote
2answers
152 views
Handling Input and Output of a Daemon
I want to create a daemon of a ruby program on Linux.
I also want the daemon to be interactive-I want to be able to send input to the daemon through a file/pipe/the simplest method and receive output ...
1
vote
1answer
161 views
starting and stopping a daemon at user login logout
I have a daemon script written in ruby which responds to commands like daemon start and daemon stop. It's executable with shebang #!/usr/bin/env ruby and it works invoked from terminal. I need to ...
0
votes
4answers
85 views
Remote process control in Linux
I'm currently working on a project requiring a number of processes running under control of a "master" process, which receives remote commands via TCP and tells the child processes what to do (e.g.: ...
-2
votes
2answers
65 views
When daemon will hog cpu?
What are the possible condition might occur for daemon to hog the cpu and makes the system very slow or moved to non-responsive state?
Daemons have few threads as well.