zoukankan      html  css  js  c++  java
  • XAMPP中Apache因为端口原因不能启动的解决方法

        在开启XAMPP的Apache时报出如下错误信息:

    9:08:14 PM [Apache] Error: Apache shutdown unexpectedly.
    9:08:14 PM [Apache] This may be due to a blocked port, missing dependencies,
    9:08:14 PM [Apache] improper privileges, a crash, or a shutdown by another method.
    9:08:14 PM [Apache] Press the Logs button to view error logs and check
    9:08:14 PM [Apache] the Windows Event Viewer for more clues
    9:08:14 PM [Apache] If you need more help, copy and post this
    9:08:14 PM [Apache] entire log window on the forums
    9:13:44 PM [Apache] Problem detected!
    9:13:44 PM [Apache] Port 80 in use by "Unable to open process" with PID 4!
    9:13:44 PM [Apache] Apache WILL NOT start without the configured ports free!
    9:13:44 PM [Apache] You need to uninstall/disable/reconfigure the blocking application
    9:13:44 PM [Apache] or reconfigure Apache and the Control Panel to listen on a different port

        寓意为80端口被占用,只需用编辑器打开XAMPP安装目录中xamppapacheconf下的httpd.conf,将58行Listen 80改为Listen 88,220行ServerName localhost:80改为ServerName localhost:88保存即可成功启动(这里的XAMPP版本为v3.2.2)。

    其它Apache不能正常启动问题请见:http://blog.csdn.net/kunlong0909/article/details/7716715

  • 相关阅读:
    vmware-tools安装
    UBUNTU 安装教程
    CANO入门(三)
    CANOE入门(二)
    CANOE入门(一)
    ubuntu 常见错误--Could not get lock /var/lib/dpkg/lock
    vmware-tools安装
    root权限
    ARM嵌入式开发中的GCC内联汇编__asm__
    OpenCV3.1.0+VS2015开发环境配置
  • 原文地址:https://www.cnblogs.com/corvoh/p/5228982.html
Copyright © 2011-2022 走看看