jQuery火箭图标返回顶部代码

MySQL5.7已经没有password这个字段了,改成了authentication_string

update mysql.user set authentication_string=password('root') where user='root' ;

完整的更改MySQL密码的方式如下:

1.vim /etc/my.cnf [mysqld]段增加skip-grant-tables

2./etc/init.d/mysqld restart

3.终端输入mysql 直接登录MySQL数据库,然后use mysql

4.update mysql.user set authentication_string=password('root') where user='root' ;

5.flush privileges;  #立即生效

6.quit;

7.编辑/etc/my.cnf 删掉skip-grant-tables, 然后重启MySQL /etc/init.d/mysqld restart

8.mysql -u root -p 然后输入密码即可登录MySQL数据库

旧版改密码的命令如下,MySQL5.7 password改成了authentication_string

mysql> update user set password=password(“新密码”) where user=”用户名”;
原文地址:https://www.cnblogs.com/v5captain/p/12623021.html