Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Preventing multiple instances

by Anonymous Monk
on Dec 17, 2020 at 09:03 UTC ( [id://11125330]=note: print w/replies, xml ) Need Help??


in reply to Preventing multiple instances

How can I prevent more than one instance of a script from running?
I use flock -n "$0" true || exit 1 in some of my shell scripts that need locking (i.e. check whether the script itself has an advisory lock on it). The same could be implemented in Perl:
use FindBin qw($Bin $Script); use Fcntl ':flock'; open my $fh, '>>', "$Bin/$Script" or die "open(>>$Bin/$Script): $!"; flock $fh, LOCK_EX|LOCK_NB or die "Another copy seems to be running";
The >> mode may be required depending on how flock is implemented (you may get by with just <). Alternatively, remove |LOCK_NB to make your process wait until it has the lock instead of terminating. Lock is automatically removed when the owning process terminates, so no need to manually unlock anything.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11125330]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-04-19 05:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found