mysql修改密码的三方法和忘记root密码的解决方法

方法1: 用SET PASSWORD命令


MysqL -u root
MysqL> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');

方法2:用MysqLadmin


MysqLadmin -u root password "newpass"

如果root已经设置过密码,采用如下方法


MysqLadmin -u root password oldpass "newpass"

方法3: 用UPDATE直接编辑user表


MysqL -u root
MysqL> use MysqL;
MysqL> UPDATE user SET Password = PASSWORD('newpass') WHERE user = 'root';
MysqL> FLUSH PRIVILEGES;

在丢失root密码的时候,可以这样


MysqLd_safe --skip-grant-tables&
MysqL -u root MysqL
MysqL> UPDATE user SET password=PASSWORD("new password") WHERE user='root';
MysqL> FLUSH PRIVILEGES;

相关文章

SELECT a.*,b.dp_name,c.pa_name,fm_name=(CASE WHEN a.fm_n...
if not exists(select name from syscolumns where name=&am...
select a.*,pano=a.pa_no,b.pa_name,f.dp_name,e.fw_state_n...
要在 SQL Server 2019 中设置定时自动重启,可以使用 Window...
您收到的错误消息表明数据库 'EastRiver' 的...
首先我需要查询出需要使用SQL Server Profiler跟踪的数据库标...