美文网首页我爱编程Linux those things
Centos Mysql 命令登录报错

Centos Mysql 命令登录报错

作者: M_ENG | 来源:发表于2018-04-12 10:15 被阅读0次

    Access denied for user 'root'@'localhost' (using password: YES)

    1.使用root用户为无密码登录
    修改 /etc/my.cnf
    在【mysqld】和【mysqld】之间添加:skip-grant-tables

    重启Mysql

    2.命令登录:mysql -u root -p
    不用输入密码直接回车进入mysql

    3.update user SET password = PASSWORD('new_pass') WHERE user = 'root';

    4.flush privileges;

    5.exit; 重启Mysql

    相关文章

      网友评论

        本文标题:Centos Mysql 命令登录报错

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