nginx: [emerg] open () "/ etc / nginx / nginx. conf" failed (2: No such file or directory) 오류 해결
915 단어 OpenWRT
root@OpenWrt:/usr/sbin# ./nginx -t
nginx: [emerg] open() "/etc/nginx/nginx.conf" failed (2: No such file or directory)
nginx: configuration file /etc/nginx/nginx.conf test failed
힌트 에 따라 ngix. conf 파일 이 있 는 지 확인 하 십시오:
root@OpenWrt:/etc# cd nginx/
root@OpenWrt:/etc/nginx# ls
fastcgi_params_bak koi-utf koi-win mime.types nginx.conf_bak win-utf
root@OpenWrt:/etc/nginx# cp nginx.conf_bak nginx.conf
root@OpenWrt:/etc/nginx# cp fastcgi_params_bak fastcgi_params
파일 에 bak 접 두 사 를 붙 인 것 을 발 견 했 습 니 다. 설치 에 실 패 했 습 니 다. 다시 설치 하 는 것 을 강제로 중단 할 때 발생 한 것 같 습 니 다. bak 를 제거 한 후에 다시 시도 하 십시오.
root@OpenWrt:/usr/sbin# ./nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
nginx successful~