When starting the httpd service, the following error message appears and the service failed to start.

# service httpd start
Starting httpd: (98)Address already in use: make_sock: could not bind to address 0.0.0.0:443
no listening sockets available, shutting down
Unable to open logs

The error message means that when the httpd tried to start, some other process was already listening on 443. To see what other processes are using port 443, the following two commands may be used:

# netstat -A inet -lnp
# lsof -i tcp:443
Using the commands shown above, find a process that is listening on port 443 and kill that process. And, restart the http daemon.

Share this post

Comments (0)

    No comment

Leave a comment

All comments are moderated. Spammy and bot submitted comments are deleted. Please submit the comments that are helpful to others, and we'll approve your comments. A comment that includes outbound link will only be approved if the content is relevant to the topic, and has some value to our readers.


Login To Post Comment