Wamp 服务器无法绑定到端口 80 错误
Wamp server can't bind to port 80 error
我遇到了与 Getting an error when starting WAMP - "VirtualHost *:80 -- mixing * ports and non-* ports with a NameVirtualHost address is not supported, proceeding with undefined results" 非常相似的错误
我也一样
Only one usage of each socket address (protocol/network address/port) is normally permitted. : make_sock: could not bind to address 0.0.0.0:80"
事件日志查看器中的错误消息。我尝试了禁用 Skype 使用端口 80 的修复程序,但是当我这样做时,控制台中什么也没有出现。我正在使用 64 位 wamp,我在 64 位 windows 8.1 笔记本电脑中。
编辑:问题已解决,在 httpd.cfg
中将 Listening on 80 更改为 8080
其他程序可能会搞砸。
您是偶然使用 Skype 还是其他程序。
如果您只是将其关闭,然后启动 wamp,然后再启动您的程序。
WAMPManager 图标(系统托盘中的那个)上有一个名为 Test Port 80
的菜单项
你可以通过
wampmanager -> Apache -> Service -> Test Port 80
这将加载命令 window 并显示已捕获端口 80 的其他应用程序的名称。
然后你当然得想办法解决它。
另外据我所知,Windows 8 Tiled 版本的 SKYPE 没有任何方法可以配置为停止使用端口 80。但是如果你卸载 Tile 版本的 SKYPE 并安装正常Windows 版本,允许您对其进行配置,使其不会尝试使用端口 80 或 443。
如果你真的找不到 wampmanager 图标试试这个
试试这个
netstat -anop TCP | find ":80"
tasklist /FI "PID eq 999" /FO TABLE /NH
replacing 999 with the PID number from the previous command that is using port 80.
打开命令提示符并运行netstat -ano | findstr :80
这将列出所有使用端口 80 的连接及其进程 ID(在右侧)。将它们与任务管理器中的进程 ID 匹配并关闭它们。
我遇到了与 Getting an error when starting WAMP - "VirtualHost *:80 -- mixing * ports and non-* ports with a NameVirtualHost address is not supported, proceeding with undefined results" 非常相似的错误
我也一样
Only one usage of each socket address (protocol/network address/port) is normally permitted. : make_sock: could not bind to address 0.0.0.0:80"
事件日志查看器中的错误消息。我尝试了禁用 Skype 使用端口 80 的修复程序,但是当我这样做时,控制台中什么也没有出现。我正在使用 64 位 wamp,我在 64 位 windows 8.1 笔记本电脑中。
编辑:问题已解决,在 httpd.cfg
中将 Listening on 80 更改为 8080其他程序可能会搞砸。
您是偶然使用 Skype 还是其他程序。
如果您只是将其关闭,然后启动 wamp,然后再启动您的程序。
WAMPManager 图标(系统托盘中的那个)上有一个名为 Test Port 80
你可以通过
wampmanager -> Apache -> Service -> Test Port 80
这将加载命令 window 并显示已捕获端口 80 的其他应用程序的名称。
然后你当然得想办法解决它。
另外据我所知,Windows 8 Tiled 版本的 SKYPE 没有任何方法可以配置为停止使用端口 80。但是如果你卸载 Tile 版本的 SKYPE 并安装正常Windows 版本,允许您对其进行配置,使其不会尝试使用端口 80 或 443。
如果你真的找不到 wampmanager 图标试试这个
试试这个
netstat -anop TCP | find ":80"
tasklist /FI "PID eq 999" /FO TABLE /NH
replacing 999 with the PID number from the previous command that is using port 80.
打开命令提示符并运行netstat -ano | findstr :80
这将列出所有使用端口 80 的连接及其进程 ID(在右侧)。将它们与任务管理器中的进程 ID 匹配并关闭它们。