I have an Errno 13 Permission denied with subprocess in python
Posted
by
wDroter
on Stack Overflow
See other posts from Stack Overflow
or by wDroter
Published on 2012-10-02T13:36:23Z
Indexed on
2012/10/02
15:37 UTC
Read the original article
Hit count: 250
The line with the issue is
ret=subprocess.call(shlex.split(cmd))
cmd = /usr/share/java -cp pig-hadoop-conf-Simpsons:lib/pig-0.8.1-cdh3u1-core.jar:lib/hadoop-core-0.20.2-cdh3u1.jar org.apache.pig.Main -param func=cat -param from =foo.txt -x mapreduce fsFunc.pig
The error is.
File "./run_pig.py", line 157, in process
ret=subprocess.call(shlex.split(cmd))
File "/usr/lib/python2.7/subprocess.py", line 493, in call
return Popen(*popenargs, **kwargs).wait()
File "/usr/lib/python2.7/subprocess.py", line 679, in __init__
errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1249, in _execute_child
raise child_exception
OSError: [Errno 13] Permission denied
Let me know if any more info is needed. Any help is appreciated. Thanks.
© Stack Overflow or respective owner