English 中文(简体)
Xampp APACHE没有工作?
原标题:Xampp s APACHE not working?
  • 时间:2012-05-25 06:16:06
  •  标签:
  • apache
  • xampp

我已经在我的笔记本电脑上安装/重新安装了100万次Xampp服务器, 但阿帕奇仍然没有运行。 首先, 它会运行, 但几分钟后它会自动停止。 我不知道冲突是什么。 自从我曾经在港口使用上遇到冲突以来, 我检查了我的 Skype, 但在此情况下, 我还没有安装 Skype 。 请告诉我如何使我的 Apache 运行成功。 请注意, 我的 Sql 运行顺利, 只有 Apache 会帮助 。 (请注意) :

P. S.. · · · · · · · · ·

当我运行我的Xampp- control 面板时, 我的Sql运行顺利, 而阿帕奇将运行一阵子, 然后在控制面板下面停下来, 它就会说apache[ 80号门 忙碌。

问题回答

导致我的系统(窗口 7) 出现这一问题的原因是 WinHTTP Web 代理自动发现服务停止运行。 在计算机管理功能的服务部分( 即从启动菜单上的计算机链接右键菜单上选择管理程序运行的应用程序), 我发现 WinHTTP 发现服务被设置为手工操作 。 我将它保留为手册, 但开始了它, 阿帕奇又重新开始工作 。

尽管我并没有改变服务启动时的《手册》性质,但我发现,在Windows重新启动后,WinHTTP服务仍在运行(这让我有点困惑,但我们确实有 ) 。 我也不清楚是什么原因导致这项服务停止在我的机器上运行(但又出现了我们! ) 。

不管怎么说,似乎让WinHTTPWeb代理自动发现服务运行对于阿帕奇运行是必要的, 所以确保它运行!

EDIT to ADD:我找到了我问题的根源:我下载了一个免费游戏,它使用Pando(Peer-to-peer文件共享应用程序)让其他人也从我的机器下载游戏(原则上,我同意),它使用TCP 端口443,阻止了阿帕奇人的运行。我想(虽然对于网络联系还不太清楚,所以不能确定)上文提到的WinHTTP网络代理自动发现服务(WinHTTP)的运行正设法分享(或者在其他情况下围绕)443号端口的使用。

打开 cmd 作为管理员( Start - & gt; “ cmd” - & gt; 右键单击 “ cmd. exe” - & gt; 运行为管理员)

类型类型类型

netstat -nab

找到那条线 上面写

TCP    0.0.0.0:80

或基本上每条以 :80 结尾的线条

See the exe that s blocking the port above the line. Terminate the associated program - if nothing else works the Task-Manager should help.

EDIT: 通常, 如果启动, IMS 通常会封锁80号港口 80 号 。 还有很多其他程序可以封锁80号港口 。 您也可以尝试

telnet localhost 80

并查看什么样的服务答案。 或者... 使用 Webbrowser 。 或者... 配置 apache 来使用不同的端口( 但谁想这样做?)

重新配置阿帕奇人,在不同的港口运行

如果您不想关闭封堵端口80的应用程序, 不妨选择这条路径。 典型的原因可能是您想要同时运行同一台机器上的阿帕奇和IIS。

To configure Apache to run on a different port, goto this path "C:xamppapacheconf" (if you install Xampp on diffrent place then navigate to this path) and open httpd.conf in notepad. Search for the following lines:

Line 1 Line 1 : Listen 80

Line 2 Line 2 : ServerName localhost:80

Change both these lines, so as to have a different number instead of 80. I have chosen 8000 instead of 80. Make sure that this is a free port, not used by any applications.

Line 1 : Listen 8000
Line 2 : ServerName localhost:8000

Save the file and run Apache from Xampp

尝试暂时禁用您的反病毒软件。 它会引起 Apache 问题。 还要检查 Apache 错误. log 文件, 看看是否记录了任何问题 。

http://en.wikipedia.org/wiki/comparison_of_WAMPs” rel=“nofollow”> 尝试一些其他WAMPs ,看看它是否是你们系统中的一个共同问题。

Skype 自动封隔端口 80

Skype 停止 Skype - 从 xampp 仪表板开始尝试缓存

如果 apache 工作 - 更改天花板设置

1) In the system tray, we click on the xampp icon. 2) Select Apache> httpd.conf 3) Make a call to Listen 80. 4) Change the number 80 next to Listen to 9080. 5) Restart XAMPP s services





相关问题
Using SimplePie with CodeIgniter and XAMPP

I am using CodeIgniter 1.7.2 with XAMPP 1.7.2 on a Windows computer. I am trying to make use of SimplePie. I followed all the instructions I could find: a copy of simplepie.inc is in my applications/...

Multiple Sites with common files

I have developed over 50 sites that all use the exact same files other than CSS and IMAGES, I currently duplicate the files each time I create a new site and upload different css and images. What ...

http server validation

I finish a litle http server, writing from scratch. I would like to be sure that my imlementation is conforme to the HTTP specifications. W3C give us tools for HTML/XML conformance, but i see nothing ...

热门标签