如何给写主目录的Apache许可? [英] How to give apache permission to write to home directory?

查看:104
本文介绍了如何给写主目录的Apache许可?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的服务器是在/ var / www / html等我有一个PHP脚本中/var/www/html/fileio_test/io_test.php

My server is in /var/www/html I have a php script in /var/www/html/fileio_test/io_test.php

<?php

$logging = <<< LOG
This is a test
LOG;

$testfile = fopen('/home/djameson/test.txt', 'a'); 
fwrite ($testfile, $logging);
fclose($testfile);

?>

当我尝试运行此脚本,我得到

When I try to run this script I get

Warning: fopen(/home/djameson/test.txt): failed to open stream: Permission denied in   /var/www/html/fileio_test/io_test.php on line 7

Warning: fwrite() expects parameter 1 to be resource, boolean given in /var/www/html/fileio_test/io_test.php on line 8

Warning: fclose() expects parameter 1 to be resource, boolean given in /var/www/html/fileio_test/io_test.php on line 9

如何让apache的写我的主目录?在服务器上的Fedora 20上运行。

How do I let apache write to my home directory? The server runs on fedora 20.

推荐答案

由于驻留在你的主目录文件,我会建议的下列方法之一。

As your file residing in your Home directory, I would suggest one of following approaches.


  1. 给0777许可文件本身。

  1. Give 0777 permission to file itself.

chmod 0777 /home/djameson/test.txt


  • 更​​改所有权给Apache用户WWW的数据,并给业主写权限。

  • Change Ownership to apache user www-data and give owner-write permission.

    sudo chown www-data:www-data /home/djameson/test.txt
    chmod 0744 /home/djameson/test.txt
    


  • 添加用户到www数据组或副诗句www数据的用户添加到您的组。然后组的写入权限。

  • Add your user to www-data group or vice-verse add www-data user to your group. And then group write permission.

    sudo usermod -a -G www-data djameson
    chmod 0764 /home/djameson/test.txt
    


  • 请注意:我假设apache用户名和放大器;组名称是www数据和放大器; www数据分别。您必须相应地改变你的服务器的apache的用户名/组名。

    NOTE : I am assuming apache user name & group name is www-data & www-data respectively. You must change accordingly your server apache username/group name.

    这篇关于如何给写主目录的Apache许可?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

    查看全文
    登录 关闭
    扫码关注1秒登录
    发送“验证码”获取 | 15天全站免登陆