美文网首页
修复Ubuntu16.04下MySQL无法链接问题

修复Ubuntu16.04下MySQL无法链接问题

作者: eima | 来源:发表于2018-01-26 01:30 被阅读8次

    1.使用安全模式进入MySQL

    在/etc/mysql/mysql.conf.d/mysqld.cnf文件下的[mysqld]段下加入一行“skip-grant-tables”

    2.重启mysql服务

    sudo systemctl restart mysql
    

    3. 使用安全模式进入MySQL并修改root密码

    mysql
    use mysql
    update user set authentication_string=password('123456') where user='root' and Host ='localhost'; #把密码重置为123456
    update user set plugin="mysql_native_password"; 
    flush privileges;
    quite
    

    4. 将第一步文件中的skip-grant-tables注释掉,并重启MySQL服务器。

    相关文章

      网友评论

          本文标题:修复Ubuntu16.04下MySQL无法链接问题

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