美文网首页
mysql 5.7 重置密码

mysql 5.7 重置密码

作者: 戈羽殇雪 | 来源:发表于2021-04-23 17:56 被阅读0次

    密码重置:
    1 首先需要修改配置文件:

    vim /etc/my.cnf
    skip-grant-tables
    

    重启mysql

    /etc/init.d/mysqld restart 
    

    登录mysql,然后重置密码

    mysql -uroot -p
    ##登录后重置密码
    use mysql
    update mysql.user set authentication_string=password('new_passwd') where user='root'
    

    然后删除/etc/my.cnf中添加的一行skip-grant-tables
    重启mysqld

    /etc/init.d/mysqld restart
    

    然后尝试重新登录即可

    相关文章

      网友评论

          本文标题:mysql 5.7 重置密码

          本文链接:https://www.haomeiwen.com/subject/aufhrltx.html