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 ...
2
votes
2answers
2k views

Storing pid file for a daemon run as user

Is there a preffered place to store a pid file for a daemon that's run as a user? /var/run is the standard place, but this is for a user daemon so it doesnt have write privelages there. Presumably my ...
4
votes
1answer
2k views

How to use the pidfile library correctly?

I already read the man page of the pidfile function family. But I don't really understand it. What is the correct usage? Is there a more elaborate example available? I think I understand pidfile_open. ...
0
votes
1answer
442 views

Why in PHP CLI getmypid() returns 0 as a pid?

I'm developing a long running command line script and of course I want in not to launch itself more than once. So I write a .pid file and on launch check if a process with such PID exists. The problem ...
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 ...