文章目录
ERROR 1862 (HY000): Your password has expired.To log in you must change it using a client that supports expired passwords.
1. 超级用户登陆密码过期 无效
[root@server13 data]# mysql -p
Enter password:
ERROR 1862 (HY000): Your password has expired. To log in you must change it using a client that supports expired passwords.
2. 故障解决方法
[root@server13 data]# /etc/init.d/mysqld stop ##关闭mysqld进程
[root@server13 data]# rm -fr *
[root@server13 data]# ps -ef |grep mysql
[root@server13 data]# kill 2158
[root@server13 data]# ps -ef |grep mysql
root 2268 10382 0 17:49 pts/1 00:00:00 grep --color=auto mysql
[root