zoukankan      html  css  js  c++  java
  • Mac brew安装mysql5.7

    安装

    brew install mysql@5.7                // 安装
    brew link --force mysql@5.7      // 链接
    brew services start mysql@5.7 // 启动服务
    
    brew services stop mysql@5.7     //停止
    brew services restart mysql@5.7 //重启
    

    设置密码

    启动之后,输入一行命令

    mysql_secure_installation
    

    5.7.x对设置的密码有严格的要求,分为LOW、MEDIUM、STRONG三个等级,对应要求如下:

    LOW    Length >= 8
    MEDIUM Length >= 8, numeric, mixed case, and special characters
    STRONG Length >= 8, numeric, mixed case, special characters and dictionary file
    

    选low即可,输入8位,我这里使用12345678 ,其他一路y确认即可。

    启动

    ➜  ~ brew services start mysql@5.7
    ==> Successfully started `mysql@5.7` (label: homebrew.mxcl.mysql@5.7)
    

    账号:root 密码:12345678

  • 相关阅读:
    ArcObject获取ArcMap默认地理数据库的路径
    标准IO
    进程关系
    进程环境
    C语言基础知识位运算
    Bash 快捷键
    信号
    UNIX系统文件
    进程
    unix 文件属性
  • 原文地址:https://www.cnblogs.com/mysticbinary/p/12662399.html
Copyright © 2011-2022 走看看