• CentOS下MySQL的彻底卸载


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

    1:查看MySQL是否安装:

     方式1:

    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  :不区分大小写):

    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]#   
    • [root@localhost usr]# rm -rf /var/lib/mysql  
    • [root@localhost usr]# rm /etc/my.cnf  

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

    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选择一种(此处为介绍):}:
    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:
    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
    1. [root@localhost usr]# rm –rf /usr/my.cnf  
    2. [root@localhost usr]# rm -rf /root/.mysql_sercret   
    卸载5(自启服务):
    1. [root@localhost usr]# chkconfig --list | grep -i mysql  
    2. [root@localhost usr]# chkconfig --del mysqld  
      1. 此处删除看自己设置:mysql/mysqld  
  • 相关阅读:
    第十三周总结
    第十二周总结
    团队冲刺第十五天-KeepRunningAPP
    团队第一阶段冲刺评价
    团队项目KeepRunning第一阶段成果展示
    团队冲刺第十四天-KeepRunningAPP
    第十一周总结
    团队冲刺第十三天-KeepRunningAPP
    CVPR2018关键字生成词云图
    Delphi APP 開發入門(八)SQLite資料庫
  • 原文地址:https://www.cnblogs.com/xuyatao/p/7999446.html
Copyright © 2020-2023  润新知