Xampp error:Port 80 in use by "Unable to open process" with PID 4

今天打开Apache的时候报错:

Port 80 in use by "Unable to open process" with PID 4

通过点击与“Apache”模块同一行上的“Config”按钮,在下拉列表中选择“httpd.conf”文件,然后将“Listen 80”行更改为“Listen 8080”。保存文件并关闭它。

还要更改config - >服务和端口设置 - >将其更改为8080

问题就解决了。

原文地址:https://www.cnblogs.com/hardhp74520/p/11523585.html

时间: 2024-11-05 11:00:46

Xampp error:Port 80 in use by "Unable to open process" with PID 4的相关文章

启动Apache出现错误Port 80 in use by "Unable to open process" with PID 4!

22:15:30  [Apache] Problem detected! 22:15:30  [Apache] Port 80 in use by "Unable to open process" with PID 4! 22:15:30  [Apache] Apache WILL NOT start without the configured ports free! 22:15:30  [Apache] You need to uninstall/disable/reconfigu

Solr 6.6.0 ERROR: Port 8983 is already being used by another process.

在目录D:\work\Solr\solr-6.6.0\bin下打开命令框: 输入:solr -e dih报错:ERROR: Port 8983 is already being used by another process. 然后再输入:bin>solr stop -all 最后再输入:solr -e dih 成功

grunt serve Fatal error: Port 35729 is already in use by another process.

[email protected]:~$ lsof | grep 35729 grunt 18194 y 13u IPv6 117971 0t0 TCP *:35729 (LISTEN) Optimizin 18194 18195 y 13u IPv6 117971 0t0 TCP *:35729 (LISTEN) v8:Sweepe 18194 18196 y 13u IPv6 117971 0t0 TCP *:35729 (LISTEN) v8:Sweepe 18194 18197 y 13

IntelliJ运行下载的Servlet时报错 Error running Tomcat 8.5.8: Unable to open debugger port (127.0.0.1:49551): java.net.SocketException

学习Java Servlet时,从Wrox上下载了示例代码,准备run/debug时发现以下错误: Error running Tomcat 8.5.8: Unable to open debugger port (127.0.0.1:49551): java.net.SocketException "Socket closed" /Users/GuQiang/Tomcat/apache-tomcat-8.5.8/bin/catalina.sh stopUsing CATALINA_B

python pip fatal error in launcher unable to create process using

用pip安装一个包,不知道为啥,就报了这个错误:python pip fatal error in launcher unable to create process using “” 百度了一下,用下面的命令可以解决,搞定 python2 -m pip install XXX  另外,Python3 的pip我用python3 -m pip install --upgrade pip 搞定

002-Fatal error in launcher: Unable to create process using '""

这个问题出在先安装Python3之后再安装python2, 使用pip安装的时候出现的故障 原因是python3的环境变量写入在了用户的环境变量上 但是一旦安装python2之后, Python会把信息写到系统环境变量上 此时使用pip就会出现Fatal error in launcher: Unable to create process using '"" 解决办法: 将python3的信息加入到系统环境变量中   002-Fatal error in launcher: Unab

【python】win10中python3.5.2输入pip出现Fatal error in launcher: Unable to create process using '"'

系统:windows 10 python版本:3.5.2 出现的错误如下: C:\Users\zhuxy>pip list Fatal error in launcher: Unable to create process using '"' 尝试的解决办法: C:\Users\zhuxy>python -m pip install package Collecting package Downloading package-0.1.1.tar.gz Complete output

解决:配置虚拟主机,重启apache,[warn] _default_ VirtualHost overlap on port 80, the first has precedence

http://blog.csdn.net/kaizhu_qin/article/details/17506293 很多第一次配置apache的虚拟主机的时候,以为配置第一个虚拟主机完成以后,以后就不会出现什么问题了.在配置第一个虚拟主机的时候,重启apache的时候,都可能会遇到下面的问题:[warn] _default_ VirtualHost overlap on port 80, the first has precedence是因为第一个虚拟主机配置已经占用了80端口,所以将会沿用第一虚

[warn] _default_ VirtualHost overlap on port 80, the first has precedence

解决[warn] _default_ VirtualHost overlap on port 80, the first has precedence问题 在apache2的httpd.conf里新增加了1个VirtualHost,域名是www.ligh.com,此时,服务器总共2个VirtualHost ,apachectl restart的时候却出现了下面的警告提示: 大概意思就是说后面新增加的这个VirtualHost 由于端口被占用,不能生效,沿用第一个虚拟主机的配置.  www.2ct