Q. How do I fix an error, while restarting Apache ~ Address already in use: make_sock: could not bind to port 80?
A. If you are running SELinux disable temporary for port 80.
Apache Address already in use: make_sock: could not bind to port 80 error and solution
First make sure port 80/443 is not used by any other service or application with netstat command:
# netstat -tulpn| grep :80
If port 80 is bind to httpd, kill all process:
# killall -9 httpd
Now start the httpd:
# /etc/init.d/httpd start
Also make sure you are root while starting the httpd.
🐧 Get the latest tutorials on Linux, Open Source & DevOps via RSS feed or Weekly email newsletter.
🐧 35 comments so far... add one ↓
🐧 35 comments so far... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
Sir,
I have already used above commands but still the problem persist. When i use netstat then no pid/program name displays associated with it as below output.
netstat -tulpn | grep :80
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN –
Please help me in this situation what should i do.
thankyou.
vijay
you must sudo netstat or it won’t show you everything (sudo killall also)
Try to killall -9 php – this should solve your problem
The post has helped us a lot.
Is this step are applicable for Ubuntu 7.10? , if trying step no2 killall -9 httpd displaying no process kill however if trying to run step 3 its displying no such file or directory
Shortest solution to my problem. Thanks!
Thanks. Worked great !!
Thanks heaps, it solves my problem
But do you know why it causes it? Looks like the apache2 crashes then it didn’t shut down the connection to port 80?
Some linux builds are configured to include conf.d/ssl.conf which binds to the hosts IP at port 443. This will generate the same error mentioned here.
I resolved the problem by deleting the VirtualHost block in /etc/conf.d/ssl.conf and commenting out the Listen 443 directive.
One might run into this if they define their own instance with SSL enabled.
Stop iis server from windows service
(administrator tool -> services – > world wide web)
And Start Apache
Really? Really? Windows server? More like an oxymoron. Have fun playing as a “point ‘n’ click” admin wannabe, you little n00blet.
Ok. I had the same issue. I was running Apache2 so after running the:
sudo netstat -tulpn| grep :80
I saw that apache2 was listening to that port. I shut all apache2 services down by doing the following:
sudo killall -9 apache2
Then ran:
netstat -tulpn| grep :80
to see if there was anything left open. If no results, the process was killed.
Then start up your apache2 services using:
sudo /etc/init.d/apache2 start
This resolved my problems! Hope this helps others. What a freakin pain!!!!!
@Flyboy, thanks a lot, was helpful for me.
Saved me @$$, tanks!
Thanks for the comment to take out ssl :443. That’s what been stopping my restarting httpd.
Yes! Thanks for your post… you saved me :-)
it does’t help me…^(
And what if the system reboots? Than again port 80 is in use. So
# netstat -tulpn| grep :80
If port 80 is bind to httpd, kill all process:
# killall -9 httpd
Now start the httpd:
# /etc/init.d/httpd start
fixes the symtoms but it is not the solution.
Thank you so much, great post helpful
Thank you so much , This post solved my problem.
Thanks a lot, you saved my time :)
FIRST and foremost thing don’t keep more than 1 ssl config file in /etc/httpd/conf.d/ folder
Hi,
I am also having same problem. I have killed and restarted the httpd, afterwards tried to start my server but it didnt worked….
Now its working thankssss………….
Screwed up almost 100s of pages for the solution of this issue…Just a small command “Killall” gave me a way from dark light..thkx guys….
How can I know that my board MAC address is already in use or it’s free to use. That means How can I identify that someone else is using my Board’s Mac address or not ? Please post the command if it’s available.
Thanks in advance
If you are trying to bind to port 80, you may also want to try disabling selinux to see if that is an issue.
echo 0 > /selinux/config /selinux/config <-enable
The above tmp. sets that seeing and reboot clears it. To permanently set it to disabled
vi /etc/selinux/config
change
SELINUX=enforcing
to
SELINUX=disabled
Reboot or put in the temp change above until you can reboot.
Thanks, Ted Sheckler. What you mentioned is correct. There were two declarations of 443.
Great . Ted Sheckler
here is best way to disable selinux ! kloxo is need to disable it :)
change
SELINUX=enforcing
to
SELINUX=disabled
hey.
thanks a lot. it saved a lot of time.
Hi,
Thanks for the post. It helped in getting up the server once again and save time & effort.
RedHat & Httpd
Omg thank you!!!
Thank you my friend. You solved my problem
This error is possible due to many reasons. one of the is as below.
If you have configured your apache with a listen address that is hitting 80 or 443 and if there is a duplicate entry in the same file, you would see this issue.
Ex: Listen marsp1uat01-indianrails.com:80 (You see if this is configured more than once in the same .conf file)
So, just remove the duplicate entry, save the .conf file and try to start it.
Thank you Frend