I am trying to execute a python script from php webpage. The python script uses netsnmp module which logged the following error in httpd error_log:
Traceback (most recent call last):
File "/var/www/html/backendscripts/updateMachine.py", line 5, in
import netsnmp
.
.
.
The following error occurred while trying to extract file(s) to the Python egg
cache:
[Errno 13] Permission denied: '**/var/www/.python-eggs/netsnmp_python-1.0a1-py2.5-linux-i686.egg-tmp'**
The Python egg cache directory is currently set to:
/var/www/.python-eggs
Perhaps your account does not have write access to this directory? You can
change the cache directory by setting the PYTHON_EGG_CACHE environment
variable to point to an accessible directory.
The python egg cache is located in /root/.python-eggs/ directory.
I have also created a soft link in /var/www/ directory pointing to egg cache directory with full permissions to all users.
/var/www/.python-eggs -> /root/.python-eggs
[root@localhost .python-eggs]# pwd /var/www/.python-eggs [root@localhost .python-eggs]# ls -lR . .: total 4 drwxrwxrwx 3 root root 4096 2011-10-07 02:17 netsnmp_python-1.0a1-py2.5-linux-i686.egg-tmp ./netsnmp_python-1.0a1-py2.5-linux-i686.egg-tmp: total 4 drwxrwxrwx 2 root root 4096 2010-06-09 22:21 netsnmp ./netsnmp_python-1.0a1-py2.5-linux-i686.egg-tmp/netsnmp: total 84 -rwxrwxrwx 1 root root 81349 2010-06-09 22:20 client_intf.so
I have even set PYTHON_EGG_CACHE environment variable in the python script as:
import os
os.environ['PYTHON_EGG_CACHE'] = '/var/www/.python-eggs/'**
but still the script fails to execute.
ls -la /var/www | grep .python-eggsjust to be sure that the directory is writable for every one – Cédric Julien Oct 7 '11 at 17:52