linux删除自带apache服务
时间:2014-08-14 23:48 来源:linux.it.net.cn 作者:it
1、[root@localhost etc]# rpm -qa|grep httpd,查看与httpd相关软件包。
httpd-2.2.3-11.el5_2.centos.4
2、然后删除httpd:
[root@localhost etc]# rpm -e httpd
出现问题:
error: Failed dependencies:
httpd >= 2.2.0 is needed by (installed) gnome-user-share-0.10-6.el5.i386
3、还有一个相关的软件包没有删除,清除之,即:
[root@localhost etc]# rpm -e gnome-user-share
4、再删除httpd
[root@localhost etc]# rpm -e httpd
注:centos版本:5.5
(责任编辑:IT)
1、[root@localhost etc]# rpm -qa|grep httpd,查看与httpd相关软件包。 httpd-2.2.3-11.el5_2.centos.4 2、然后删除httpd: [root@localhost etc]# rpm -e httpd 出现问题: error: Failed dependencies: httpd >= 2.2.0 is needed by (installed) gnome-user-share-0.10-6.el5.i386 3、还有一个相关的软件包没有删除,清除之,即: [root@localhost etc]# rpm -e gnome-user-share 4、再删除httpd [root@localhost etc]# rpm -e httpd 注:centos版本:5.5 (责任编辑:IT) |