a)查看系統(tǒng)中是否以rpm包安裝的mysql
[plain]
view plaincopy[root@linux ~]# rpm -qa | grep -i mysql
MySQL-server-5.1.49-1.glibc23
MySQL-client-5.1.49-1.glibc23
卸載MySQL-server-5.1.49-1.glibc23和MySQL-client-5.1.49-1.glibc23
[plain]
view plaincopy[root@linux ~]# rpm -e MySQL-client-5.1.49-1.glibc23
[root@linux ~]# rpm -e MySQL-server-5.1.49-1.glibc23
b)查看有沒有mysql服務
[plain]
view plaincopy[root@linux ~]# chkconfig --list | grep -i mysql
mysql 0:off 1:off 2:on 3:on 4:on 5:on 6:off
刪除mysql服務
[plain]
view plaincopy[root@linux ~]# chkconfig --del mysql
c)刪除分散mysql文件夾
[plain]
view plaincopy[root@linux ~]# whereis mysql
mysql: /usr/lib/mysql /usr/share/mysql
分別刪除
[plain]
view plaincopy[root@linux lib]# rm -rf /usr/lib/mysql/
[root@linux lib]# rm -rf /usr/share/mysql
通過以上幾步,mysql應該已經(jīng)完全卸載干凈了
如果發(fā)現(xiàn)包有沖突,則執(zhí)行以下命令
yum -y remove mysql-libs-*
本站僅提供存儲服務,所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權內(nèi)容,請
點擊舉報。