解决SELinux对网站目录权限控制的不当的问题

字体大小: 中小 标准 ->行高大小: 标准

前言:本文主要介绍了因为SELinux对网站目录权限控制的不当而引起网站无法正常操作和访问的问题。

正文开始:今天下午闲着没有事做于是突然兴起想尝试安装下Drupal。以前用Wordpress做博客久了,总想着尝尝新。

按照Installtion Guide提示的安装步骤进行操作如下:

  1. wget http://drupal.org/files/projects/drupal-7.12.tar.gz tar -zxvf drupal-7.12.tar.gz 
  2. mv drupal-7.12 /var/www/html/home_start
  3. cd /var/www/html/home_start
    cp sites/default/default.settings.php sites/default/settings.php 
  4. chmod a+w sites/default/settings.php chmod a+w sites/default 
  5. mysqladmin -u username -p create databasename #用正确的字符串代替username和databasename

一切准备就绪!就等着进网站目录进行下一步配置了!

不幸的是,在浏览器中打开网站的目录后就遭遇了httpd的403拒绝访问提示。

这很显然,根据以往的经验可以判断是目录权限存在问题。

为了验证这一说法,我们可以检查httpd的错误日志。默认情况下日志就存在在/var/log/httpd/目录中。

  1. [root@localhost ~]# grep Permission /var/log/httpd/error_log [Tue Apr 10 09:07:04 2012] [error] [client 127.0.0.1] (13)Permission denied: access to /start denied 
  2. [Tue Apr 10 09:07:50 2012] [error] [client 127.0.0.1] (13)Permission denied: access to /start/ denied [Tue Apr 10 09:08:07 2012] [error] [client 127.0.0.1] (13)Permission denied: access to /start/ denied 
  3. [Tue Apr 10 09:10:06 2012] [error] [client 127.0.0.1] (13)Permission denied: access to /start/ denied [Tue Apr 10 09:11:08 2012] [error] [client 127.0.0.1] (13)Permission denied: access to /start/ denied 
  4. [Tue Apr 10 09:11:17 2012] [error] [client 127.0.0.1] (13)Permission denied: access to /start denied [Tue Apr 10 09:11:34 2012] [error] [client ::1] (13)Permission denied: access to /start denied 
  5. [Tue Apr 10 09:13:35 2012] [error] [client ::1] (13)Permission denied: access to /start denied [Tue Apr 10 09:13:51 2012] [error] [client ::1] (13)Permission denied: access to /start/site/default/ denied 
  6. [Tue Apr 10 09:13:57 2012] [error] [client ::1] (13)Permission denied: access to /start/sites denied [Tue Apr 10 09:14:51 2012] [error] [client ::1] (13)Permission denied: access to /start/install.php denied 
  7. [Tue Apr 10 09:18:57 2012] [error] [client ::1] (13)Permission denied: access to /start/install.php denied [Tue Apr 10 09:19:01 2012] [error] [client ::1] (13)Permission denied: access to /start/ denied 
  8. [Tue Apr 10 09:22:03 2012] [error] [client ::1] (13)Permission denied: access to /start denied [Tue Apr 10 09:22:21 2012] [error] [client ::1] (13)Permission denied: access to /start denied 
  9. [Tue Apr 10 09:22:24 2012] [error] [client ::1] (13)Permission denied: access to /start denied [Tue Apr 10 09:22:27 2012] [error] [client 127.0.0.1] (13)Permission denied: access to /start denied 
  10. [Tue Apr 10 09:27:02 2012] [error] [client 127.0.0.1] (13)Permission denied: access to /start denied [Tue Apr 10 09:27:05 2012] [error] [client 127.0.0.1] (13)Permission denied: access to /start denied 
  11. [Tue Apr 10 09:27:07 2012] [error] [client 127.0.0.1] (13)Permission denied: access to /start denied [Tue Apr 10 12:09:58 2012] [error] [client 127.0.0.1] (13)Permission denied: access to /home_start denied 
  12. [Tue Apr 10 12:42:38 2012] [error] [client 127.0.0.1] (13)Permission denied: access to /home_start denied [Tue Apr 10 12:42:40 2012] [error] [client 127.0.0.1] (13)Permission denied: access to /home_start denied 
  13. [Tue Apr 10 12:44:15 2012] [error] [client 127.0.0.1] (13)Permission denied: access to /home_start denied [Tue Apr 10 12:44:20 2012] [error] [client 127.0.0.1] (13)Permission denied: access to /home_start denied 
  14. [Tue Apr 10 20:53:21 2012] [error] [client ::1] (13)Permission denied: access to /home_start denied [Tue Apr 10 21:07:21 2012] [error] [client ::1] (13)Permission denied: access to /home_start denied 
  15. [Tue Apr 10 21:14:48 2012] [error] [client ::1] (13)Permission denied: access to /home_start denied [root@localhost ~]#  

再检查网站目录和文件的权限。为方便起见直接用-lZ选项。用于显示详细信息和SELinux权限信息

  1. [root@localhost html]# ls -lZ -rw-r--r--. root root unconfined_u:object_r:httpd_sys_content_t:s0 archive.html 
  2. drwxr-xr-x. root root unconfined_u:object_r:httpd_sys_content_t:s0 blog drwxr-xr-x. root root unconfined_u:object_r:httpd_sys_content_t:s0 blog_backup 
  3. -rw-r--r--. root root unconfined_u:object_r:httpd_sys_content_t:s0 blog.htm -rw-r--r--. root root unconfined_u:object_r:httpd_sys_content_t:s0 blog.html 
  4. drwxr-xr-x. root root unconfined_u:object_r:httpd_sys_content_t:s0 css drwxr-xr-x. root root unconfined_u:object_r:httpd_sys_content_t:s0 home_page 
  5. drwxr-xr-x. root root unconfined_u:object_r:admin_home_t:s0 home_start #问题行drwxr-xr-x. root root unconfined_u:object_r:httpd_sys_content_t:s0 images 
  6. -rw-r--r--. root root unconfined_u:object_r:httpd_sys_content_t:s0 index.htm -rw-r--r--. root root unconfined_u:object_r:httpd_sys_content_t:s0 index.html 
  7. -rw-r--r--. root root unconfined_u:object_r:httpd_sys_content_t:s0 info_php.php drwxr-xr-x. root root unconfined_u:object_r:httpd_sys_content_t:s0 js 
  8. -rw-r--r--. root root unconfined_u:object_r:httpd_sys_content_t:s0 log drwxr-xr-x. root root unconfined_u:object_r:admin_home_t:s0 php #以前的遗留问题
  9. drwxr-xr-x. root root unconfined_u:object_r:httpd_sys_content_t:s0 phpMyAdmin-3.4.10.1-all-languages drwxr-xr-x. root root unconfined_u:object_r:httpd_sys_content_t:s0 PSDs 
  10. -rw-r--r--. root root unconfined_u:object_r:httpd_sys_content_t:s0 readme.txt -rw-r--r--. root root unconfined_u:object_r:httpd_sys_content_t:s0 style.htm 
  11. -rw-r--r--. root root unconfined_u:object_r:httpd_sys_content_t:s0 style.html drwxr-xr-x. root root unconfined_u:object_r:httpd_sys_content_t:s0 wiki 

显然上面显示的结果中的09、16两行的权限与其他网站目录不同。

再查看selinx的工作状态,判断是不是SELinux引起的。

  1. [root@localhost httpd]# sestatus  SELinux status:                 enabled 
  2. SELinuxfs mount:                /selinux Current mode:                   enforcing 
  3. Mode from config file:          enforcing Policy version:                 24 
  4. Policy from config file:        targeted 

这就是导致网站权限不正确的原因。

我猜测可能是在selinux启用时对目录或文件进行操作导致的。因为最近我对SELinux进行了升级(以前没有遇到)。

所以使用chcon更改SELinux权限以及显示结果如下:

setenforce 0 #必须暂时停止SELinux,否则可能导致操作失败。 
chcon -t httpd_sys_content_t -R /var/www/html/home_start/ #R参数是递归操作的意思



经过修改就会发现SELinux的对应权限已经和其他目录相同了!都是httpd_sys_content_t。

  1. [root@localhost html]# setenforce --help usage:  setenforce [ Enforcing | Permissive | 1 | 0 ] 
  2. [root@localhost html]# setenforce 0 [root@localhost html]# cd 
  3. [root@localhost ~]# ls /var/www/html/ -Z 
  4. ……
  5. drwxr-xr-x. root root unconfined_u:object_r:admin_home_t:s0 home_start 
  6. ……[root@localhost ~]# chcon -t httpd_sys_content_t -R /var/www/html/home_start/ [root@localhost ~]# ls /var/www/html/home_start/ -Z ……
  7. -rw-r--r--. root root unconfined_u:object_r:httpd_sys_content_t:s0 authorize.php 
  8. ……

然后,再次打开浏览器输入地址,验证能否访问,如果可以访问就可以进行下一步配置了!

最后,还是那句话,遇到问题一定要仔细分析,尽可能的通过自己的努力和分析发现问题所在,这样才能体会到解决问题的快乐!

此文章由 http://www.ositren.com 收集整理 ,地址为: http://www.ositren.com/htmls/57223.html