Problem binding to port 80: Could not bind to IPv4 or IPv6.
웹 서비스나 다른 서비스를 시작하려 하는데 80번 포트를 사용할 수 없다는 듯한 문제가 발생할 수 있습니다.
Case 1 : Let’s Encrypt 사용 도중
Let’s Encrypt로 인증서를 생성하려 하는데 아래와 같이 오류가 발생하며 진행되지 않을 수 있습니다.
[root@myServer ~]# letsencrypt certonly --standalone -d [Site Name] Saving debug log to /var/log/letsencrypt/letsencrypt.log Plugins selected: Authenticator standalone, Installer None Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org Obtaining a new certificate Performing the following challenges: http-01 challenge for [Site Name] Cleaning up challenges Problem binding to port 80: Could not bind to IPv4 or IPv6.
Case 2 : Nginx 서비스 재시작 도중
httpd나 nginx 웹 서비스를 재시작하려 하는데 일반적인 오류 출력 또는 journalctl -xe 명령어로 다음과 같이 나타날 수 있습니다.
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
해결 방법
주의: 아래 방법은 프로세스를 강제 종료하는 방법이므로 긴급한 경우에만 사용해주세요.
netstat
명령어로 80번 포트를 검색 해보았더니 현재 80번 포트가 nginx 프로세스에 의해 사용 중에 있음을 알 수 있습니다.
(이 포스트에서는 nginx를 예로 들고 있지만 httpd나 다른 프로세스로 나타날 수 있습니다.)
[root@myServer ~]# netstat -anp | grep 80 tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 30708/nginx: master tcp6 0 0 :::80 :::* LISTEN 30708/nginx: master unix 3 [ ] STREAM CONNECTED 17380 1082/master unix 3 [ ] STREAM CONNECTED 12800 1/systemd /run/systemd/journal/stdout
ps
명령어로 현재 nginx 프로세스가 구동되고 있는 것이 다시 한 번 확인 되었습니다.
[root@myServer ~]# ps -aef | grep nginx root 14740 1 0 00:14 ? 00:00:00 nginx: master process nginx -c /c/nginx/nginx.conf nginx 14752 14740 0 00:14 ? 00:00:00 nginx: worker process root 17150 17097 0 23:31 pts/0 00:00:00 grep --color=auto nginx
중요한 상태가 아니라면 nginx 프로세스를 강제로 종료하도록 하겠습니다. 사실 강제 종료는 좋은 방법이 아니지만, 사전에 실행되었던 nginx 프로세스가 잘못된 설정 문제로 인해 정상적으로 종료되지 않았을 수 있기 때문에 강제로 프로세스를 중지하는 방법을 사용해보도록 하겠습니다.
상단의 ps
명령어에서 nginx 프로세스의 PID인 14740, 14752를 사용하겠습니다.
[root@myServer ~]# kill -9 14740 [root@myServer ~]# kill -9 14752
이제 필요한 명령으로 다시 시도하여 확인해볼 수 있습니다.
[root@myServer ~]# service nginx restart