I have a serious privileges problem that is making it impossible to serve python pages on a CentOS server. It appears that nobody on the CentOS discussion list has a solution to this problem. I'm desperate and hoping someone on this list can help.<br>
<br>[Fri Nov 06 11:50:40 2009] [error] [client 66.248.168.98] (2)No such file or<br>directory: exec of '/var/www/html/<a href="http://angrynates.com/global_solutions/index.py">angrynates.com/global_solutions/index.py</a>'<br>
failed, referer: <a href="http://angrynates.com/global_solutions/">http://angrynates.com/global_solutions/</a><br>[Fri Nov 06 11:50:40 2009] [error] [client 66.248.168.98] Premature end of<br>script headers: index.py, referer: <a href="http://angrynates.com/global_solutions/">http://angrynates.com/global_solutions/</a><br>
<br>Now, the file does exist:<br><br>[root@13gems global_solutions]# pwd<br>/var/www/html/<a href="http://angrynates.com/global_solutions">angrynates.com/global_solutions</a><br>[root@13gems global_solutions]# ls<br>....<br>
-rwxr-xr-x 1 victor victor 275 Nov 6 07:05 index.py<br>....<br>and it serves just fine on another server, so there is no "premature end of script headers". <br><br><br>Here's where it gets really weird. If I copy the code for index.py and template.py which the former calls, and create files test.py and test2.py and paste the code from the former files in those new files changing only the import statement from "template" to "test2", the tests will resolve!! Now, the ownership and mode are identical on all of them!!<br>
<br><br>[root@13gems global_solutions]# ls -al | grep test.py<br>-rwxr-xr-x 1 root root 298 Nov 6 12:24 test.py<br>[root@13gems global_solutions]# ls -al | grep test2.py<br>-rwxr-xr-x 1 root root 5716 Nov 6 12:25 test2.py<br>
[root@13gems global_solutions]# ls -al | grep index.py<br>-rwxr-xr-x 1 root root 316 Nov 6 07:05 index.py<br>[root@13gems global_solutions]# ls -al | grep template.py<br>-rwxr-xr-x 1 root root 5806 Nov 6 07:06 template.py<br>
-rwxr-xr-x 1 root root 6093 Nov 6 07:06 template.pyc<br><br>where test.py is identical to index.py (other than the necessary import) and<br>template is identical to test2.py<br><br><br>fixfiles relabel /var/www/html<br># might just work<br>
It didn't<br><br>touch /.autorelabel<br># and then reboot will relabel all copied files to the correct contexts for the location<br>I rebooted apache with no luck<br><br>or you could turn off SELinux and reboot<br>I did that and the following two solutions with no luck:<br>
echo 0 >/selinux/enforce<br><br>[root@13gems ~]# cd /etc/<br>[root@13gems etc]# mv selinux/ selinux.BAK<br>[root@13gems etc]# mkdir selinux<br>[root@13gems etc]# echo 0>/selinux/enforce<br><br>...and the problem continues:<br>
[root@13gems etc]# tail /var/log/httpd/error_log<br>[Fri Nov 06 12:51:49 2009] [error] [client 66.248.168.98] Premature end of<br>script headers: index.py, referer: <a href="http://angrynates.com/global_solutions/">http://angrynates.com/global_solutions/</a><br>
[Fri Nov 06 12:56:18 2009] [error] [client 66.248.168.98] (2)No such file or<br>directory: exec of '/var/www/html/<a href="http://angrynates.com/global_solutions/index.py">angrynates.com/global_solutions/index.py</a>'<br>
failed, referer: <a href="http://angrynates.com/global_solutions/">http://angrynates.com/global_solutions/</a><br>[Fri Nov 06 12:56:18 2009] [error] [client 66.248.168.98] Premature end of<br>script headers: index.py, referer: <a href="http://angrynates.com/global_solutions/">http://angrynates.com/global_solutions/</a><br>
[Fri Nov 06 12:56:20 2009] [error] [client 67.96.172.81] (2)No such file or<br>directory: exec of '/var/www/html/<a href="http://angrynates.com/global_solutions/index.py">angrynates.com/global_solutions/index.py</a>'<br>
failed<br>[Fri Nov 06 12:56:20 2009] [error] [client 67.96.172.81] Premature end of<br>script headers: index.py<br>[Fri Nov 06 13:52:15 2009] [error] [client 66.249.67.153] File does not<br>exist: /var/www/html/<a href="http://angrynates.com/robots.txt">angrynates.com/robots.txt</a><br>
[Fri Nov 06 13:52:52 2009] [error] [client 208.84.198.58] (2)No such file or<br>directory: exec of '/var/www/html/<a href="http://angrynates.com/global_solutions/index.py">angrynates.com/global_solutions/index.py</a>'<br>
failed, referer: <a href="http://angrynates.com/global_solutions/">http://angrynates.com/global_solutions/</a><br>[Fri Nov 06 13:52:52 2009] [error] [client 208.84.198.58] Premature end of<br>script headers: index.py, referer: <a href="http://angrynates.com/global_solutions/">http://angrynates.com/global_solutions/</a><br>
[Fri Nov 06 13:52:52 2009] [error] [client 208.84.198.58] File does not<br>exist: /var/www/html/<a href="http://angrynates.com/favicon.ico">angrynates.com/favicon.ico</a><br>[Fri Nov 06 13:52:53 2009] [error] [client 208.84.198.58] File does not<br>
exist: /var/www/html/<a href="http://angrynates.com/favicon.ico">angrynates.com/favicon.ico</a><br>[root@13gems etc]#<br><br>Please help.<br>Victor<br>