linux卸载mysql

linux卸载mysql,第1张

linux下卸载mysql 如果是 rpm 安装的话 可以用 rpm -e mysql-server 若果是rhel 的 可以用 yum remove mysql 删除MySQL安装文件夹(data)与可

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了。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8381581.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-15
下一篇 2023-04-15

发表评论

登录后才能评论

评论列表(0条)

保存