红联Linux门户
Linux帮助

mariadb和mysql忘记密码怎么办

发布时间:2015-09-18 09:50:35来源:linux网站作者:magicbreaker

linux环境中:/etc/my.cnf

在[mysqld]配置段添加如下一行:
skip-grant-tables

保存退出编辑。
update user set password=PASSWORD("123456") where user='root';

flush privileges

密码已经改好了。


Linux-mysql忘记root密码:http://www.linuxdiyf.com/linux/13838.html

Ubuntu下MySQL忘记root密码重置:http://www.linuxdiyf.com/linux/13666.html

Ubuntu15.04下MySQL5.6安装过程:http://www.linuxdiyf.com/linux/13250.html

关于MySQL密码你应该知道的那些事:http://www.linuxdiyf.com/linux/12965.html