美文网首页
Mac下mysql5.7.17安装和配置

Mac下mysql5.7.17安装和配置

作者: 小剑哥 | 来源:发表于2016-12-20 00:00 被阅读92次

    安装mysql5.7遇到的坑,mac刚上手,不是很熟,配置个mysql都用了一晚上。

    参考 https://segmentfault.com/a/1190000004061246

    1.配置环境变量

    export PATH=$PATH:$GOROOT/bin:$GOPATH/bin:/usr/local/mysql/bin
    

    2.登录

    mysql -u root -p   :按回车
    输入密码(安装MySQL时有提示临时密码,通知上也有)...
    

    确定后 提示

    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 105
    Server version: 5.7.17
    Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.
    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
    mysql> 
    

    然后设置密码:

    set password='密码';
    

    ok!

    相关文章

      网友评论

          本文标题:Mac下mysql5.7.17安装和配置

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