美文网首页
MySQL忘记root密码

MySQL忘记root密码

作者: 讲武德的年轻人 | 来源:发表于2019-11-20 14:14 被阅读0次

    systemctl stop mariadb
    mysqld_safe --skip-grant-tables &

    再开一个窗口执行

    mysql -u root
    use mysql
    update user set password=password("12345") where user="root";
    flush privileges;
    exit;
    systemctl start mariadb
    mysql -uroot -p12345

    相关文章

      网友评论

          本文标题:MySQL忘记root密码

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