3

my computer was installed IIS and I using xampp without problem.
But when i installed SQL Server and Visual Studio. My apache can't start.
I check by cmd like enter image description here

and enter image description here

But i can't end task because it's disable. How can i make my apache run thanks.

DeLe
  • 2,442
  • 19
  • 88
  • 133

3 Answers3

6

I found my solution:
Stop service SQL Server Reporting Services
I see below thread http://www.lukebrowning.com/blog/nt-kernel-system-using-port-80/

DeLe
  • 2,442
  • 19
  • 88
  • 133
1

After install Sql server , there will be reporting services configuration manager which is actually blocking the port 80. Follow the steps to release the port for xampp

  • logon your reporting services configuration manager

enter image description here

  • Go to Web Service URL > Advances

enter image description here

  • Then Click on Edit in first edit button and change the TCP port and click save. enter image description here

  • **Then Click on Report Manager URL > Advanced > Edit (First Edit Button) > Change port 80 to 8080 > ok

** enter image description here

Emtiaz Zahid
  • 2,645
  • 2
  • 19
  • 35
0

Apache wan't start after Microsoft VS, IIS, MYSQL installation.

I run the command: netstat -aon | findstr :80 I figured out that the MSSQL was listening port :80

There are two solutions:

  • Use different port for Apache what is not convenient but esentiel if you need MSSQL up during development.
  • Stop MSSQL server. CMD -> Services.msc-> SQL Server -> Stop

Stop MSSQL in a services

volkinc
  • 2,143
  • 1
  • 15
  • 19