美文网首页
mySQL的问题集

mySQL的问题集

作者: 轻云绿原 | 来源:发表于2020-05-01 23:36 被阅读0次

    1:Authentication plugin 'caching_sha2_password' cannot be loaded

    ALTER USER 'yourusername'@'localhost' IDENTIFIED WITH mysql_native_password BY 'youpassword';
    

    详情网站

    2:ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)

    今天,我要登录mysql

    mysql -u root -p
    

    但返回标题的错误

    解决:
    cd到mysql的bin目录下,用以下

    sudo ./mysql.server start
    

    返回

    Starting MySQL
     SUCCESS! 
    

    启动mysql服务就好了
    然后再

    mysql -u root -p
    

    相关文章

      网友评论

          本文标题:mySQL的问题集

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