美文网首页
2020 mac mysql 安装

2020 mac mysql 安装

作者: 路路有话说 | 来源:发表于2020-05-11 14:38 被阅读0次

    新版的mysql 安装,你可能会碰到下面的问题,我这里使用的是brew 安装

    brew install mysql
    
    mysql.server stop
    
    mysql.server start
    #成功启动
      Starting MySQL
      . SUCCESS! 
    
    # 默认无密码时登陆
    mysql -u root
    
    #修改root密码,这是8.0的修改方法
    alter user 'root'@'localhost' identified with mysql_native_password by 'root';
    
    # 回车后有提示,则表示修改成功
    Query OK, 0 rows affected (0.00 sec)
    
    #接着退出mysql
    exit;
    
    #最后重新登录
    mysql -u root -p
    #在输入密码则登录成功
    
    

    相关文章

      网友评论

          本文标题:2020 mac mysql 安装

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