에러 문구
The stream or file "/home/laravel/sc_v2/storage/logs/laravel-2019-09-18.log" could not be opened: failed to open stream: Permission denied"
라라벨을 설치한 뒤에 웹서버의 permission denied 에러가 나올 경우 storage와 bootstrap/cache 폴더에 웹서버가 접근하지 못할 경우 생기는 에러이다
그룹권한을 웹서버에게 부여하면 해결된다.
sudo chown -R $USER:www-data storage
sudo chown -R $USER:www-data bootstrap/cache
chmod -R 775 storage
chmod -R 775 bootstrap/cache
'Web > PHP' 카테고리의 다른 글
[ Codeigniter ] 에러 출력하기 (0) | 2019.11.18 |
---|---|
[ Laravel ] 블레이드 템플릿 문법 (0) | 2019.10.18 |
[ Laravel ] 기본 config 항목 살펴보기 (0) | 2019.07.31 |
CodeIgniter 에서 PHPExcel 사용하여 Excel 파일 읽기 (0) | 2019.05.07 |
laravel view 캐쉬 비우기 (0) | 2019.04.11 |
댓글