Joonas' Note
Joonas' Note
Nginx 시작 시, Address already in use 해결법 본문
https://easyengine.io/tutorials/nginx/troubleshooting/emerg-bind-failed-98-address-already-in-use/
nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)
nginx: [emerg] bind() to [::]:443 failed (98: Address already in use)
해당 포트를 이미 사용 중이라고 나오는 데, 그럼 해당 포트를 사용하고 있는 것을 종료해버리면 된다.
ubuntu@joonas:~$ sudo fuser -k 80/tcp
nginx를 재시작하면 잘 돌아간다.
'개발' 카테고리의 다른 글
Github 파일 사이즈 제한 (0) | 2018.05.04 |
---|---|
Kinesis를 이용한 데이터 수집 (0) | 2018.01.05 |
메뉴 결정 도우미 (2) | 2017.12.10 |
Ubuntu 16.04 LTS에서 MongoDB 설치 오류 정리 (2) | 2017.11.24 |
Django에서 1267, Illegal mix of collations 해결법 (0) | 2017.11.17 |
Comments