Apache 未从 XAMPP 控制面板运行(错误:Apache 意外关闭.这可能是由于端口被阻止) [英] Apache is not running from XAMPP Control Panel ( Error: Apache shutdown unexpectedly. This may be due to a blocked port)

查看:24
本文介绍了Apache 未从 XAMPP 控制面板运行(错误:Apache 意外关闭.这可能是由于端口被阻止)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经在 Windows 7 上成功安装了 XAMPP (xampp-win32-1.8.2-0-VC9-installer.exe).但不幸的是,在从 XAMPP 控制面板运行 Apache 时发现了以下错误:

I have installed XAMPP (xampp-win32-1.8.2-0-VC9-installer.exe) on Windows 7 successfully. But unfortunately, the following error was found during running Apache from XAMPP Control Panel:

5:38:38 PM  [Apache]    Error: Apache shutdown unexpectedly.
5:38:38 PM  [Apache]    This may be due to a blocked port, missing dependencies, 
5:38:38 PM  [Apache]    improper privileges, a crash, or a shutdown by another method.
5:38:38 PM  [Apache]    Press the Logs button to view error logs and check
5:38:38 PM  [Apache]    the Windows Event Viewer for more clues
5:38:38 PM  [Apache]    If you need more help, copy and post this
5:38:38 PM  [Apache]    entire log window on the forums

推荐答案

这个问题有很多可能的答案.最常见和最有可能的情况是您正在运行另一个阻止端口 80 或 443 的程序.如果您安装了 Skype,那么您就发现了问题!将 apache 的端口设置更改为 81,apache 就可以工作了.有一个很好的教程要检查这一点,您可以通过单击开始菜单打开命令行,然后输入cmd",然后输入命令

There are many possible answers for this problem. The most common and most likely is that you're running another program which is blocking port 80 or 443. If you've installed Skype, then you've found your problem! Change apache's port settings to 81 and apache will work. There's a good tutorial on that To check this you can open up your command line by clicking the start menu, and typing 'cmd', and enter the command

    netstat -nab

这将返回一个与此模式有点相似的程序列表

this wil return a list of programs that will vaguely resemble this pattern

    [someprogram.exe]
    UDP     [fe80::numbers:numbers:numbers:numbers%numbers]:portnumber

您需要找到以 :80 结尾的一行(或多行)并终止它们以启动 apache.如果没有以 :80 结尾的行,则您可以执行更多操作.

You need to find a line (or lines) ending in :80 and terminate them in order to start apache. If there is no line ending in :80, there are more things you can do.

首先,导航到 xampp 的目录(默认为 c:\xampp)并双击 apache_start.bat.这将打开一个命令行并返回有关 apache 无法运行的更详细的错误信息.大多数情况下,通过编辑您的 httpd.conf 或 httpd-ssl.conf 文件来查找您可能创建的语法错误.如果您编辑过它并且是新用户,这很容易做到.

First, navigate to xampp's directory (default is c:\xampp) and double click apache_start.bat. This will open up a comand line and return more detailed errors about why apache can't run. Mostly, be looking for syntax errors that you could've created by editing your httpd.conf, or httpd-ssl.conf files. This is very easy to do if you've edited it and are a new user.

如果仍然失败,您最后的希望是通过单击 xampp 控制面板中 apache 行中的日志选项卡并单击错误日志来检查 apache 错误日志.

If still this fails, your last hope is to check the apache error log by clicking on the logs tab in apache's row in the xampp control panel and clicking error log.

如果这些都不起作用,请不要放弃!你明白了!

If none of this works, don't give up! You got this!

如果你改变了apache的端口,你还必须进入httpd.conf(位于xampp/apache/conf)和184行附近,替换

If you change the port of apache, you will also have to go into httpd.conf (located in xampp/apache/conf) and near line 184, replace

ServerName localhost:80

ServerName localhost:81

也可以在 localhost 的 url 中指定端口 81,即

It is also possible to specify port 81 in the url of your localhost, i.e.

本地主机:81/my_project.php

localhost:81/my_project.php

这篇关于Apache 未从 XAMPP 控制面板运行(错误:Apache 意外关闭.这可能是由于端口被阻止)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆