a)查看系统中是否以rpm包安装的mysql
[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
[root@linux ~]# rpm -e MySQL-client-5.1.49-1.glibc23 [root@linux ~]# rpm -e MySQL-server-5.1.49-1.glibc23b)查看有没有mysql服务
[root@linux ~]# chkconfig --list | grep -i mysql mysql 0:off 1:off 2:on 3:on 4:on 5:on 6:off删除mysql服务
[root@linux ~]# chkconfig --del mysql
[root@linux ~]# whereis mysql mysql: /usr/lib/mysql /usr/share/mysql分别删除
[root@linux lib]# rm -rf /usr/lib/mysql/ [root@linux lib]# rm -rf /usr/share/mysql通过以上几步,mysql应该已经完全卸载干净了
转载于:https://blog.51cto.com/693340562/1243330