Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

I installed IIS7 and Xampp 2.5 on my laptop (Windows 7). However, I cannot start Apache because the port 80 was not available (when I stop IIS7), but I can start IIS7. I don't know why. Anybody give me a hint pls :)

Thank you so much :)

share|improve this question

1 Answer

If port 80 is unavailable:

  1. Run xampp-portcheck.exe - it will tell you if any other programs are listening on needed ports - and identify the programs for you.
  2. Check skype if you use it - it may listen on port 80
  3. Try using netstat -nabt and looking for anything listening on port 80

Also, if you are not already doing so, start with a fresh install of XAMPP (i.e. unmodified httpd.conf). You may also consider changing the port Apache listens on (the 'Listen' directive) to see if that resolves the problem.

share|improve this answer
I found my answer here devpit.net/web-development/… – eureka Jul 22 '11 at 18:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.