| Webtraffic Exchange | Linux

Address already in use

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: Facebook X LinkedIn Email


0 Comments

Comments are moderated to keep the discussion useful and respectful. Spam, automated submissions, and low-value promotional comments are removed.

  • No comments have been published yet.

Leave a Comment

Related Articles