共计 761 个字符,预计需要花费 2 分钟才能阅读完成。
本篇内容主要讲解“MySQL 忘记 root 密码的修改方法”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让丸趣 TV 小编来带大家学习“MySQL 忘记 root 密码的修改方法”吧!
方法一:
# /etc/init.d/mysql stop
# mysqld_safe –user=mysql –skip-grant-tables –skip-networking
# mysql -u root mysql
mysql UPDATE user SET Password=PASSWORD(’newpassword’) where USER=root’;
mysql FLUSH PRIVILEGES;
mysql quit
# /etc/init.d/mysql restart
# mysql -uroot -p
Enter password: 输入新设的密码 newpassword
登陆后再 set 下密码
mysql set password=password(root
方法二:
直接使用 /etc/mysql/debian.cnf 文件中 [client] 节提供的用户名和密码:
# mysql -udebian-sys-maint -p
Enter password: 输入 [client] 节的密码
mysql UPDATE user SET Password=PASSWORD(’newpassword’) where USER=’root’;
mysql FLUSH PRIVILEGES;
mysql quit
# mysql -uroot -p
Enter password: 输入新设的密码 newpassword
到此,相信大家对“MySQL 忘记 root 密码的修改方法”有了更深的了解,不妨来实际操作一番吧!这里是丸趣 TV 网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!