码迷,mamicode.com
首页 > 数据库 > 详细

Linux 完全卸载mysql

时间:2014-07-29 15:37:29      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:linux   mysql   卸载   

linux 怎么完全卸载mysql数据库

在linux下开发,mysql数据库是经常用到的,对于初学者来说,在linux怎么安装卸载mysql数据库,也许可能比较痛苦,这里简单介绍下,怎么卸载msql数据库。

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


[plain] view plaincopyprint?

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

  2. MySQL-server-5.1.49-1.glibc23 

  3. MySQL-client-5.1.49-1.glibc23 

卸载MySQL-server-5.1.49-1.glibc23和MySQL-client-5.1.49-1.glibc23

[plain] view plaincopyprint?

  1. [root@linux ~]# rpm -e MySQL-client-5.1.49-1.glibc23 

  2. [root@linux ~]# rpm -e MySQL-server-5.1.49-1.glibc23 

b)查看有没有mysql服务

 


[plain] view plaincopyprint?

  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服务

[plain] view plaincopyprint?

  1. [root@linux ~]# chkconfig --del mysql 

c)删除分散mysql文件夹

[plain] view plaincopyprint?

  1. [root@linux ~]# whereis mysql 

  2. mysql: /usr/lib/mysql /usr/share/mysql 

分别删除

[plain] view plaincopyprint?

  1. [root@linux lib]# rm -rf /usr/lib/mysql/ 

  2. [root@linux lib]# rm -rf /usr/share/mysql 


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


Linux 完全卸载mysql,布布扣,bubuko.com

Linux 完全卸载mysql

标签:linux   mysql   卸载   

原文地址:http://8474832.blog.51cto.com/8464832/1531854

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!