美文网首页
CentOS7 Mysql5.7 忘记root密码/初始化roo

CentOS7 Mysql5.7 忘记root密码/初始化roo

作者: 0f534b43b700 | 来源:发表于2018-11-01 23:17 被阅读0次

    原文地址 >> https://blog.7core.cn/thread-27.htm

    >>实验环境 - 系统Centos7.5 软件Mysql5.7.24

    编辑my.cnf允许空密码登录

    [root@7Core ~]# vi /etc/my.cnf
    #在[mysqld]下加入一行
    skip-grant-tables=1
    

    重新启动Mysql服务

    [root@7Core ~]# systemctl restart mysqld.service
    

    使用Root登录数据库、使用mysql数据库、修改root密码、退出数据库

    [root@7Core ~]# mysql -u root
    mysql> use mysql;
    mysql> update user set authentication_string = password('新密码'),password_last_changed=now() where user='root';
    mysql> exit;
    

    再次打开my.cnf,将skip-grant-tables=1删掉,保存退出

    [root@7Core ~]# vi /etc/my.cnf
    #删除skip-grant-tables=1
    

    重启Mysql服务

    [root@7Core ~]# systemctl restart mysqld.service
    

    相关文章

      网友评论

          本文标题:CentOS7 Mysql5.7 忘记root密码/初始化roo

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