忘记密码,怎么在mac卸载mysql

忘记密码,怎么在mac卸载mysql,第1张

1.修改配置文件 my.cnf 来跳过登录密码进入数据库

[root@localhost /]# vim /etc/my.cnf

在 [mysqld] 段中加上:skip-grant-tables

2.然后登录数据库时就不需要密码了

3.进入 mysql 命令行之后 执行:

use mysql

update user set password=password('123456') where user='root' and host='localhost'

给 root 用户添加密码 123456

4.然后执行:

update user set password=password('123456') where user='root' and host='%'

将远程连接的密码设置为 123456

然后就正常卸载就可以

卸载mysql可以用电脑控制面板-添加删除程序找到要卸载的卸载如果不行还可以直接使用腾讯电脑管家来一键卸载

步骤:打开腾讯电脑管家找到软件管理然后卸载软件再找到你想要的软件卸载就行了。


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存