View previous topic :: View next topic |
Author |
Message |
zeveck Apprentice
Joined: 17 Mar 2005 Posts: 173 Location: Boston, MA
|
Posted: Tue Oct 18, 2005 3:10 pm Post subject: address already in use error with apache? |
|
|
I tried to set apache to Listen 443, but got:
Quote: | (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 |
What else could be listening on 443? This is a pretty stripped down box....any way I could figure out what is listening?
Does apache have to be bound to 443 to handle ssl? |
|
Back to top |
|
|
lopez n00b
Joined: 24 Jun 2004 Posts: 52 Location: Toledo, OH USA
|
Posted: Tue Oct 18, 2005 3:45 pm Post subject: |
|
|
run as root:
Code: | netstat -lnp | grep 443 |
should tell your PID/program name thats listening on that port
Apache doesn't have to be on 443 to use SSL but thats what port it defaults to when you use the https:// url in your web browser. Otherwise you need to type in the port number in your url. |
|
Back to top |
|
|
|