Permission denied and lock issue with multiprocess logging

david dani dadavi999 at gmail.com
Sun Jun 12 03:49:41 EDT 2011


When i am running the implementation of multiprocess logging through
queue handler, i get this error. It is the same with sockethandler as
well as with pipe handler if multiprocesses are involved. I am not
getting any hint to solve this problem. Please help to solve the
problem.

Platform: AIX
Python version:2.6.5

sem_trywait: Permission denied
sem_post: Permission denied
sem_destroy: Permission denied
sem_wait: Permission denied
Process Process-1:
Traceback (most recent call last):
File "/opt/freeware/lib/python2.6/multiprocessing/process.py", line
232, in _bootstrap
self.run()
File "/opt/freeware/lib/python2.6/multiprocessing/process.py", line
88, in run
self._target(*self._args, **self._kwargs)
File "mplog.py", line 108, in listener_process
configurer()
File "mplog.py", line 99, in listener_configurer
h = logging.handlers.RotatingFileHandler('/tmp/mptest.log', 'a', 300,
10)
File "/opt/freeware/lib/python2.6/logging/handlers.py", line 107, in
__init__
BaseRotatingHandler.__init__(self, filename, mode, encoding, delay)
File "/opt/freeware/lib/python2.6/logging/handlers.py", line 59, in
__init__
logging.FileHandler.__init__(self, filename, mode, encoding, delay)
File "/opt/freeware/lib/python2.6/logging/__init__.py", line 819, in
__init__
StreamHandler.__init__(self, self._open())
File "/opt/freeware/lib/python2.6/logging/__init__.py", line 744, in
__init__
Handler.__init__(self)
File "/opt/freeware/lib/python2.6/logging/__init__.py", line 605, in
__init__
_releaseLock()
File "/opt/freeware/lib/python2.6/logging/__init__.py", line 208, in
_releaseLock
_lock.release()
File "/opt/freeware/lib/python2.6/threading.py", line 138, in release
raise RuntimeError("cannot release un-acquired lock")
RuntimeError: cannot release un-acquired lock
sem_trywait: Permission denied



More information about the Python-list mailing list