Yii / Linux上的Web进程权限

前端之家收集整理的这篇文章主要介绍了Yii / Linux上的Web进程权限前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我是一个菜鸟,并在AWS上运行Yii教程.到目前为止,我已经能够启动并运行 – 包括mysql连接.但现在我正在使用Gii代码生成工具来帮助创建一些模型类.这样做,我收到以下错误

generating models/User.PHP
            Unable to write the file '/var/www/html/blog/protected/models/User.PHP'.
done!

文档还告诉我:

Info: Because the code generator needs to save the generated code into files,it is
required that the Web process have the permission to create and modify the corresponding
 files. For simplicity,we may give the Web process the write permission to the whole
 /www/blog directory. Note that this is only needed on development machines when using Gii.

这对我来说很有意义,我理解应用于用户和组的Linux权限的基本逻辑……但不是进程.有人能指出我如何给GII进程写入webroot(在我的情况下:/ var / www / html / blog /)目录中的权限吗?

最佳答案
我给所有用户priverlege递归地读取,写入和执行webapp文件.

$sudo chmod -R og=rwx webapp_folder

解决了许可问题,但这可能不是最好的方法.

原文链接:https://www.f2er.com/linux/440660.html

猜你在找的Linux相关文章