zoukankan      html  css  js  c++  java
  • apache启动报错(98)Address already in use: make_sock: could not bind to...

    /etc/init.d/httpd start
    Starting httpd: (98)Address already in use: make_sock: could not bind to address [::]:80
    (98)Address already in use: make_sock: could not bind to address 0.0.0.0:80
    no listening sockets available, shutting down
    Unable to open logs
                                                               [FAILED]

     

    netstat -lnp|grep 80

    tcp        0      0 192.168.180.68:61027        0.0.0.0:*                   LISTEN      6289/oproxyd        
    tcp        0      0 :::80                       :::*                        LISTEN      846/httpd           
    tcp        0      0 ::ffff:192.168.180.68:7001 :::*                        LISTEN      32015/java         

    找到pid 846

    ps 846         查看
    kill -9 846    杀掉

    ./apachectl start

    启动成功

    *****************************************************************************
    处理办法:
    # ps -aux | grep http
    Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.7/FAQ
    root     12079 0.0 0.0 61164   720 pts/1    S+   16:06   0:00 grep http
    # ps -aux | grep apache
    Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.7/FAQ
    apache   10820 0.0 0.0   2044   600 ?        Ss   Jan01   0:04 bash
    root     12081 0.0 0.0 61160   716 pts/1    S+   16:06   0:00 grep apache
    # kill -9 10820
    /etc/init.d/httpd start
    Starting httpd:                                            [ OK ]
    /etc/init.d/httpd restart
    Stopping httpd:                                            [ OK ]
    Starting httpd:                                            [ OK ]
    **********************************************************
  • 相关阅读:
    poj 3253超时
    poj 3617输出格式问题
    dfs的返回条件
    hdu1010感想
    2018.7.19训练赛总结
    2018.7.12训练赛 -G
    汇编实验16 编写包含多个功能子程序的中断例程——浅谈直接地址表
    新的一年来了,先看一看自己的编程能力吧!
    汇编实验15:安装新的int 9中断例程
    汇编实验14:访问CMOS RAM
  • 原文地址:https://www.cnblogs.com/timssd/p/4184861.html
Copyright © 2011-2022 走看看