문제 설명:
CentOS에서 환경을 설정할 때 사용자 권한을 777 또는 755로 수정하거나 파일을 소유한 사용자를 변경하더라도 Laravel 프레임워크는 항상 "스트림 또는 파일이 "/var/www/laravel56/storage" /logs/laravel.log"를 열 수 없습니다. 스트림을 열지 못했습니다: 권한이 거부되었습니다."
해결책:
selinux를 끄세요.
/etc/selinux/config 파일을 편집하고 SELINUX 항목을 다음과 같이 수정합니다: SELINUX=disabled
#This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enforcing - SELinux security policy is enforced. # permissive - SELinux prints warnings instead of enforcing. # disabled - No SELinux policy is loaded. SELINUX=disabled # SELINUXTYPE= can take one of these two values: # targeted - Only targeted network daemons are protected. # strict - Full SELinux protection. SELINUXTYPE=targeted
권장 튜토리얼: centos tutorial
위 내용은 centos에서 권한을 변경한 후에도 디렉토리를 쓸 수 없으면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!