nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
Not really a tutorial, but more about solving problem.
Problem : Try to start nginx after a hard reboot and got this error message
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
After some investigation, apparently it was caused by a process which is already using port 80.
Later on, I found out that it was caused by auto start of nginx.
To fix this problem, just stop nginx
service nginx stop
and restart nginx
service nginx start
this solved my problem. However,in case it is not caused by nginx. You can do this
sudo fuser -k 80/tcp
to kill the process that hogged port 80.
Oh! Before killing the process. Make sure you know which process it is first!
See also : Nginx + FastCGI + Go Setup.
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+29k Golang : Detect (OS) Operating System
+5.6k Unix/Linux : How to archive and compress entire directory ?
+48.8k Golang : Upload file from web browser to server
+5.3k Responsive Google Adsense
+7.8k Golang : Convert(cast) io.Reader type to string
+11k Golang : Command line file upload program to server example
+17.9k Golang : [json: cannot unmarshal object into Go value of type]
+13.6k Golang : Generate Code128 barcode
+63k Golang : Convert HTTP Response body to string
+21.1k Android Studio : AlertDialog and EditText to get user string input example
+31.1k Golang : Interpolating or substituting variables in string examples
+16.1k Golang : Update database with GORM example