Can't use WAMP , port 80 is used by IIS 7.5

后端 未结 17 1383
小鲜肉
小鲜肉 2020-12-12 14:58

I am trying to use WAMP on Windows 7, my WAMP is online, but when I open localhost I get the welcome page of IIS 7.5, although I have uninstalled IIS 7.5 from my PC!

17条回答
  •  感情败类
    2020-12-12 15:23

    I had lot of problems with this error (Thanks to Microsoft -- Grrr!!)

    Finally found the solution ..... I am sharing this solution

    There are couple of ways to stop IIS 7.5

    • Best one is:

      Open a CMD prompt (as Admin) and type this:

      iisreset /stop Here is a snapshot:

      Image

    • Next option if you still cannot stop the IIS 7.5

      Try this video link.

    • Final option is to change the port number as the last option httpd.conf

    PS: Don't forget to restart the WAMP once fixing the errors


    You can also

    Just disable and stop the World Wide Web Publishing Service (This shuts down IIS forever) - - -(You need to use Run from the starting point in windows):

    sc config w3svc start= disabled
    net stop w3svc
    

    If you don't want it disabled, but manual instead, replace disabled by demand (don't remove space).

提交回复
热议问题