zoukankan      html  css  js  c++  java
  • apache no services installed 安装apache后没有服务

    【转】apache no services installed 安装apache后没有服务

    apache安装完之后,右下角的图标却是红色的。放鼠标上去的提示是:No services installed ,很显然,是由于服务没有安装。

    解决办法是:

    我的安装路径是:C:\Program Files\Apache Software Foundation\Apache2.2

    1、打开cmd定位到:C:\Program Files\Apache Software Foundation\Apache2.2\bin

    2、输入httpd.exe -k install -n apache2

    出现以下提示:

    C:\Program Files\Apache Software Foundation\Apache2.2\bin>httpd.exe -k install - n apache2 Installing the apache2 service The apache2 service is successfully installed. Testing httpd.conf.... Errors reported here must be corrected before the service can be started. httpd.exe: Could not reliably determine the server's fully qualified domain name , using 192.168.1.212 for ServerName

    解决这个问题方法:把/conf/httpd.conf文件的#ServerName 前的#去掉,再执行上面的操作。    

    再输入net start apache2

    之后我们看见了成功的信息

    httpd: Could not reliably determine the server's fully qualified domain name
    在windows下安装好apache服务器后,重新启动后,回出现上面的错误,只要把/conf/httpd.conf文件的#ServerName 前的#去掉就好了。

    按照以上的方法,仍然无法启动服务,出现以下错误提示:

    httpd.exe: Could not reliably determine the server's fully qualified domain name , using 192.168.0.220 for ServerName (OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次。 : make_sock: c ould not bind to address 0.0.0.0:8080 no listening sockets available, shutting down Unable to open logs

    这是由于80端口被占用了,把占用80端口的进程停掉就可以了。

    如何查看那个进程占用了80端口呢?

    开始--运行--cmd 进入命令提示符 输入netstat -ano 即可看到所有连接的PID 之后在任务管理器中找到这个PID所对应的程序如果任务管理器中没有PID这一项,可以在任务管理器中选"查看"-"选择列"
    经常,我们在启动应用的时候发现系统需要的端口被别的程序占用,如何知道谁占有了我们需要的端口,很多人都比较头疼,下面就介绍一种非常简单的方法 假如我们需要确定谁占用了我们的80端口
    Windows平台 在windows命令行窗口下执行: C:\>netstat -aon|findstr "80" TCP     127.0.0.1:80         0.0.0.0:0               LISTENING       2448 看到了吗,端口被进程号为2448的进程占用,继续执行下面命令: C:\>tasklist|findstr "2448"
    thread.exe                     2016 Console                 0     16,064 K 很清楚吧,thread占用了你的端口,Kill it 如果第二步查不到,那就开任务管理器,看哪个进程是2448,然后杀之即可。

    文章来源:http://hi.baidu.com/panqijun2006/item/d28bcd1d5f68f9787a5f2556

  • 相关阅读:
    [JSOI2007][BZOJ1030] 文本生成器|AC自动机|动态规划
    [NOI2014][BZOJ3670] 动物园|KMP
    [HAOI2010][BZOJ2427] 软件安装|tarjan|树型dp
    [JSOI2008][BZOJ1017] 魔兽地图DotR|树型dp
    [JLOI2014][BZOJ3631] 松鼠的新家|树上倍增LCA|差分
    [SDOI2010][BZOJ1975] 魔法猪学院|A*|K短路
    [BZOJ1251] 序列终结者|Splay
    hdu 2141 Can you find it?
    hdu 3152 Obstacle Course
    hdu 2680 Choose the best route
  • 原文地址:https://www.cnblogs.com/shouwu/p/2746120.html
Copyright © 2011-2022 走看看