标签:mysql
Mysql密码过期:解决:
在本地客户端执行命令,然后按提示输入密码:
1 | mysql -uroot -p |
1 | SET PASSWORD FOR ‘root‘ @ ‘localhost‘ = PASSWORD ( ‘密码‘ ); |
1 2 | [mysqld] default_password_lifetime=0 |
设置为:0 表示永不过期
1 | service mysql restart |
本文出自 “梦想照进现实” 博客,请务必保留此出处http://lookingdream.blog.51cto.com/5177800/1895608
标签:mysql
原文地址:http://lookingdream.blog.51cto.com/5177800/1895608