如果apache的配置文件httpd.conf搞错了,启动时只会提示the requested operation has failed。可以用命令行模式启动apache,并带上参数,apache会提示你哪句有误,然后就可以针对性的解决,命令如下:
- httpd.exe -w -n "Apache2" -k start
linux下的apache启动、停止命令:
- /etc/init.d/apache2 start
- /etc/init.d/apache2 stop
某些情况下service apache2 restart不好用时,可以尝试下这2种方法 |