win8 64下启动Apache失败:443端口被占用的解决方法
时间:2014-08-06 04:09:00
收藏:0
阅读:7386
今天帮朋友弄一个Apache的环境,遇到了The requested operation has failed的错误。
使用命令行启动之后报如下错误:
D:\Apache24\bin>httpd -k start
(OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 : AH00072: mak
e_sock: could not bind to address [::]:443
(OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 : AH00072: mak
e_sock: could not bind to address 0.0.0.0:443
AH00451: no listening sockets available, shutting down
AH00015: Unable to open logs
发现443端口被占用了,443端口应该是https的端口。
所以查了一下发现是VMware占用了
不想动vm了,所以就到Apache24\conf\extra目录下找到httpd-ssl.conf文件,记事本打开,找到“Listen 443”,改成442。
启动Apache。
OK。
评论(0)