问题:安装XAMPP 1.70过程中,报错 : Port 80 or 443 (SSL) already in use ! Installing Apache2.2 service failed!
在XAMPP Control Panel上,不能正常启动Apache服务。不能登录http://localhost 。
原因:某些应用程序或服务,如IIS,Skype等可能占用80端口或443端口。造成Apache不能使用此端口。
解决方案:修改apache使用的端口号。
如:
1)修改xamppapacheconfextrahttpd-ssl.conf文件
# Note: Configurations that use IPv6 but not IPv4-mapped addresses need two
#
#
Listen 443
改成
# Note: Configurations that use IPv6 but not IPv4-mapped addresses need two
#
#
Listen 1443;
2)修改xamppapacheconf httpd.conf文件
#Listen 12.34.56.78:80
Listen 80
改成
#Listen 12.34.56.78:800
Listen 800
PS:443,80端口也可以根据需要改成其他端口如2443,8080等。
安装XAMPP v3.0.12时
出现错误:Port 80 or 443 (SSL) already in use ! Installing Apache2.2 service failed!
Reference:http://blog.sina.com.cn/s/blog_63a2257a0100h9b6.html
Access Date:2012/09/11