美文网首页
mysql忘记密码

mysql忘记密码

作者: 没有故事的老大爷 | 来源:发表于2018-06-26 16:46 被阅读0次

    centos

    1. 修改配置文件
    vi /etc/my.cnf
    在[mysqld]配置下面添加
    skip-grant-tables
    
    1. 重启mysqld
    systemctl restart mysqld
    
    1. 修改密码,刷新
    update user set authentication_string=password('123abc') where user='root';
    flush privileges;
    

    赋权

    GRANT ALL PRIVILEGES ON *.* TO 'tms'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION;
    
    1. 恢复配置文件,重启mysqld

    相关文章

      网友评论

          本文标题:mysql忘记密码

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