如果我们的电脑既安装了VMware虚拟机软件,又安装了XAMPP,启动XAMPP的时候,经常会报错。
提示信息说明: 443号端口被vmware-hostd.exe进程占用了,导致Apache无法启动。
这是因为vmware-hostd.exe默认是使用443号端口的,而它又是默认自动启动的。
我们知道,Apache 的 httpd 服务默认是使用80端口的,而 httpd-ssl 默认是使用443端口的。这就导致了443号端口的冲突。
最佳解决办法为:
Your XAMPP control panel displays these messages:
XX:XX:XX [Apache] Port 443 in use by ""C:\Program Files (x86)\VMware\VMware Workstation\vmware-hostd.exe" -u "C:\ProgramData\VMware\hostd\config.xml"" with PID XXXX!
To solve this problem, follow these steps:
Launch VMWare Workstation.
Use the "Edit → Preferences → Shared VMs" menu and in the resulting dialog, enter a new port number for the VMWare Workstation Server.
Click "OK" to save your changes. Restart VMWare Workstation for your change to take effect.
(解决完成)
一般来说,解决方法有两种(不推荐):
说明: 上面两种方法中的任何一种都可以。第二种方法一般也不会影响VMware的正常使用。VMware Workstation Server 服务的描述信息为“Remote access service for registration and management of virtual machines.”,也就是说它与远程管理VMware有关。而我们一般也不会使用到VMvare的远程访问功能,所以第二种方法基本没有影响。
http://blog.csdn.net/lamp_yang_3533/article/details/53209579 参考此文