Windows 10 – WAMP橙色

前端之家收集整理的这篇文章主要介绍了Windows 10 – WAMP橙色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经在我的 Windows 10企业机器上安装了WAMP 64位服务器.但是我得到一个橙色图标.我检查了以下内容

> Apache – >服务,启动/恢复服务显示为灰色,停止服务为红色.另外测试端口80给了我:

您的端口80实际上用于:
服务器:Apache / 2.4.9(Win64)PHP / 5.5.12

> MysqL – >服务,启动/恢复服务是绿色的.当我点击它时没有任何反应.
>我试过关掉Windows防火墙,没有任何反应.
>我已经检查了Skype,但它实际上并没有安装在我的机器上.在命令提示符中尝试了netstat -b,我看不到端口80的任何内容
>搜索MysqL-bin.index删除但没有出现.

对我接下来可以尝试的任何帮助都将不胜感激.谢谢

UPDATE
以下RiggsFolly建议是我通过Windows事件记录器从MysqL获得的错误

2015-08-08 08:31:08 7024 [Note] Plugin 'FEDERATED' is disabled.
2015-08-08 08:31:08 18ec InnoDB: Warning: Using innodb_additional_mem_pool_size is DEPRECATED. This option may be removed in future releases,together with the option innodb_use_sys_malloc and with the InnoDB's internal memory allocator.
2015-08-08 08:31:08 7024 [Note] InnoDB: Using atomics to ref count buffer pool pages
2015-08-08 08:31:08 7024 [Note] InnoDB: The InnoDB memory heap is disabled
2015-08-08 08:31:08 7024 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2015-08-08 08:31:08 7024 [Note] InnoDB: Memory barrier is not used
2015-08-08 08:31:08 7024 [Note] InnoDB: Compressed tables use zlib 1.2.3
2015-08-08 08:31:08 7024 [Note] InnoDB: Not using cpu crc32 instructions
2015-08-08 08:31:08 7024 [Note] InnoDB: Initializing buffer pool,size = 16.0M
2015-08-08 08:31:08 7024 [Note] InnoDB: Completed initialization of buffer pool
2015-08-08 08:31:08 7024 [Note] InnoDB: Highest supported file format is Barracuda.
2015-08-08 08:31:08 18ec  InnoDB: Operating system error number 87 in a file operation.
InnoDB: Some operating system error numbers are described at
InnoDB: http://dev.MysqL.com/doc/refman/5.6/en/operating-system-error-codes.html
2015-08-08 08:31:08 7024 [ERROR] InnoDB: File C:\wamp\MysqL\data\ib_logfile0: 'aio read' returned OS error 187. Cannot continue operation

另外从谷歌搜索我尝试将以下行添加到my.ini文件,但仍然得到相同的错误
innodb_flush_method =正常

在Windows 10中,Microsoft决定默认启用“World Wide Web Publishing Service”(Web服务器).

尝试并在cmd中运行:

netstat -aon | findstr :80

看到类似的东西:

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

你知道你有另一个服务阻塞端口80.

解:

开始 – >输入“服务” – >输入 – >查找“万维网发布服务” – >选择它 – >右键单击 – >属性 – >更改启动类型:自动到手动,然后单击停止底部 – >应用/确定.

现在,您可以右键单击WAMP图标,然后单击“重新启动所有服务”.

中提琴!

原文链接:https://www.f2er.com/windows/364914.html

猜你在找的Windows相关文章