Steps to force restart Apache service

kumkumsharma

Administrator
Staff member
If you are unable to restart Apache and continuously getting below error:

Code:
Address already in use: make_sock: could not bind to port 80
Then you can run below command first and then try to restart Apache service:

Code:
killall -9 httpd
Now restart your Apache service:

Code:
Service httpd restart
 
Top