Laravel 5: laravel.log could not be opened: Permission Denied

前端 未结 7 1620
后悔当初
后悔当初 2021-01-31 00:19

To stop you from the start, there is NO permission issue. /storage is recursively chmodded 777 and whole project folder is chowned by apache:apache

I even r

相关标签:
7条回答
  • 2021-01-31 00:37

    It could be that SElinux is preventing Apache from creating this file.

    To test this you could disable SElinux temporally with the following command:

    setenforce 0
    

    This will place SElinux in permissive mode. This means that you still receive an error message in your SElinux log file but SElinux will not block the command.

    To activate SElinux again you can type:

    setenforce 1
    

    Or reboot your CentOS server.

    Unfortunately, I had also problems with Laravel 5 on CentOS and the cause was SElinux. I ended up with disabling SElinux. I know it is not the right thing to do but I haven't had time to get the two working together yet!


    Update

    So I finally had sometime to investigate this further and I got SELinux working together with Laravel 5. I have just updated this post for people that might run into this issue cause. Disabling SELinux is not the best strategy as mentioned above.

    Three things need to be done:

    1. The folders Storage and Bootstrap/Cache need to have the right SELinux context. This can be achieved via the following commands:

      semanage fcontext -a -t httpd_sys_rw_content_t "/var/www/<Laravel Site>/storage(/.*)?"
      
      semanage fcontext -a -t httpd_sys_rw_content_t "/var/www/<Laravel Site>/bootstrap/cache(/.*)?"
      
    2. The SELinux context needs to be applied on the directories:

      restorecon -Rv "/var/www/<Laravel Site>/storage"
      
      restorecon -Rv "/var/www/<Laravel Site>/bootstrap/cache"
      
    3. The Apache user needs to have the rights to create files in both directories. This can be achieved via a ACL in CentOS 7:

      setfacl -R -m u:apache:rwX storage/
      
      setfacl -R -m u:apache:rwX bootstrap/cache/
      

    The last thing you need to do is to enable SELinux again.

    0 讨论(0)
  • 2021-01-31 00:41

    This worked for me, Laravel 5.4 and above

    $ sudo chmod -R 755 storage/
    
    $ sudo chown -R www-data storage/
    
    $ sudo chgrp -R www-data storage/
    
    $ php artisan cache:clear
    
    $ php artisan config:cache
    
    $ composer dumpautoload
    

    Not all steps necessary.

    0 讨论(0)
  • 2021-01-31 00:43

    Since laravel.log is in the storage folder, so I will suggest you run this command on your terminal on Mac.

    chmod -Rf 0777 storage 
    
    0 讨论(0)
  • 2021-01-31 00:50

    ON Laravel 5.7

    $ cd /var/www/html/ $ php artisan cache:clear Application cache cleared!

    0 讨论(0)
  • 2021-01-31 00:53

    for centos 7

       # ausearch -c 'httpd' --raw | audit2allow -M my-httpd
       # semodule -i my-httpd.pp
    
    0 讨论(0)
  • 2021-01-31 00:54

    You have to make sure the storage folder exists. If you're deploying from git, make sure the storage folder itself is tracked and created automatically.

    0 讨论(0)
提交回复
热议问题