PHP is_writable() 函数始终为可写目录返回 false

2022-08-30 16:36:40

我正在尝试在Red Hat 7 Amazon EC2实例(ami-8cff51fb)中安装基于PHP的软件包,该实例使用yum安装了Apache 2.4.6和PHP 5.4.16。安装失败,因为它说具有0755或0775权限的Web服务器需要写入特定目录。

有问题的目录具有 0775 所有权权限。我已经验证了httpd进程是由apache用户运行的,并且apache用户是apache组的成员。root:apache

如果我进行编辑以暂时为apache用户提供登录shell,然后到该帐户,则我可以使用该命令在目录中手动创建文件作为apache用户。/etc/passwdsutouch

我查看了安装程序脚本的源代码,发现它失败了,因为PHP的函数为有问题的目录返回false。我创建了一个单独的测试PHP脚本来隔离和验证我所看到的行为:is_writable()

<?php
  $dir = '/var/www/html/limesurvey/tmp';
  if (is_writable($dir)) {
    echo $dir, ' is writable';
  } else {
    echo $dir, ' is NOT writable';
  }
?>

这将输出不可写消息。如果我将上面的内容更改为,那么它正确地输出了可写的内容。$dir/tmp/tmp

如果我将目录权限更改为0777和/或将所有权更改为,则PHP仍然报告该目录不可写。我甚至尝试创建一个设置了相同权限和所有权的目录,但我的测试脚本仍然将其报告为不可写。apache:apache/test

我真的不知所措地解释这种行为,所以任何想法都会受到欢迎!

提前致谢。


的目录列表如下所示。根据Lime Survey的安装说明,和目录具有0775权限。 是我上面提到的测试脚本。/var/www/html/limesurveytmpuploadtest.php

[ec2-user@ip-xx-x-x-xxx limesurvey]$ pwd
/var/www/html/limesurvey
[ec2-user@ip-xx-x-x-xxx limesurvey]$ ls -al
total 80
drwxr-xr-x. 20 root apache 4096 Mar 30 11:25 .
drwxr-xr-x.  3 root root     23 Mar 25 14:41 ..
drwxr-xr-x.  2 root apache   38 Mar 10 12:56 admin
drwxr-xr-x. 16 root apache 4096 Mar 10 12:56 application
drwxr-xr-x.  3 root apache 4096 Mar 10 12:56 docs
drwxr-xr-x.  2 root apache 4096 Mar 10 12:56 fonts
drwxr-xr-x. 19 root apache 4096 Mar 10 12:56 framework
-rw-r--r--.  1 root apache  429 Mar 10 12:56 .gitattributes
-rw-r--r--.  1 root apache  399 Mar 10 12:56 .gitignore
-rw-r--r--.  1 root apache  296 Mar 10 12:56 .htaccess
drwxr-xr-x.  4 root apache 4096 Mar 10 12:56 images
-rw-r--r--.  1 root apache 6652 Mar 10 12:56 index.php
drwxr-xr-x.  5 root apache   39 Mar 10 12:56 installer
drwxr-xr-x. 89 root apache 4096 Mar 10 12:56 locale
drwxrwxr-x.  2 root apache   39 Mar 25 14:41 logs
drwxr-xr-x.  4 root apache   49 Mar 10 12:56 plugins
-rw-r--r--.  1 root apache   61 Mar 10 12:56 README
drwxr-xr-x.  4 root apache 4096 Mar 10 12:56 scripts
-rw-r--r--.  1 root apache  380 Mar 10 12:56 .scrutinizer.yml
drwxr-xr-x.  5 root apache 4096 Mar 10 12:56 styles
drwxr-xr-x.  5 root apache 4096 Mar 10 12:56 styles-public
drwxr-xr-x. 12 root apache 4096 Mar 10 12:56 templates
-rw-r--r--.  1 root apache  159 Mar 30 11:11 test.php
drwxr-xr-x.  3 root apache   20 Mar 10 12:56 themes
drwxr-xr-x. 26 root apache 4096 Mar 10 12:56 third_party
drwxrwxr-x.  5 root apache   80 Mar 26 13:45 tmp
drwxrwxr-x.  6 root apache   79 Mar 10 12:57 upload

跑步提供:namei -l /var/www/html/limesurvey/tmp

[ec2-user@ip-x-x-x-xxx ~]$ namei -l /var/www/html/limesurvey/tmp
f: /var/www/html/limesurvey/tmp
drwxr-xr-x root root   /
drwxr-xr-x root root   var
drwxr-xr-x root root   www
drwxr-xr-x root root   html
drwxr-xr-x root apache limesurvey
drwxrwxr-x root apache tmp

答案 1

经过多次挠头,发现SELinux阻止了目录被写入。我找到了一个很好的教程来解释发生了什么。我能够通过运行以下命令来修复它:

sudo chcon -R -t httpd_sys_rw_content_t tmp

答案 2

CentOS 6 上面应该是 SELinux 启用强制

setenforce Permissive

检查状态

sestatus

请参阅 https://wiki.centos.org/HowTos/SELinux


推荐