# /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端口的进程,检查该进程是否能停用.…
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…
以前遇到一个问题: 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…
错误信息: 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,以实…
 [2019-11-11 11:42:25 @21371.0] WARNING swSocket_bind(:434): bind(0.0.0.0:9501) failed, Error: Address already in use[98] In Swoole.php line 74:                                                                                   failed to listen server…
在apache配置文件里面加了AuthType PFApacheAgent,,结果重启apache的时候歇菜了,,总是报上面的错, <Directory />AllowOverride noneOptions NoneAuthType PFApacheAgentRequire all granted </Directory> 网上搜索有说,在Apache2.4版本中,提供了由mod_authz_host支持的新的访问控制配置语法.而2.2版本中的Order.Allow等命令在新版本…