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可以用电脑控制面板-添加删除程序找到要卸载的卸载如果不行还可以直接使用腾讯电脑管家来一键卸载步骤:打开腾讯电脑管家找到软件管理然后卸载软件再找到你想要的软件卸载就行了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)