在mysql版本5.7之后修改密码
mysql> update user set authentication_string=passworD("123456") where user='root';
其中123456为要修改为的密码,root是要修改的用户。
在mysql版本5.7之后修改密码
mysql> update user set authentication_string=passworD("123456") where user='root';
其中123456为要修改为的密码,root是要修改的用户。