# /etc/init.d/httpd startStarting 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:80no listening sockets available, shutting downUnable to open lo…
说明80端口被用 终端:  ps -ef|grep httpd察看占用的进程或者用netstat -lnp|grep 80 找到后kill掉,如果都不行那么再试试以下方法(试过可以) 终端输入: find / -name ports.conf /etc/apache2/ports.conf 输入: vim '/etc/apache2/ports.conf' 键入‘i’即可修改, 将listen 80 这一句注释掉 按‘Esc’退出编辑状态 按‘:wq’,保存并退出(‘:q’不保存退出,‘:q!’…
转: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.(…
Apache启动时报错:(98)Address already in use: make_sock: could not bind to... # /etc/init.d/httpd start Starting httpd: ()Address already ()Address already no listening sockets available, shutting down Unable to open logs [FAILED] 1.查找占用80端口的进程,检查该进程是否能停用.…
Tomcat启动报错:StandardServer.await: create[8005] java.net.BindException: Cannot assign requested address 出现这个问题,网上99%都说是端口问题,但是也有几个其他情况. 1.端口被占用 1).如果使用ecplipse和jbuilder里的Tomcat时,遇到像下面这样的问题.严重: StandardServer.await: create[8005]:   java.net.BindExceptio…
以前遇到一个问题: 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…
**********************************************************处理办法:# 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…
elaseticsearch启动报错 [es1] uncaught exception in thread [main] org.elasticsearch.bootstrap.StartupException: BindTransportException[Failed to bind to [9300-9400]]; nested: BindException[Cannot assign requested address]; at org.elasticsearch.bootstrap.E…
错误信息: httpd.exe: Syntax error on line 178 of D:/Program Files/httpd-2.4.20-x64-vc14-r2 /Apache24/conf/httpd.conf: Cannot load D:/Program Files/php-5.5.37-Win32-VC11-x6 4/php5apache2_2.dll into server: \xd5\xd2\xb2\xbb\xb5\xbd\xd6\xb8\xb6\xa8\xb5\xc 4…
Windows启动Apache时报错 he requested operation has failed 有可能80端口被占或者项目路径不存在等 首先找到问题原因 cmd--命令端--切换到apache的bin目录,这里是D:/ApacheServer/Apache/bin 执行如下命令 d: cd ApacheServer\Apache\bin httpd.exe -w -n "apache2.4" -k start apache2.4为apache服务名称,有的为apache,以实…