ホームディレクトリから次のコマンドを実行しています。
python -m CGIHTTPServer
これでサーバーが実行されますが、cgi-binディレクトリのスクリプトにアクセスしようとすると次のようになります。
Traceback (most recent call last):
File "/usr/lib/python2.7/CGIHTTPServer.py", line 251, in run_cgi
os.execve(scriptfile, args, env)
OSError: [Errno 13] Permission denied
ルートとして実行しても違いはありません。ファイルにはすべての適切な権限があるようです。
student@bandersnatch:~$ ls -lhR
.:
total 12K
drwxr-xr-x 2 student student 4.0K Jun 13 18:38 cgi-bin
drwxr--r-- 2 student student 4.0K Jun 10 2004 kalpy
-rwxrwxrwx 1 student student 2.0K Jun 13 12:37 test.html
./cgi-bin:
total 8.0K
-rwxr-xr-x 1 student student 31 Jun 13 18:38 test.py
編集:test.pyの内容は次のとおりです。
#!/usr/bin/python
print "test"
シェバンは有効です:
~$ which python
/usr/bin/python