The `flock` utility manages locks in shell scripts

learn more… | top users | synonyms

0
votes
1answer
31 views

PHP overwriting file issues

I have a problem while overwriting a file. I tried everthing but SOMETIMES (maybe for a matter of time) nothings seems to work as it should. Here's the code: include_once "changevar.php"; ...
2
votes
3answers
66 views

erlang inter-process lock mechanism (such as flock)

Does Erlang have an inter-process (I mean Linux or Windows process) lock mechanism such as flock ? The usage would be as follows : an Erlang server starts serving a repository, and puts a file lock ...
1
vote
1answer
61 views

PHP counter with flock

I have a problem with a counter. I need to count two variables, separated with a |, but sometimes the counter doesn't increase a variable's value. numeri.txt (the counter): 6122|742610 This is the ...
0
votes
1answer
86 views

how to use flock between C program and shell script

I have a shell script and a c program #!/bin/bash for i in `seq 1 10000` do (flock -x 200 // what is 200? ./taskA ) 200> lockfile done in the C ...
0
votes
1answer
33 views

Apache RewriteLock alternative using PHP?

My server is running CentOS under Plesk so editing my httpd.conf to add a Rewritelock entry is not an option as I understand it. A RewriteLock entry is also not allowed in a vhost.config either, so I ...
-1
votes
1answer
139 views

node-gyp build error while installing raw-socket

I am trying to install net-ping module on my nodejs but I get a strange error in the raw-socket installation phase. I had the same flock problem when I was compiling nodejs source code for ...
-1
votes
1answer
41 views

how to use flock to orchestrate running of different programs, so that they can run at different time?

in a remote host, I want to run 3 programs A , B and C but I want them to run at different time so if A is running, B and C can't run so when I want to run A, if I detect that the file is locked I ...
1
vote
1answer
50 views

PHP counter issue using flock()

I have a problem with a counter. I need to count two variables, separated with a |, but sometimes the counter doesn't increase a variable's value. numeri.txt (the counter): 5240|593389 This is the ...
1
vote
1answer
39 views

PHP - Counter issue using flock function

I am trying to block a file using the flock() function to avoid an overwrite error but the counter often resets (probably for a reading issue). numeri.txt (counter) 4895|533753 frame.php (PHP ...
1
vote
0answers
90 views

Exclusively open a device file in Linux

What ways are there available, for exclusively opening a device file (say, the display frame buffer)? [Info: I already know about flock() & friends, which have an effect only when the other ...
0
votes
2answers
45 views

PHP Flock Writing to Open File

I have a php script that logs ads(banners) for a website and stores them to a .dat file. Inside this file an ID, URL, an other important information is saved. The problem I am having is that there ...
0
votes
3answers
61 views

PHP. Safely writting to a file [closed]

I would like to know if the below code was written correctly. I'm trying to write a safe critical part which writes inside a file and tries to anticipate anything that could go wrong. Is there ...
2
votes
1answer
75 views

How can I make a non-blocking request for an exclusive lock using File#flock?

How Should I Request a Non-Blocking Lock? Why doesn't Ruby's File#flock work as expected when separate attempts are made to lock a file? Locking the file in a block is not the correct solution for ...
1
vote
1answer
118 views

How does the 'Flock' iOS app detect when photos have been taken?

Flock is a reasonably new iOS app from the guys at Bump, which has an interesting feature. It somehow knows when photos have been taken by another app, notifies the user (in a notification center ...
1
vote
1answer
311 views

show “flock: Command not found” when install node.js on QNAP NAS

I want to install node.js on QNAP NAS, it's a linux OS I can use ipkg install package. but ipkg not have node.js... I reference web forum as http://forum.qnap.com/viewtopic.php?p=248556, installed V8 ...
1
vote
1answer
153 views

Why is my php flock not detect an existing lock when running command twice?

A little explanation, I have a Symfony2 setup. I'm using an abstract command class that I extend. I want any of those batches to be able to run only once. My goal is to make a lock file which I open ...
2
votes
1answer
151 views

bash: Could flock prevent from running the script all together?

I'm sorry I can't fully focus my question. I'm trying to use flock to avoid from running the script concurrently, like described here in the accepted answer: How to prevent a script from running ...
1
vote
1answer
104 views

Bash: How to lock also when perform an outside script

Here is my bash code: ( flock -n -e 200 || (echo "This script is currently being run" && exit 1) sleep 10 ...Call some functions which is written in another script... sleep 5 ) ...
2
votes
1answer
658 views

bash flock: Why 200?

Regarding that thread: bash flock: exit if can't acquire lock I'll appreciate if someone can explain to me what does the '200' stand for. I've read about flock and it seems that 200 if to ...
0
votes
2answers
145 views

PHP flock() non-blocking still block why?

I'm using flock() function to check if another instance of the script is already running by obtaining the lock on a temporary file so next instance should check if the file is not locked otherwise it ...
0
votes
0answers
35 views

EXC BAD ACCES in flocking code

At the moment I'm working at an assignment for which I have to make a flocking system with different subclasses that behave different. I'm working with OpenFrameworks and C++. I'm pretty new to Open ...
3
votes
2answers
208 views

Use inheritance with stdvector based flocking

At the moment I'm working at an assignment for which I have to make a flocking system with different subclasses that behave different. I'm working with OpenFrameworks and C++. I'm pretty new to Open ...
1
vote
5answers
107 views

How can I synchronize access to a file within a single process in node.js?

I have a Web server that reads and writes to a data file on disk. I'd like a file only be written to in a single Web request. Here's an example program that illustrates my problem. It keeps a state ...
1
vote
1answer
275 views

fopen(file,w+) truncates the file before I can check if it's locked with flock()

I have a function which receives a filename and a json object to write to a text file. The object is updated and needs to entirely replace the current contents of the file. Each site visitor has ...
1
vote
1answer
65 views

efficient file update with flock and move

I want to update a file while other processes may be using reading it. php flock fucntion allows exactly to do that. However as I see the flock only takes a file handle .. that generally comes from ...
0
votes
2answers
250 views

Release of flock in case of errors?

Imagine the following Perl code (here in pseudo code): successfully acquired flock for FILEHANDLER # line 1 some error or maybe simply a call to exit() # line 2 close FILEHANDLER (which ...
0
votes
0answers
67 views

Odd behavior on flock() php functions

I am trying to avoid multiple executions of the same script, using a lock file. Thing is, it seems that when ever i execute a file function, the script loops until its hable to acess the file. Just ...
2
votes
2answers
475 views

php flock and fread and fwrite

I see people using flock like this: if (!$fp = fopen($file_name, 'wb')) { return FALSE; } if (flock($fp, LOCK_EX)) { fwrite($fp, serialize($data)); flock($fp, LOCK_UN); } ...
1
vote
1answer
232 views

TCL, Linux, and FLOCK

So I am working with a program written in TCL that uses the FLOCK function to lock files. I am testing it on a newer version of Linux than the one it currently runs on and I found that when the newer ...
0
votes
1answer
138 views

flock correct usage to prevent read while writing

*/10 * * * * /usr/bin/flock -x -w 10 /tmp/craigslist.lock /usr/bin/lynx -width=120 -dump ...
2
votes
1answer
428 views

How to unlock using lockf()?

I want to read from txt file and append the next number in it, I want to use fork as well to work as a second process. In following code, I need help to unlock the file. I am unable to unlock the ...
0
votes
0answers
128 views

Is PHP flock safe in multithreaded mode on linux?

The PHP flock documentation says it is unsafe on some multithreaded servers like ISAPI, because the lock is a process wide thing, so if one instance of php on thread 1 locks a file another php ...
4
votes
1answer
1k views

PHP Semaphore alternative?

I'm making a small online game, where (what do you know) there'll be multiple users accessing the same database. My host doesn't enable Semaphores and I cannot really afford for something else (I'm a ...
0
votes
2answers
157 views

graph DB equivalent of bipartite network projection?

Suppose a network with two kinds of nodes, say users and places, with the relationship "has been in". This is a bipartite network, and from it usually a module such as networkx provides the ...
2
votes
2answers
428 views

Perl: flock() works on Linux, ignores previous lock on AIX

In a nutshell: wrote a Perl script using flock(). On Linux, it behaves as expected. On AIX, flock() always returns 1, even though another instance of the script, using flock(), should be holding an ...
2
votes
2answers
200 views

Writing to same file at the very same time

Ok, I know that there's been similar questions on this site about this problem, but none of this questions and provided answers isn't exactly what I need. I'm building flat-file based CMS. What if, ...
2
votes
1answer
300 views

flock(), then fgets(): low-level locks, then stdio read/write library functions. Is it possible?

I'm writing a server web. Each connection is served by a separate thread, so I don't know in advance the number of threads. There are also a group of text files (don't know the number, too), and ...
1
vote
1answer
104 views

using flock() on an array of file paths not working

I have a function that locks all files in a certain folder: function lockFolder_files($folder='',$task=''){ global $file_array;//I need to use this var outside the function too ...
1
vote
3answers
917 views

How to check if a file is locked (using flock())? PHP

I have a file I'm writing to, but I need to lock it first (using flock()), to prevent any other script from writing to it. So I have: $file=fopen($file_p); if (flock($file, LOCK_EX)) {//lock ...
2
votes
2answers
1k views

multiple threads able to get flock at the same time

I was under the impression that flock(2) is thread safe, I recently, ran across the case in the code, where multiple threads are able to get a lock on the same file which are all synchronized with the ...
2
votes
1answer
504 views

How to use flock()

I want to use system locks to avoid race conditions. One process being an opencv program saving captured image to a .jpg file. The other process being browser fetching the same image file from the ...
-1
votes
1answer
334 views

PHP Simultaneous file access / flock() issue

I'm having trouble implementing a script which should parse a json string from a file, either overwrite the object with the same id or add it to the json array and write it back to the file. The ...
3
votes
1answer
92 views

PHP - PHPUnit - Test Ability to Secure a Filelock

I am working on updating unit tests for my core library, and came across a scenario regarding filelocks (flock), and wanted to see how others implemented these types of unit tests. Basically I have a ...
3
votes
1answer
351 views

Deadlock with flock, fork and terminating parent process

I have a pretty complicated python program. Internally it has a logging system that uses an exclusive (LOCK_EX) fcntl.flock to manage global locking. Effectively, whenever a log message is dumped, ...
1
vote
2answers
724 views

How can I lock a directory in C on a linux machine

Will flock or lockf work on a directory? I there another way to lock a directory in C on a linux machine?
3
votes
2answers
867 views

flock-ing a C++ ifstream on Linux (GCC 4.6)

context I'm slowly writing a specialized web server application in C++ (using the C onion http server library and the JSONCPP library for JSON serialization, if that matters)., for a Linux system ...
2
votes
2answers
243 views

PHP Accessing a file that has been locked for editing - Permission Denied error

I'm doing some csv parsing, and if I cancel the parsing (by navigating to a different page or refreshing) before the fclose() function gets called, I get the below error when I go back and start up ...
0
votes
1answer
281 views

Choice of filehandle for flock utility

The flock utility man page gives the following usage example: ( flock -s 200 # ... commands executed under lock ... ) 200>/var/lock/mylockfile Assuming 200 is the filehandle of the ...
1
vote
1answer
261 views

How to keep linux flock(2) from starving exclusive lock requests?

I am using flock(2) in linux to control access to resources in a homespun database, using both shared and exclusive locking modes. I find that if a shared lock is granted, then another process can ...
3
votes
3answers
300 views

Flocking and surrounding instead of moving away?

Are there any examples of flocking where the flock surrounds and engages the target instead of a fish like feeding frenzy where they swoop in then fly away? I'm working on an overhead shooter and I ...

1 2