问题描述:Your password has expired. To log in you must change it using a client that supports expired passwords
在启动azkaban连接mysql数据库的过程中,报这个错,然后修改了mysql的root密码也不行。但是使用navicat又是可以连接并正常使用的。
解决过程:
>select host,user,password_expired from mysql.user;
+-----------+-----------+------------------+
| host | user | password_expired |
+-----------+-----------+------------------+
| localhost | root | N |
| localhost | mysql.sys | Y |
+-----------+-----------+------------------+
password_expired :y说明密码已经过期,可以改成N,就是未过期
>update mysql.user set password_expired='N';
>flush privileges;