发布网友 发布时间:2022-04-20 17:39
共2个回答
热心网友 时间:2022-04-07 18:17
linux卸载mysql数据库的步骤:
第一步:查看系统中是否以rpm包安装的mysql
[plain] view plaincopyprint?
[root@linux ~]# rpm -qa | grep -i mysql
MySQL-server-5.1.49-1.glibc23
MySQL-client-5.1.49-1.glibc23
第二步:卸载MySQL-server-5.1.49-1.glibc23和MySQL-client-5.1.49-1.glibc23
[plain] view plaincopyprint?
[root@linux ~]# rpm -e MySQL-client-5.1.49-1.glibc23
[root@linux ~]# rpm -e MySQL-server-5.1.49-1.glibc23
第三步:查看有没有mysql服务
[plain] view plaincopyprint?
[root@linux ~]# chkconfig --list | grep -i mysql
mysql 0:off 1:off 2:on 3:on 4:on 5:on 6:off
第四步:删除mysql服务
[plain] view plaincopyprint?
[root@linux ~]# chkconfig --del mysql
第五步:删除分散mysql文件夹
[plain] view plaincopyprint?
[root@linux ~]# whereis mysql
mysql: /usr/lib/mysql /usr/share/mysql
第六步:分别删除
[plain] view plaincopyprint?
[root@linux lib]# rm -rf /usr/lib/mysql/
[root@linux lib]# rm -rf /usr/share/mysql
通过以上步骤就可以卸载干净mysql了。
热心网友 时间:2022-04-07 19:35
卸载mysql1、查找以前是否装有mysql