zoukankan      html  css  js  c++  java
  • XAMPP 在windows下无法启动Apache解决方案

    XAMPP 在windows下无法启动Apache解决方案

    一.现象

    XAMPP 点击Start Apache时出现如下错误

    20:41:12  [Apache] Error: Apache shutdown unexpectedly.

    20:41:12  [Apache] This may be due to a blocked port, missing dependencies,

    20:41:12  [Apache] improper privileges, a crash, or a shutdown by another method.

    20:41:12  [Apache] Check the "/xampp/apache/logs/error.log" file

    20:41:12  [Apache] and the Windows Event Viewer for more clues 

    二.寻找错误具体原因

    在cmd中运行 (安装目录)apache/bin/httpd.exe 

     通过运行apache/bin/httpd.exe 打印如下log:
    (OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次。
    : make_sock: could not bind to address 0.0.0.0:443
    也就是443端口被占用,最简单的方法是关闭占用443端口的进程:
    1. netstat -ano 看看 443端口被占用没  
    2.通过cmd中打印tasklist,查找占用443端口的进程。
    3.taskkill /pid 端口号 杀掉此进程,XAMPP重启apache即可。
     
    三,问题解决

    显然这样的解决办法不够好,如果我非要同时运行Vidalia和XAMPP怎么办?

    对于绑定0.0.0.0:443的问题我不理解,不知道是不是有其他可行的解决方案又不影响这两个程序的使用。

    Wu在其msn Spaces中提到:

    修改 **xamppapacheconfextrahttpd-ssl.conf ,里面有listen 433 ,将433改成别的

  • 相关阅读:
    C#线程锁使用全功略
    viewstate 与 session 区别
    Server.MapPath() 用法
    SQL Server 存储过程
    数据库索引的概念
    从C#程序中调用非受管DLLs
    [转载]C++、C#写的WebService相互调用
    解决WCF接口无法传递object参数的问题
    UTF-8,UTF-16
    js 验证字符串是否全为中文
  • 原文地址:https://www.cnblogs.com/linlf03/p/3575503.html
Copyright © 2011-2022 走看看