最近有两个项目升级了mysql到5.7,遇到了修改密码的需求,整理如下。
# mysql -uroot -p
Enter password: 【输入原来的密码】
mysql>use mysql;
mysql> update user set authentication_string=password('new_pwd') where user='root' and Host='localhost';
mysql> flush privileges;
mysql> exit;
有任何疑问可随时联系本道。
道灵2021-06-09作。