mysql完全卸载

转载自(http://blog.csdn.net/typa01_kk/article/details/49057073)

#################CentOS7下MySQL的卸载####################

1:查看MySQL是否安装:

 方式1:

[plain] view plain copy
 
  1. [root@localhost usr]# yum list installed mysql*  
  2. Loaded plugins: fastestmirror  
  3. Loading mirror speeds from cached hostfile  
  4.  * base: mirrors.yun-idc.com  
  5.  * extras: mirror.neu.edu.cn  
  6.  * updates: mirrors.yun-idc.com  
  7. Installed Packages  
  8. MySQL-client.x86_64   5.6.27-1.el6    installed  
  9. MySQL-devel.x86_64    5.6.27-1.el6    installed  
  10. MySQL-server.x86_64   5.6.27-1.el6    installed  
  11. [root@localhost usr]#  

 

方式2( -i  :不区分大小写):

[plain] view plain copy
 
  1. [root@localhost usr]# rpm -qa | grep -i mysql  
  2. MySQL-server-5.6.27-1.el6.x86_64  
  3. MySQL-client-5.6.27-1.el6.x86_64  
  4. MySQL-devel-5.6.27-1.el6.x86_64  
  5. [root@localhost usr]#   

2:卸载MySQL:

卸载1:

[plain] view plain copy
 
  1. [root@localhost usr]# yum remove mysql mysql-server mysql-libs compat-mysql51  
  2. [root@localhost usr]# rm -rf /var/lib/mysql  
  3. [root@localhost usr]# rm /etc/my.cnf  

如果装了mysql-devel(其他一样add command),卸载为:

[plain] view plain copy
 
  1. [root@Tony_ts_tian init.d]# yum remove mysql mysql-devel mysql-server mysql-libs compat-mysql51  

注(例如):

mysql-5.5.39-1.el6.remi.x86_64
mysql-libs-5.5.39-1.el6.remi.x86_64
compat-mysql51-5.1.54-1.el6.remi.x86_64
mysql-server-5.5.39-1.el6.remi.x86_64
卸载2{继续,1,2选择一种(此处为介绍):}:
[plain] view plain copy
 
  1. [root@localhost mysql]# rpm -aq | grep -i mysql  
  2. MySQL-server-5.6.27-1.el6.x86_64  
  3. MySQL-client-5.6.27-1.el6.x86_64  
  4. MySQL-devel-5.6.27-1.el6.x86_64  
  5. [root@localhost mysql]# rpm -e MySQL-server-5.6.27-1.el6.x86_64  
  6. [root@localhost mysql]# rpm -e MySQL-client-5.6.27-1.el6.x86_64  
  7. [root@localhost mysql]# rpm -e MySQL-devel-5.6.27-1.el6.x86_64  
  8. [root@localhost rc.d]# cd /var/lib/  
  9. [root@localhost lib]# rm -rf mysql/  
注:删除MySQL数据库目录(关键) ,否则password不更新(默认安装,如果自定义安装路径和链接路径ln -s ……请删除。)
  rm -rf /var/lib/mysql
卸载3:
[plain] view plain copy
 
  1. [root@localhost usr]# whereis mysql  
  2. mysql: /usr/lib64/mysql  
  3. [root@localhost usr]# rm -rf /usr/lib64/mysql  
注:find / -name mysql
注:清空相关mysql的所有目录以及文件和其他配置和设置等。如果有,则删除。也必须考虑其他软件不去影响。
rm -rf /usr/lib/mysql
rm -rf /usr/share/mysql
卸载4:
[plain] view plain copy
 
  1. [root@localhost usr]# rm –rf /usr/my.cnf  
  2. [root@localhost usr]# rm -rf /root/.mysql_sercret   
卸载5(自启服务):
[plain] view plain copy
 
  1. [root@localhost usr]# chkconfig --list | grep -i mysql  
  2. [root@localhost usr]# chkconfig --del mysqld  
[plain] view plain copy
 
  1. 此处删除看自己设置:mysql/mysqld   
posted @ 2017-12-01 15:45  宇的季节  阅读(668)  评论(0编辑  收藏  举报