编程技术

mysql5.7怎么重置密码_编程技术_编程开发技术教程插图

具体方法:

(推荐教程:mysql视频教程

关闭MySQL5.7的权限系统

找到MySQL5.7的配置文件my.cnf

在文件末尾编辑增加代码skip-grant-tables

重启mysqld服务,登陆MySQL

$systemctl restart mysqld

此时再登录mysql时,不需要密码就登录进去了。

修改root密码

$use mysql;
$select host,user,authentication_string from user;
#修改root密码
$update user set authentication_string = password('123456') where user = 'root';

开启权限系统,重启MySQL,新密码登录

$vim /etc/my.cnf
#开启权限系统
#skip-grant-tables
#重启mysql
$systemctl restart mysqld
#新root密码登陆
$mysql -uroot -p

相关推荐:mysql教程

mysql5.7怎么重置密码
—–文章转载自PHP中文网如有侵权请联系admin#tyuanma.cn删除

excel次方公式怎么算

云服务器推荐