MySQL:忘记root密码:修订间差异
imported>Soleverlee 以“首先停止mysql <source lang="bash"> service mysql stop </source> 然后以安全模式启动mysql在后台运行: <source lang="bash"> mysqld_safe --skip-grant-...”为内容创建页面 |
imported>Soleverlee 无编辑摘要 |
||
第14行: | 第14行: | ||
修改MySQL的root密码: | 修改MySQL的root密码: | ||
<source lang="sql"> | <source lang="sql"> | ||
update user set password=PASSWORD(' | update user set password=PASSWORD('123456') where User='root'; | ||
#MySQL 5.7 | |||
update user set authentication_string=password('123456') where user='root'; | |||
flush privileges; | flush privileges; | ||
</source> | </source> | ||
[[Category:Database]] | [[Category:Database]] |
2017年5月11日 (四) 07:23的版本
首先停止mysql
service mysql stop
然后以安全模式启动mysql在后台运行:
mysqld_safe --skip-grant-tables &
然后就可以以root登录到mysql服务器上
mysql -u root
use mysql
修改MySQL的root密码:
update user set password=PASSWORD('123456') where User='root';
#MySQL 5.7
update user set authentication_string=password('123456') where user='root';
flush privileges;