原文地址 >> https://blog.7core.cn/thread-27.htm
>>实验环境 - 系统Centos7.5 软件Mysql5.7.24
编辑my.cnf允许空密码登录
[root@7Core ~]# vi /etc/my.cnf
#在[mysqld]下加入一行
skip-grant-tables=1
重新启动Mysql服务
[root@7Core ~]# systemctl restart mysqld.service
使用Root登录数据库、使用mysql数据库、修改root密码、退出数据库
[root@7Core ~]# mysql -u root
mysql> use mysql;
mysql> update user set authentication_string = password('新密码'),password_last_changed=now() where user='root';
mysql> exit;
再次打开my.cnf,将skip-grant-tables=1删掉,保存退出
[root@7Core ~]# vi /etc/my.cnf
#删除skip-grant-tables=1
重启Mysql服务
[root@7Core ~]# systemctl restart mysqld.service
网友评论