MySQL忘记root密码怎么办?
MySQL忘记root密码怎么办?一般情况下会有两种思路:找回密码和重置密码。在实际的工作中,MySQL数据库忘记root密码一般采用重置密码的办法去解决。下面就看看在Linux下和在Windows下重置root密码的步骤。
Windows下MySQL忘记root密码怎么办?
1.以系统管理员身份登陆系统,启动mysql跳过权限检查或者在my.ini中加一行skip-grant-tables#跳过验证。
[cc lang=”dos”]d:\mysql\bin\mysqld –skip-grant-tables[/cc]
2.进到d:\mysql\bin下,使用mysqladmin命令设置密码
[cc lang=”dos”]d:\mysql\bin\mysqladmin -u root flush-privileges password 新密码 -p[/cc]
3.在cmd里重新启动mysql
[cc lang=”dos”]net start mysql[/cc]
Linux下MySQL忘记root密码怎么办?
1. 用以下命令启动MySQL,以不检查权限的方式启动;
[cc lang=”bash”escaped=”true”][root@MySQL mysql]# safe_mysqld –skip-grant-tables &
[root@MySQL mysql]# mysqld –skip-grant-tables &[/cc]
2. 然后用空密码方式使用root用户登录MySQL
[cc lang=”bash”][root@MySQL mysql]# mysql -u root[/cc]
3. 修改root用户的密码;
[cc lang=”bash” escaped=”true”]MySQL> update mysql.user set password=PASSWORD(‘新密码’) where User=’root’;
MySQL> flush privileges;[/cc]
重新启动MySQL,就可以使用新密码登录了。
2018年3月21日 下午6:52
膜拜大神
2019年5月5日 下午8:28
哇塞,居然是沙发?留个名
2019年5月11日 上午12:37
虽然不知道说的是什么,但看起来好厉害的样子!