I'm getting an error when trying to execute python program that uses multiprocessing package:

  File "/usr/local/lib/python2.6/multiprocessing/__init__.py", line 178, in RLock
    return RLock()
  File "/usr/local/lib/python2.6/multiprocessing/synchronize.py", line 142, in __init__
    SemLock.__init__(self, RECURSIVE_MUTEX, 1, 1)
  File "/usr/local/lib/python2.6/multiprocessing/synchronize.py", line 49, in __init__
    sl = self._semlock = _multiprocessing.SemLock(kind, value, maxvalue)
OSError: [Errno 13] Permission denied

It looks like the user doesn't have permission to access shared memory. When executing with root privileges it works fine.

Is there any solution to run it as normal user(not root)?

Python version 2.6.2 , OS is Linux 2.6.18 (CentOS release 5.4) and it's VPS machine.

link|improve this question

64% accept rate
feedback

1 Answer

up vote 21 down vote accepted

For POSIX semaphores to work, the users need r/w access to shared memory (/dev/shm).

Check the permissions to /dev/shm. On my laptop (Ubuntu) it looks like this:

$ ls -ld /dev/shm
drwxrwxrwt 2 root root          40 2010-01-05 20:34 shm

To permanently set the correct permissions (even after a reboot), add the following to your /etc/fstab:

none /dev/shm tmpfs rw,nosuid,nodev,noexec 0 0

Haven't tried this, just copied from a forum post.

link|improve this answer
Oh thanks, changing permissions for /dev/shm helped. – Roman Dolgiy Jan 5 '10 at 22:23
3  
Using none /dev/shm tmpfs rw,nosuid,nodev,noexec 0 0 in /etc/fstab still works but is more secure. See e.g. bugzilla.redhat.com/show_bug.cgi?id=664457 – Day Apr 14 '11 at 17:33
I was getting the same error when I tried to run Minecraft-Overviewer on Fedora 14. This question and @Day's comment were a great help! – Tim Bielawa May 13 '11 at 6:36
@Day's comment resolved OSError: [Error 38] Function not implemented for me when trying to get celery working with django on an Ubuntu 10.10 VPS – cerberos Jun 21 '11 at 16:24
I updated the answer with @Day's comment. – codeape Oct 17 '11 at 8:32
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.