mariadb和mysql忘记密码怎么办
时间:2017-01-30 00:32 来源:linux.it.net.cn 作者:IT
linux环境中:/etc/my.cnf
在[mysqld]配置段添加如下一行:
skip-grant-tables
保存退出编辑。
update user set password=PASSWORD("123456") where user='root';
flush privileges
密码已经改好了。
(责任编辑:IT)
linux环境中:/etc/my.cnf 在[mysqld]配置段添加如下一行: skip-grant-tables 保存退出编辑。 update user set password=PASSWORD("123456") where user='root'; flush privileges 密码已经改好了。 (责任编辑:IT) |