nginx의 일반적인 오류와 해결 방법은 다음과 같습니다.
오류 1:
nginx: [error] CreateFile() "C:\mytools\nginx-1.8.1/logs/nginx.pid" failed (2: The system cannot find the file specified)
또는
nginx: [error] Open() "C:\mytools\nginx-1.8.1/logs/nginx.pid" failed
해결 방법:
명령을 사용하여 /logs/nginx.pid 파일을 만듭니다.
nginx -c conf/nginx.conf
오류 2:
nginx: [alert] could not open error log file: CreateFile() "logs/error.log" failed (3: The system cannot find the path specified) [emerg] : invalid number of arguments in "root" directive in C:\mytools\nginx-1.8.1\conf\nginx.conf:45
해결책:
구성 파일 루트가 디렉터리를 지정하는 경우 디렉터리 끝은 ""일 수 없습니다.
관련 권장 사항: nginx 튜토리얼
위 내용은 nginx의 일반적인 오류 및 해결 방법 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!