[laravel] 최초 설치 후 로그 에러가 날때

florentyoon·2022년 12월 17일
0

CentOS

목록 보기
9/9

라라벨을 설치한 후 로컬에서 접속해보니

Failed to open stream: Permission denied The exception occurred while attempting to log

에러가 발생한다.

그래도 여기까지 온거면 일단 설치는 성공인데...

저 에러는 로그을 기록할 권한이 없음을 의미한다.

서버가 아파치라면 

$ sudo chown -R www-data:www-data storage bootstrap/cache
서버가 nginx라면 
$ sudo chown -R nginx:nginx storage bootstrap/cache

그리고 이어서

$ sudo chmod -R 755 storage/logs
$ sudo chmod -R 755 bootstrap/cache

실행하면 된다.

profile
florentyoon의 IT 세상

0개의 댓글