/etc/my.cnf添加
skip-grant-tables
重启mysql
systemctl restart mysqld
连接mysql
mysql -u
执行以下语句(密码值注意替换)
update mysql.user set authentication_string=password("your_password"),plugin='mysql_native_password' where user='root';
/etc/my.cnf删除如下配置
skip-grant-tables
重启mysql
systemctl restart mysqld
重新连接登录,可正常连接