想要查看mysql当前密码是什么,可以使用以下步骤:
1. 登录mysql
mysql -u用户名 -p
2. 使用以下命令查看当前密码
SHOW VARIABLES LIKE 'password%';
如果出现ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘password%’ at line 1,则说明版本过低,可以使用以下命令:
SHOW VARIABLES LIKE 'old_password%';
以上就是查看mysql当前密码的方法。