linux 查看http/apache服务是否安装并卸载

查看是否安装了apache服务?

apachectl -v  

httpd -v  

这里写图片描述

出现如图所示, 表示已经安装

用rpm -qa|grep httpd 和 rpm -aq| grep apache
都没有, 想了下, 算了, 直接rm -rf apache路径所有的文件夹,

接下来查看,httpd占用了哪些端口
netstat -anp | grep 80

查看被占用程序的端口
ps -ef | grep httpd

用kill -9 杀死;

用httpd -v 检测下;

-bash: /usr/sbin/httpd: No such file or directory

OK 。搞定!

如果有同学觉的,这样有问题或者有更好的办法请留言。

如果觉得文章真心好, 请打赏下我吧http://blog.csdn.net/assassinsshadow/article/details/76086401

你可能感兴趣的:(linux,apache,Linux)