What is the best way to prevent a Linux program/daemon from being executed more than once at a given time?
|
The most common way is to create a PID file: define a location where the file will go (inside /var/run is common). On successful startup, you'll write your PID to this file. When deciding whether to start up, read the file and check to make sure that the referenced process doesn't exist (or if it does, that it's not an instance of your daemon: on Linux, you can look at There are scripts to help you do this, you may find |
|||||||
|
|
If you have access to the code (i.e. are writing it):
If you don't:
|
|||||||
|
|
I do not know what your exact requirement is but I had a similar requirement; in that case I started my daemon from a Shell script ( it was a HP-UX machine) and before starting the daemon I checked if an exec by same name is already running. If it is; then don't start a new one. By this way I was also able control the number of instances of a process. |
|||||||
|
|
I think this scheme should work (and is also robust against crashes): The loop in step 5 ensures that, if two instances are started at the same time, only one will be running in the end. |
|||
|
|
Use the boost interprocess library to create a memory block that will be created by the process. If it already exists, it means that there is another instance of the process. Exit. The more precise link to what you need would be this one.
|
||||
|
|
|
Have a pid file and on the startup do a Another approach would be to bind to a port and handle the bind exception on the second attempt to start the daemon. If the port is in use then exit otherwise continue running the daemon. |
|||||
|
|
I believe my solution is the simplest: (don't use it if racing condition is a possible scenario, but on any other case this is a simple and satisfying solution)
|
||||
|
|