安装

  1. 安装 MySQL: brew install mysql
  2. 启动 MySQL: mysql.server start
  3. 检查 MySQL 服务状态: systemctl status mysql.service
  4. 安全设置: myqsl_secure_installation, 执行后提示安全策略:

    There are three levels of password validation policy:
    
    LOW    Length >= 8
    MEDIUM Length >= 8, numeric, mixed case, and special characters
    STRONG Length >= 8, numeric, mixed case, special characters and dictionary                  file

    根据提示选择密码等级, 设置 Root 密码

创建用户

  1. 创建用户: create user 'herbert_u'@'%' identified by 'herbert_123';
  2. 授权用户:

    grant all privileges on retail_db.* to 'herbert_u'@'%';
    flush privileges;

lryong
208 声望1.2k 粉丝

专注于 Go 程序开发和技术进阶,包括操作系统、计算机网络、系统设计、算法数据结构和开发进阶。不定期分享在程序员道路上的思考和见解。