centos如何解除安裝apache?
在CentOS系統中卸載Apache的方法有很多種,這裡有自備的apaceh與我們安裝的apache,下面我來給各位同學介紹在CentOS卸載Apache及碰到的問題解決方案。
centos卸載apache的方法:
首先關閉httpd服務
/etc/init.d/httpd stop
列出httpd相關套件
rpm -qa|grep httpd
列出套件如下
httpd-2.2.3-63.el5.centos.1 httpd-manual-2.2.3-63.el5.centos.1
卸載套件
rpm -e httpd-manual-2.2.3-63.el5.centos.1 rpm -e system-config-httpd-1.3.3.3-1.el5
這樣就卸載完成了
##卸載自帶Apache
1、# rpm - qa|grep httpd,請參閱與httpd相關軟體包。httpd-2.2.3-11.el5_2.centos.4
# rpm -e httpd
error: Failed dependencies: httpd >= 2.2.0 is needed by (installed) gnome-user-share-0.10-6.el5.i386
#rpm -e gnome-user-share
# rpm -e httpd #可以使用参数–nodeps的意思就是不管各个程序包间的依赖关系。 #rpm -e –nodeps httpd //这样不需要删除gnome-user-share了
Apache使用教學專欄!
以上是centos如何解除安裝apache的詳細內容。更多資訊請關注PHP中文網其他相關文章!