What's a quick-and-dirty way to make sure that only one instance of a shell script is running at a given time?
|
7
|
|
|
|
|
|
Here's an implementation that uses a lockfile and echos a pid into it. This protects if the process is killed before removing the pidfile:
The trick here is the kill -0 which doesn't deliver any signal but just checks if a pid is running. Also the call to trap will ensure that the lockfile is removed even when your process is killed (except kill -9). |
||||||||||
|
|
|
Create a lock file in a known location and check for existence on script start? Putting the PID in the file might be helpful if someone's attempting to track down an errant instance that's preventing execution of the script. |
||
|
|
|
|
Quick and dirty?
|
||||||||
|
|
|
PID and lockfiles are definitely the most reliable. When you attempt to run the program, it can check for the lockfile which and if it exists, it can use |
||
|
|
|
|
There's a wrapper around the flock(2) system call called, unimaginatively, flock(1). This makes it relatively easy to reliably obtain exclusive locks without worrying about cleanup etc. There are examples on the man page as to how to use it in a shell script. |
||
|
|
|
|
The issues with some of the above answers is that they are not atomic, so you could still run into issues if two scripts tried to run at about the same time. |
||
|
|
|
|
Some unixes have From the manpage:
|
||
|
|
|
|
To make locking reliable you need an atomic operation. Many of the above proposals are not atomic. The proposed lockfile(1) utility looks promising as the man-page mentioned, that its "NFS-resistant". If your OS does not support lockfile(1) and your solution has to work on NFS, you have not many options.... NFSv2 has two atomic operations:
With NFSv3 the create call is also atomic. Directory operations are NOT atomic under NFSv2 and NFSv3 (please refer to the book 'NFS Illustrated' by Brent Callaghan, ISBN 0-201-32570-5; Brent is a NFS-veteran at Sun). Knowing this, you can implement spin-locks for files and directories (in shell, not PHP): lock current dir:
lock a file:
unlock current dir (assumption, the running process really acquired the lock):
unlock a file (assumption, the running process really acquired the lock):
Remove is also not atomic, therefore first the rename (which is atomic) and then the remove. For the symlink and rename calls, both filenames have to reside on the same filesystem. My proposal: use only simple filenames (no paths) and put file and lock into the same directory. |
||
|
|
|
|
All approaches that use lock files are flawed. Why? Because there is no way to check whether a file exists and create it in a single atomic action. Because of this; there is a race condition that WILL make your attempts at mutual exclusion break. Instead, you need to use
For all details, see the excellent BashFAQ: http://mywiki.wooledge.org/BashFAQ/045 |
||
|
|
|
|
When targeting a Debian machine I find the Here's my solution which uses To use it simply call
|
|||
|
|
