반응형
The stream or file "/var/www/laravel/app/storage/logs/laravel.log" could not be opened: failed to open stream: Permission denied
"The stream or file "/var/www/laravel/app/storage/logs/laravel.log" could not be opened: failed to open stream: Permission denied" 우분투에서 라라벨 동작시에 이러한 에러가 발생할 경우가 있다.
이같은 상황은 폴더 권한 문제 때문에 발생하는 것이다.
해당 폴더에 chmod 777 권한을 주면 해결된다.
$ sudo chmod -R 777 app/storage
반응형
댓글