登陆一个有权限的管理员账号如root
# mysql -uroot -p
如 将所有host的 root 用户的密码改为 123456
mysql> update mysql.user set authentication_string=password('123456') where user='root';
刷新权限后生效
mysql> flush privileges;
登陆一个有权限的管理员账号如root
# mysql -uroot -p
如 将所有host的 root 用户的密码改为 123456
mysql> update mysql.user set authentication_string=password('123456') where user='root';
刷新权限后生效
mysql> flush privileges;