欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MySql8.0以上版本正确修改ROOT密码的方法

程序员文章站 2022-07-22 19:49:43
部署环境: 安装版本red hat cent 7.0 mysql 版本 8.0.2.0 成功部署完毕后出现故障情况: 1.   &nb...

部署环境:

安装版本red hat cent 7.0

mysql 版本 8.0.2.0

成功部署完毕后出现故障情况:

1.      正常启动mysql服务后,敲linux中root账户和密码进入不去。

MySql8.0以上版本正确修改ROOT密码的方法

2.      从/etc/my.cnf 配置文件中加入skip-grant-table后正常登陆,但是不能创建用户等多操作

MySql8.0以上版本正确修改ROOT密码的方法

MySql8.0以上版本正确修改ROOT密码的方法

总结来说:

想进去mysql后不能操作多指令,操作多指令又不能进去mysql,死循环

挖坑环节:

网上找了很多办法,首先加入skip-grant-table.后进去刷新权限表,重启服务,不用密码的root进去,在改root密码后,重新刷新权限表。方法试了很多个都不对。修改root环节始终不对。

MySql8.0以上版本正确修改ROOT密码的方法

给了我提醒,是不是mysql8.0以上的版本密码策略和更改语法不对了。

重新操作一遍:

#vim /etc/my.cnf

【mysql】

添加skip-grant-table

#systemctl stop mysqld.service
#systemctl start mysqld.service
#mysql –u root

[敲回车进入]

mysql> flush privileges;
query ok, 0 rows affected (0.00 sec)
mysql> alter user 'root'@'localhost'identified by 'mynewpass';
error 1819 (hy000): your password does notsatisfy the current policy requirements
mysql> alter user 'root'@'localhost'identified by 'mynewpass@123';
error 1396 (hy000): operation alter userfailed for 'root'@'localhost'
mysql> alter user'root'@'%' identified by 'mynewpass@123'; 

 【mysql8.0以上密码策略限制必须要大小写加数字特殊符号,我之前用mysqladmin,set,update,参考修改root密码的前人:在文章末尾有介绍。

query ok, 0 rows affected (0.05 sec)

退出,把skip-grant-table语句删除,重新启动数据库

[root@localhost ~]# vim /etc/my.cnf【删除省略】
[root@localhost ~]# systemctl stopmysqld.service
[root@localhost ~]# systemctl startmysqld.service
[root@localhost ~]# mysql -uroot –p
mysql> create user dbadmin@localhost 
 -> identified by 'pwd123';
error 1819 (hy000): your password does notsatisfy the current policy requirements
mysql> create user dbadmin@localhost 
 -> identified by 'pwd123';
error 1819 (hy000): your password does notsatisfy the current policy requirements
mysql> create user dbadmin@localhost 
 -> identified by 'pwd@123';
error 1819 (hy000): your password does notsatisfy the current policy requirements
mysql> create user dbadmin@localhost 
 -> identified by 'mynewpass@123';
query ok, 0 rows affected (0.10 sec)

【可以正常创建用户,密码安全性还是要求着设置复杂度要高一些】

MySql8.0以上版本正确修改ROOT密码的方法

第二使用sql工具进行远程连接,这里使用sqlyog进行远程连接。

  一般来说,直接用root用户的账号密码去连接是不行,即时密码正确。

mysql 8.0内新增加mysql_native_password函数,通过更改这个函数密码来进行远程连接。

2.1 第一可以更改root用户的native_password密码

mysql> alter user 'root'@'%' identified with mysql_native_password by'mypass@123';
query ok, 0 rows affected (0.15 sec)

MySql8.0以上版本正确修改ROOT密码的方法

2.2 第二可以用root用户登录新增加用户,进行授权再远程连接。

mysql> create user 'super'@'%'identified by 'mypass@123';
query ok, 0 rows affected (0.10 sec)
query ok, 0 rows affe mysql> grant allon *.* to 'super'@'%' with grant option;
query ok, 0 rows affected (0.10 sec)
mysql> flush privileges;
query ok, 0 rows affected (0.00 sec)cted(0.01 sec)
mysql> alter user 'super'@'%' identifiedwith mysql_native_password by 'mypass@123';
query ok, 0 rows affected (0.10 sec)

MySql8.0以上版本正确修改ROOT密码的方法

注意:更改了mysql_native_passwd密码,等同更改用户原始密码。mysql 8.0 内以mysql-native_passwd为主,从shell界面登录需要注意了。

ps:下面看下mysql修改root密码的多种方法

在 navicat for mysql 下面直接执行  set password for = password('newpass');   就可以

方法1: 用set password命令

mysql -u root
  mysql> set password for 'root'@'localhost' = password('newpass');

方法2:用mysqladmin

  mysqladmin -u root password "newpass"

  如果root已经设置过密码,采用如下方法

  mysqladmin -u root password oldpass "newpass"

方法3: 用update直接编辑user表

mysql -u root
  mysql> use mysql;
  mysql> update user set password = password('newpass') where user = 'root';
  mysql> flush privileges;

在丢失root密码的时候,可以这样

mysqld_safe --skip-grant-tables&
  mysql -u root mysql
  mysql> update user set password=password("new password") where user='root';
  mysql> flush privileges;

总结

以上所述是小编给大家介绍的mysql8.0以上版本正确修改root密码的方法,希望对大家有所帮助