The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
58 views

exclusive lock file on windows c webserver

I'm writing a (very small) webserver in C language on Windows. I need exclusive lock file both on reading and writing files, i've read msdn documentation about locking etc. and I've found the function ...
4
votes
1answer
120 views

Implementing a portable file locking mechanism

I have implemented a file locking mechanism along the lines of the suggestion from the linux man page for "open", which states: Portable programs that want to perform atomic file locking using a ...
0
votes
4answers
112 views

What is the best way to lock a file to prevent multiple users from accessing it

I have a windows form app in which users can open, create and save xml files. Files are typically saved to a network folder. I need to make sure a given file can only be opened by one user at a time. ...
0
votes
1answer
42 views

Ensuring security of my files at web server

I have hosted my website on a shared web-hosting server. However, I am worried about the security of the files that I have kept on the server. Admins of web-hosting service keep on changing the ...
0
votes
1answer
635 views

Using defaults write on com.apple.dock.plist, lockfile problems

I'm a lab aide for a music lab full of iMacs. The professor in charge of the lab wants all the settings on all the computers to be identical, so I'm working on a bash script to have all the computers ...
0
votes
1answer
211 views

Installing gitosis plugin in bitnami redmine missing lockfile

I've been working on this issue for quite some time now and I did not come up with an solution so far. I have installed redmine via a bitnami stack. I set up git via gitosis as well, and now I'm ...
1
vote
1answer
282 views

How to stock PID of lockfile command in Linux

I am using lockfile command in linux to manage access to a special file. When my principal script crashes for some reason, i finish having hanging locks that prevent any new launch of the principal ...
1
vote
1answer
883 views

C++ Lock File Windows Blocking Mode

How can I block a file on Windows using C++ in a blocking fashion? By blocking I mean... a lock is requested and if the file is locked it will wait until it is unlocked, once the file is unlocked by ...
0
votes
0answers
57 views

transfer lockfile to another unix user

If a process running as (non-root) user A has created a lockfile on disk to reserve a shared resource, what's a good way to seamlessly "hand off" that lock to another process, running as user B, which ...
-1
votes
2answers
346 views

lockfile is not working

i have locked my file from 0 to 5 bytes, and i write some character byte by byte but it does not stop writing even if the file is locked, i dont know what is wrong, i have tried every type of flag in ...
0
votes
1answer
574 views

Cognos8. UT-DEF-0114 Cannot open lock file

I have cognos8.4.1 installed. I have authentication defined(LDAP). Everything was working fine, now suddenly I am facing a strange error while executing reports. UT-DEF-0114 Cannot open lock file: ...
2
votes
3answers
603 views

In Makefile, how to cleanup lockfile files?

In GNU Make 3.81, I need to remove a lockfile in the event of an error in any part of the toolchain. Is there a special target that will allow me to do this? Do I need to write a wrapper script? In ...
0
votes
2answers
275 views

Where do I change this Python code snippet to save the temp file in the tmp-folder?

this is a code example implementing a file lock, so the application can only open one instance. It currently works, but saves the the lock file in the Home-folder (Ubuntu). If the application crashes, ...
0
votes
2answers
280 views

How to check if a file is being edited? (Ruby)

I am writing some code to write out an email to a file, let you edit it in your own editor, and when you're done you can tell my code to carry on. I'd like to have it catch the common error where you ...
1
vote
1answer
718 views

Delphi Using LockFile on windows 7 64

I have found that if you open a file that resides on 32 bit server in a share folder from a 64 bit windows 7 machine, read it, lock it and then open it again. When you close all open handles the file ...
0
votes
3answers
5k views

Why my program creates empty .lck files?

I am trying to use Java Logger. I get my logger file (name.log) with the content I wish but I also get empty name.log.lck file. Why this file appears and how I can remove this behavior. Thank you in ...
8
votes
4answers
4k views

Python: module for creating PID-based lockfile?

I'm writing a Python script that may or may not (depending on a bunch of things) run for a long time, and I'd like to make sure that multiple instances (started via cron) don't step on each others ...
45
votes
14answers
15k views

Quick-and-dirty way to ensure only one instance of a shell script is running at a time

What's a quick-and-dirty way to make sure that only one instance of a shell script is running at a given time?
1
vote
1answer
701 views

procmail lockfile utility and NFS

Has anyone used the lockfile utility that ships with procmail in conjunction with NFS mounted directories? The lockfile man page states that "Lockfile is NFS-resistant and eight-bit clean."