红联Linux门户
Linux帮助

linux+php+apache web调用python脚本权限问题解决方案

发布时间:2016-10-30 09:18:56来源:linux网站作者:畅思笔录
lamp: linux + apache + mysql + php
在近期项目中使用 linux + apache + php调用python脚本是出现以下权限问题:
build/bdist.linux-x86_64/egg/pkg_resources/__init__.py", line 1823, in get_resource_filename
build/bdist.linux-x86_64/egg/pkg_resources/__init__.py", line 1853, in _extract_resource
build/bdist.linux-x86_64/egg/pkg_resources/__init__.py", line 1193, in get_cache_path
build/bdist.linux-x86_64/egg/pkg_resources/__init__.py", line 1173, in extraction_error
pkg_resources.ExtractionError: Can't extract file(s) to egg cache
The following error occurred while trying to extract file(s) to the Python egg
Permission denied: '/var/www/.python-eggs'
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.
 
从打印输出来看:没有权限访问'/var/www/.python-eggs'
可以使用chmod来设置该文件,但不能彻底解问题,具体解决方案,请看下面解答。
 
上面linux+php+apache调用python脚本时出现的问题的根本原因是:apache运行时使用的apache用户权限不够;
由此想到的解决方案是将apache改用root用户来执行,修改/etc/httpd/conf/httpd.conf,但结果是apache运行不起来,初步判断是apache出于安全方面的考虑,不允许使用root用户运行(此判断是否正确有待验证)。
 
具体解决方案(验证通过):
在sudo设置中,可能将指定的用户设置成和root对等的权限,如下:
1.sudo介绍
sudo是linux下常用的允许普通用户使用超级用户权限的工具,允许系统管理员让普通用户执行一些或者全部的root命令,
如halt,reboot,su等等。这样不仅减少了root用户的登陆 和管理时间,同样也提高了安全性。Sudo不是对shell的一个代替,
它是面向每个命令的。它的特性主要有这样几点:
§ sudo能够限制用户只在某台主机上运行某些命令。
§ sudo提供了丰富的日志,详细地记录了每个用户干了什么。它能够将日志传到中心主机或者日志服务器。
§ sudo使用时间戳文件来执行类似的“检票”系统。当用户调用sudo并且输入它的密码时,用户获得了一张
存活期为5分钟的票(这个值可以在编译的时候改变)。
§ sudo的配置文件是sudoers文件,它允许系统管理员集中的管理用户的使用权限和使用的主机。它所存放的位置默认是
在/etc/sudoers,属性必须为0440。
2.配置文件/etc/sudoers
它的主要配置文件是sudoers,linux下通常在/etc目录下,如果是solaris,缺省不装sudo的,编译安装后通常在安装目录的 etc目录下,
不过不管sudoers文件在哪儿,sudo都提供了一个编辑该文件的命令:visudo来对该文件进行修改。强烈推荐使用该命令修改 sudoers,
因为它会帮你校验文件配置是否正确,如果不正确,在保存退出时就会提示你哪段配置出错的。
言归正传,下面介绍如何配置sudoers 
首先写sudoers的缺省配置:
# sudoers file. 
# This file MUST be edited with the 'visudo' command as root. 
# See the sudoers man page for the details on how to write a sudoers file. 
# Host alias specification 
# User alias specification 
# Cmnd alias specification 
# Defaults specification
# User privilege specification 
root    ALL=(ALL) ALL 
# Uncomment to allow people in group wheel to run all commands 
# %wheel        ALL=(ALL)       ALL 
# Same thing without a password 
# %wheel        ALL=(ALL)       NOPASSWD: ALL 
# Samples 
# %users  ALL=/sbin/mount /cdrom,/sbin/umount /cdrom 
# %users  localhost=/sbin/shutdown -h now 
1].最简单的配置,让普通用户support具有root的所有权限 
执行visudo之后,可以看见缺省只有一条配置: 
root    ALL=(ALL) ALL 
那么你就在下边再加一条配置: 
apache  ALL=(ALL) ALL 
这样,普通用户apache 就能够执行root权限的所有命令 
2].在php中调用,如:echo psasswd | sudo -S python  *.py
这句话是输入密码(非root密码,而是apache的密码),则需要修改配置(/etc/sudoers):
注释#Defaults    requiretty
如果不注释该行,则会出现sudo: sorry, you must have a tty to run sudo打印错误。
这么做的意思是:sudo默认需要tty终端,而php执行sudo的时候是没法打开终端的,注释掉就代表在后台执行了。
3].关闭selinux
修改/etc/selinux/config文件中设置SELINUX=disabled ,然后重启服务器。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/25522.html