linux下如何完全卸载mysql数据库

在linux下开发,mysql数据库是经常用到的,在linux怎么安装卸载mysql数据库,也许可能比较痛苦,

这里通过测试实验处理怎么卸载msql数据库问题,先分享。 

a)查看系统中是否以rpm包安装的mysql

1. [root@linux ~]# rpm -qa | grep -i mysql

linux下如何完全卸载mysql数据库_第1张图片   

2. 卸载MySQL-client-community-5.0.85-0.rhel4和MySQL-server-community-5.0.85-0.rhel4
1. [root@linux ~]# rpm -e MySQL-client-community-5.0.85-0.rhel4  

2. [root@linux ~]# rpm -e MySQL-server-community-5.0.85-0.rhel4 


b)查看有没有mysql服务 
1. [root@linux ~]# chkconfig --list | grep -i mysql  
2. mysql           0:off   1:off   2:on    3:on    4:on    5:on    6:off  
删除mysql服务
1. [root@linux ~]# chkconfig --del mysql  
c)删除分散mysql文件夹
1. [root@linux ~]# whereis mysql  
2. mysql: /opt/ mysql
3. mysql:/opt/mysql-5.5.22  
分别删除
1. [root@linux lib]# rm -rf /opt/mysql/  
2. [root@linux lib]# rm -rf /opt/mysql-5.5.22
 

通过以上几步,mysql应该已经完全卸载干净了

你可能感兴趣的:(Linux系统管理)