Windows 10 - WAMP Orange

爷,独闯天下 提交于 2019-12-04 03:01:19

In Windows 10 Microsoft decided to enable the "World Wide Web Publishing Service" (a webserver) by default.

Try and run in cmd:

netstat -aon | findstr :80

And see something like:

  TCP    0.0.0.0:80             0.0.0.0:0              LISTENING       4
  ...
  TCP    [::]:80                [::]:0                 LISTENING       4
  TCP    [::1]:80               [::1]:50558            ESTABLISHED     4
  TCP    [::1]:50558            [::1]:80               ESTABLISHED     11504

You know you have another service blocking port 80.

Solution:

Start -> Type "Services" -> Enter -> Find "World Wide Web Publishing Service" -> Select it -> Right click -> Properties -> Change Startup type: Automatic to Manual and click the Stop bottom -> Apply/OK.

Now you can right click on you WAMP icon and click "Restart All Services".

Viola!

I know this thread is a bit old but I found a solution to my problem. From the WAMP icon, navigate to:

  • wampmanager -> Apache -> Service -> Install Service
  • wampmanager -> MySQL -> Service -> Install Service

When Apache failed for me, it suggested that Skype might be the problem, because it was utilizing the requisite ports. I quit Skype, restarted all WAMP services, and got the green light... or green W rather ;)

Change the port WAMP is using. By default, WAMP uses port 80. You can change the port by: right click WAMP > tools > "Use port other than #"

Hope this helps!

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!