关于“CentOS上装了Mysql如何清除干净?”的知识有一些人不是很理解,对此小编给大家总结了相关内容,具有一定的参考借鉴价值,而且易于学习与理解,希望能对大家有所帮助,有这个方面学习需要的朋友就继续往下看吧。
#################CentOS7下MySQL的卸载####################
1:查看MySQL是否安装:
方式1:
[plain] view plain
copy
- [root@localhost usr]# yum list installed mysql*
- Loaded plugins: fastestmirror
- Loading mirror speeds from cached hostfile
- * base: mirrors.yun-idc.com
- * extras: mirror.neu.edu.cn
- * updates: mirrors.yun-idc.com
- Installed Packages
- MySQL-client.x86_64 5.6.27-1.el6 installed
- MySQL-devel.x86_64 5.6.27-1.el6 installed
- MySQL-server.x86_64 5.6.27-1.el6 installed
- [root@localhost usr]#
方式2( -i :不区分大小写):
[plain] view plain
copy
- [root@localhost usr]# rpm -qa | grep -i mysql
- MySQL-server-5.6.27-1.el6.x86_64
- MySQL-client-5.6.27-1.el6.x86_64
- MySQL-devel-5.6.27-1.el6.x86_64
- [root@localhost usr]#
2:卸载MySQL:
卸载1:
[plain] view plain
copy
- [root@localhost usr]# yum remove mysql mysql-server mysql-libs compat-mysql51
- [root@localhost usr]# rm -rf /var/lib/mysql
- [root@localhost usr]# rm /etc/my.cnf
如果装了mysql-devel(其他一样add command),卸载为:
[plain] view plain
copy
- [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
- [root@localhost mysql]# rpm -aq | grep -i mysql
- MySQL-server-5.6.27-1.el6.x86_64
- MySQL-client-5.6.27-1.el6.x86_64
- MySQL-devel-5.6.27-1.el6.x86_64
- [root@localhost mysql]# rpm -e MySQL-server-5.6.27-1.el6.x86_64
- [root@localhost mysql]# rpm -e MySQL-client-5.6.27-1.el6.x86_64
- [root@localhost mysql]# rpm -e MySQL-devel-5.6.27-1.el6.x86_64
- [root@localhost rc.d]# cd /var/lib/
- [root@localhost lib]# rm -rf mysql/
注:删除MySQL数据库目录(关键) ,否则password不更新(默认安装,如果自定义安装路径和链接路径ln -s ……请删除。)
rm -rf /var/lib/mysql
卸载3:
[plain] view plain
copy
- [root@localhost usr]# whereis mysql
- mysql: /usr/lib64/mysql
- [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
- [root@localhost usr]# rm –rf /usr/my.cnf
- [root@localhost usr]# rm -rf /root/.mysql_sercret
卸载5(自启服务):
[plain] view plain
copy
- [root@localhost usr]# chkconfig --list | grep -i mysql
- [root@localhost usr]# chkconfig --del mysqld
[plain] view plain
copy
- 此处删除看自己设置:mysql/mysqld
现在大家对于CentOS上装了Mysql如何清除干净?的内容应该都有一定的认识了吧,希望这篇能对大家有所帮助。最后,想要了解更多,欢迎关注群英网络,群英网络将为大家推送更多相关的文章。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢