【Redhat】修改MySQL密码8.0以及以上

1、修改my.cnf 配置文件

      sudo vim /etc/my.cnf

      【Redhat】修改MySQL密码8.0以及以上

      在[mysqld]下添加 skip-grant-tables

     【Redhat】修改MySQL密码8.0以及以上

2、启动mysql,使用命令 systemclt start mysqld

3、登陆 mysql -uroot 回车

4、执行语句

    (1)flush privileges;

    (2)create user ‘root’@’%’ identified by ‘newpasswd’;

             flush privileges;

    (3)grant all privileges on *.* to ‘root’@’%’ with grant option;

             flush privileges;

    (4)alter user ‘root’@’%’ identified with mysql_native_password by 'newpasswd';

             flush privileges;

5、修改 my.cnf 注释掉 skip-grant-tables

6、重启服务:systemclt restart mysqld

7、用其他机器连接数据库试试!(记得关闭防火墙)