无法读取centos服务器上的流明日志文件

时间:2017-05-06 10:11:03

标签: lumen

您好我已经为API设置了流明应用程序。昨天我已经设置了CentOS服务器。代码正在我的ubuntu服务器上工作,但没有工作的CentOS服务器。我从服务器获得此响应:

The stream or file \"/var/www/html/api/storage/logs/lumen.log\" could not be opened: failed to open stream: Permission denied

2 个答案:

答案 0 :(得分:1)

sudo chmod 777 your-lumen-project/storage/logs/lumen.log

答案 1 :(得分:0)

您需要更改存储文件夹的所有权。 在ubuntu上运行这个

sudo chown -R {current user}:www-data storage

Ubuntu的:

sudo chown -R www-data:www-data storage
sudo chown -R ubuntu:www-data storage

Cent OS:

sudo chown -R apache:apache storage
sudo chown -R {your centos user}:apache storage