美文网首页
mysql 5.7 centos7 修改root 密码

mysql 5.7 centos7 修改root 密码

作者: cifer_pan | 来源:发表于2018-08-09 21:19 被阅读0次

    vim /etc/my.cnf

    在 my.cnf 最后一行 添加:

    skip-grant-tables

    退出并重启 mysql

    service mysqld restart

    mysql -uroot -p (直接点击回车,密码为空)

    切换数据库

    use mysql;

    执行修改命令

    update user set authentication_string=password('newPwd_1_') where user='root';

    刷新

    flush privileges;

    退出

    quit;

    删除之前的skip-grant-tables

    vim /etc/my.cnf

    重启服务

    service mysqld restart

    相关文章

      网友评论

          本文标题:mysql 5.7 centos7 修改root 密码

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