在启动apache服务的时候(service httpd start 启动)出现这个问题. 出现这个问题,是因为APACHE的默认端口被占用的缘故.解决方法就是把这个端口占用的程序占用的端口去掉. 使用命令:netstat -lnp|grep 80  查看80端口使用 如:tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      26703/apache2 kill -9 26703杀死这个进程…
**********************************************************处理办法:# ps -aux | grep httpWarning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.7/FAQroot     12079 0.0 0.0 61164   720 pts/1    S+   16:06   0:00 grep http# ps -aux | grep a…
我们常常在执行 httpd –k restart 重启Apache时报错提示: (OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次.  : AH00072: make_sock: could not bind to address 0.0.0.0:80AH00451: no listening sockets available, shutting downAH00015: Unable to open logs 如图: 解决方法: 直接干掉一个httpd.exe然后再…
以前遇到一个问题: sudo /etc/init.d/apache2 start * Starting web server apache2 apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName ()Address already no listening sockets available, shutting down Unab…
在apache中绑定非http标准端口时,一直出现如下的错误提示: [root@localhost ~]# /etc/init.d/httpd start Starting httpd: (13)Permission denied: make_sock: could not bind to address 0.0.0.0:888 no listening sockets available, shutting down Unable to open logs [FAILED] 解决方案: 增加s…
转:Apache启动报错:could not bind to address [::]:443 解决办法 安装Apache服务器的时候,报如下错误: Installing the 'apache' service The 'apache' service is successfully installed.Testing httpd.conf....Errors reported here must be corrected before the service can be started.(…
想建立一个测试用的虚拟主机,遇到了这个问题:[root@localhost html]# service httpd startStarting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using localhost.termwikidev for ServerName(13)Permission denied: make_sock: could not bind t…
ubuntu上安装Apache2时出现错误 Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80 端口被占用造成 在root权限下键入命令: # netstat -lnp | grep 80 从图中可以看出nginx占用了进程 键入命令 #pkill -9 nginx 杀死nginx的所有进程 再次启动Apache成功…
(98)address already in use: ah00072: make_sock: could not bind to address 0.0.0.0:80 问题描述: 80端口已经被占用,导致启动不了 解决思路: 一种是比较简单的情况,查看80端口进程号,然后kill -9 该进程号关闭占用该80端口的进程,然后重启即可 另一种是查询不到80端口被占用,但是出现这样的提示,我困惑很久,最后是参考该文得到的思路https://www.digitalocean.com/communit…
dubbo could not get local host ip address will use 127.0.0.1 instead 查看hostname localhost:spring wlst$ hostname localhost 修改hosts文件 [root@iZ2zeahb6slaiu3227i8r7Z ~]# vi /etc/hosts 前:内网IP  后:hostname…