[root@localhost src]# rpm -e --nodeps MySQL-server-community-5.1.46-1.rhel5
[root@localhost src]# rpm -e --nodeps MySQL-cilent-community-5.1.46-1.rhel5
安装mysql的rpm包,如何卸载干净。
rpm -qpl MySQL-server-community-5.1.46-1.rhel5 确认mysql rpm的安装情况是否安装,
rpm -qa|grep -i MySQL 来查找MySQL的安装位置。
最后通过
rpm -e --nodeps MySQL-cilent-community-5.1.46-1.rhel5
rpm -e --nodeps MySQL-server-community-5.1.46-1.rhel5
记住两个命令都需要执行。
完成以后,可以通过find / -name mysql
来查看是否已卸载完毕。
http://ronaldbradford.com/blog/the-case-against-using-rpm-packaging-for-mysql-2010-08-11/
一般尽量不使用rpm包安装。
阅读(2014) | 评论(0) | 转发(0) |