- nginx 오류가 발생하여 아래와 같은 결과가 출력되는 경우에 대한 trouble shooting
Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details.
이럴 경우 위에서 이야기하듯 error code를 확인하도록
journalctl -xe
과sudo systemctl status nginx.service
명령을 실행하여 확인해보면Active: Failed
인 상태일 것이다. 그리고 error log 를 확인하여 보면 bind() to 0.0.0.0:443과 0.0.0.0:80 failed 가 발생한 것을 확인할 수 있을 것이다.
- Try
sudo fuser -k 80/tcp sudo fuser -k 443/tcp sudo service nginx restart
그리고 nginx 가 이상이 없는지 sudo nginx -t 로 테스트 해볼 수 있다.
Uploaded by N2T