XAMPP和VmWare Port 443 冲突的问题

11:18:31  [Apache] 	Problem detected!
11:18:31  [Apache] 	Port 443 in use by ""D:\Program Files (x86)\VMware\VMware Workstation\vmware-hostd.exe" -u "C:\ProgramData\VMware\hostd\config.xml"" with PID 1896!
11:18:31  [Apache] 	Apache WILL NOT start without the configured ports free!
11:18:31  [Apache] 	You need to uninstall/disable/reconfigure the blocking application
11:18:31  [Apache] 	or reconfigure Apache and the Control Panel to listen on a different port
11:18:31  [Apache] 	Attempting to start Apache app...
11:18:31  [Apache] 	Status change detected: running
11:18:32  [Apache] 	Status change detected: stopped
11:18:32  [Apache] 	Error: Apache shutdown unexpectedly.
11:18:32  [Apache] 	This may be due to a blocked port, missing dependencies,
11:18:32  [Apache] 	improper privileges, a crash, or a shutdown by another method.
11:18:32  [Apache] 	Press the Logs button to view error logs and check
11:18:32  [Apache] 	the Windows Event Viewer for more clues
11:18:32  [Apache] 	If you need more help, copy and post this
11:18:32  [Apache] 	entire log window on the forums

  问题描述,如上图,在开机后,VmWare 服务开机启动,提示端口和443冲突,解决方案:停掉VmWare 或者修改Apache的SSl配置端口,在Apache 的Httpd的httpd-ssl.conf 文件中的监听端口:

Listen 443 修改成Listen 445 或者其他,重启就可以了。

时间: 2024-11-03 04:02:33

XAMPP和VmWare Port 443 冲突的问题的相关文章

【转】修复关于apache-xampp的问题:Port 443 in use by “vmware-hostd.exe”!

在电脑里装了VMware后,再要装xampp,十有八九就会出现这个问题: 11:23:37  [Apache]     Problem detected! 11:23:37  [Apache]    Port 443 in use by “vmware-hostd.exe”! 11:23:37  [Apache]     Apache WILL NOT start without the configured ports free! 11:23:37  [Apache]     You need

修复关于apache-xampp的问题:Port 443 in use by “vmware-hostd.exe”!

内容提要:复关于apache-xampp的问题:Port 443 in use by “vmware-hostd.exe”!在电脑里装了VMware后,再要装xampp,十有八九就会出现这个问题: 复关于apache-xampp的问题:Port 443 in use by “vmware-hostd.exe”! 在电脑里装了VMware后,再要装xampp,十有八九就会出现这个问题: 10:21:18  [Apache]  Problem detected!10:21:18  [Apache]

关于python3.6上传文件时报错:HTTPSConnectionPool(host='httpbin.org', port=443): Max retries exceeded with url: /post (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAIL解决办法

第一个报错: 最近在练习post请求中上传文件时遇到了一个奇葩事情,两台电脑上写了一模一样的代码,一个运行正常,另一个一片红. 最后了解了一下原因以及解决办法.先记录下关键代码: files = {"files":(r"F:\test.txt","xixihaha")} #直接将目标文件内容xixihaha通过文件test.txt进行上传 r = requests.post(url,files=files)print(r.headers) #前边

Hyper-V与VirtualBox或VMware虚拟机软件冲突的解决方法(VirtualBox只能创建32位虚拟机)

Hyper-V与VirtualBox或VMware虚拟机软件冲突的解决方法 Hyper-V是微软的虚拟化软件,功能类似VirtualBox.VMware,可以用来创建虚拟机. 虚拟化软件都是基于CPU等底层硬件的Hypervisor机制来实现的,而他们必须独占管理 Hypervisor,因此不能在一台电脑中同时运行多个虚拟化软件.由于Hyper-V与VirtualBox.VMware不能共存,因此当Hyper-V打开时,VirtualBox.VMware就不能正常工作了.目前还没有找到Virtu

pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.

用pip安装tornado库: python -m pip install tornado 出现问题一: Could not fetch URL https://pypi.org/simple/twisted/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/twis

解决python爬虫requests.exceptions.SSLError: HTTPSConnectionPool(host='XXX', port=443)问题

爬虫时报错如下: requests.exceptions.SSLError: HTTPSConnectionPool(host='某某某网站', port=443): Max retries exceeded with url: /login/ (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify fail

解决在macOS下安装homebrew出现port 443: Connection refused的情况

因为疫情的原因需要在家办公,然后就给家里的MBP各种装开发软件...在安装homebrew的时候出现了port 443: Connection refused,如下图 然后网上各种办法都试了下,什么装redis什么改hosts的都没用,正在郁闷,看到某篇博客下面一个评论: 用手机热点就可以??虽然看着非常不靠谱,但是我还是试了下... 居然..成功了... 完 原文地址:https://www.cnblogs.com/jzl123/p/12255087.html

错误:pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.

pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out. 上官瑾文 2018-07-26 14:57:34 浏览45376 python docker shell 镜像 Image pip read dockerfile ReadTimeoutError 场景 在用Dockerfile制作镜像的时候总是

python pip install 报:HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.错误

下午想要安装 scrapy框架时报错,如图: 网上查了一下:因为网络差导致安装超时,所以用安装时指定源的方法可以解决: pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple 红色的字体表示要安装的模块 python pip install 报:HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.错误 原文地址:https:/