728x90

 

 

CentOS 7 Light Package no included in fuser library package. 

 

# yum -y install psmisc
# fuser -k 80/tcp

fuser 로 Nginx 에서 기본적으로 잡고있던 80과 443을 다 죽이고 난 후에 

nginx 를 restart 하면 trouble shooting 완료

 

 

 

[emerg]: bind() to 0.0.0.0:80 failed (98: Address already in use)

 

If you get following error, when you try to start nginx…

[emerg]: bind() to 0.0.0.0:80 failed (98: Address already in use)

Then it means nginx or some other process is already using port 80.

 

You can kill it using:

 

sudo fuser -k 80/tcp

 

And then try restarting nginx again:

 

service nginx start

+ Recent posts