Error installing GitStack on Windows Server 2008
0
I am trying to install GitStack on Windows Server 2008. I followed the instructions to stop IIS and
run the install as show here . But when I tried to launch Git after the install, I discovered Apache
did not start. The errors shown in my event log are:
>>> (OS 10013)An attempt was made to access a socket in a way forbidden by its access permissions. :
make_sock: could not bind to address [::]:443 .
>>> (OS 10013)An attempt was made to access a socket in a way forbidden by its access permissions. :
make_sock: could not bind to address 0.0.0.0:443 .
The Apache service named reported the following error:
>>> no listening sockets available, shutting down .
The Apache service named reported the following error:
>>> Unable to open logs .
Tags: asked May 23, 2012
2 Answers
0
By reading your logs, it seems that the port 443 is still used by another service. Could you make sure that no other services are using this port ?
0
Since IIS wasn't holding the port, I decided to look around to see what was using port 443 and found System was the culprit:
C:\Windows\system32>netstat -a -n -o | more
Active Connections
Proto Local Address Foreign Address State PID
TCP 0.0.0.0:443 0.0.0.0:0 LISTENING 4
C:\Windows\system32>tasklist /svc /fi "PID eq 4"
Image Name PID Services
========================= ======== ============================================
System 4 N/A
After Googling around, I found this article, and my problems were solved. :)
http://superuser.com/questions/125455/why-is-the-system-process-listening-on-port-443
Your Answer
Please login to post questions.