如何在 XAMPP 控制面板 v3.2.1 上停止 VMware 端口错误 443
当我运行 XAMPP 控制面板 v3.2.1 时出现此错误:
When I run XAMPP Control Panel v3.2.1 I get this error:
07:37:24 [Apache] Problem detected!
07:37:24 [Apache] Port 443 in use by ""C:Program Files (x86)VMwareVMware Workstationvmware-hostd.exe" -u "C:ProgramDataVMwarehostdconfig.xml"" with PID 2148!
07:37:24 [Apache] Apache WILL NOT start without the configured ports free!
07:37:24 [Apache] You need to uninstall/disable/reconfigure the blocking application
07:37:24 [Apache] or reconfigure Apache and the Control Panel to listen on a different port
我自己无法解决.尽快获得帮助将不胜感激.
I could not fix it myself. Getting help soon will be thankful.
推荐答案
这里是一步一步的解决方案:
Here is the solution step-by-step:
- 在
path2xamppapacheconfextra
中打开httpd-ssl.conf
- 查找
Listen 443
行 - 将端口号更改为您想要的任何内容.我使用
4430
.前任.听 4430
. - 用
4430
替换该文件中的每个443
字符串. - 保存文件.
- 最后重启你的 apache.
- 完成.
- Open up
httpd-ssl.conf
inpath2xamppapacheconfextra
- Look for the line
Listen 443
- Change port number to anything you want. I use
4430
. ex.Listen 4430
. - Replace every
443
string in that file with4430
. - Save the file.
- and, Finally restart your apache.
- done.
相关文章