1. 安装 Homebrew
  2. brew doctor 确认 brew 在正常工作
  3. brew update 更新包
  4. brew install mysql 安装 MySQL

==> Downloading https://homebrew.bintray.com/bottles/mysql-5.7.17.sierra.bottle.tar.gz
######################################################################## 100.0%
==> Pouring mysql-5.7.17.sierra.bottle.tar.gz
==> Using the sandbox
==> /usr/local/Cellar/mysql/5.7.17/bin/mysqld --initialize-insecure --user=liangze --basedir=/usr/local/Cellar/mysql/5.7.17 --datadir=/usr/local/var/mysql --t
==> Caveats
We've installed your MySQL database without a root password. To secure it run:
mysql_secure_installation

To connect run:
mysql -uroot

To have launchd start mysql now and restart at login:
brew services start mysql
Or, if you don't want/need a background service you can just run:
mysql.server start
==> Summary
/usr/local/Cellar/mysql/5.7.17: 14,226 files, 444.4M



安装成功之后,我们需要先启动 mysql 服务

mysql.server start



然后再运行

mysql_secure_installation



运行完成之后,显示:

Securing the MySQL server deployment.



Connecting to MySQL using a blank password.



VALIDATE PASSWORD PLUGIN can be used to test passwords

and improve security. It checks the strength of password

and allows the users to set only those passwords which are

secure enough. Would you like to setup VALIDATE PASSWORD plugin?



Press y|Y for Yes, any other key for No: y



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

// 这里提示选一个密码强度等级

Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 1

Please set the password for root here.

// 然后按照所选的密码强度要求设定密码

New password:



Re-enter new password:



Estimated strength of the password: 50

Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y

... Failed! Error: Your password does not satisfy the current policy requirements



New password:



Re-enter new password:



Estimated strength of the password: 100

Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y

By default, a MySQL installation has an anonymous user,

allowing anyone to log into MySQL without having to have

a user account created for them. This is intended only for

testing, and to make the installation go a bit smoother.

You should remove them before moving into a production

environment.

// 这里删除默认无密码用户

Remove anonymous users? (Press y|Y for Yes, any other key for No) : y

Success.





Normally, root should only be allowed to connect from

'localhost'. This ensures that someone cannot guess at

the root password from the network.

// 禁止远程root登录,我选的是不禁止。因为我的mac上的数据库不会放到公网上,也不会存什么敏感数据

Disallow root login remotely? (Press y|Y for Yes, any other key for No) : no



... skipping.

By default, MySQL comes with a database named 'test' that

anyone can access. This is also intended only for testing,

and should be removed before moving into a production

environment.



// 这里删除默认自带的test数据库

Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y

  • Dropping test database...

    Success.

  • Removing privileges on test database...

    Success.



    Reloading the privilege tables will ensure that all changes

    made so far will take effect immediately.



    Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y

    Success.



    All done!



最后我们就可以进行登录了。



学会使用brew info 软件名来查看提示。

最新文章

  1. sharepoint2010问卷调查(2)-实现问卷的图片调查(采用自定义字段类型)
  2. 链地址法实现HashMap
  3. 第一个Sprint冲刺第六天
  4. 剖析OkHttp缓存机制
  5. 在Dropbox上搭建私有的Git仓库的教程
  6. 编码问题 关于hibernate jdbc数据库连接在xml配置与在properties文件配置的差异
  7. feed4junit 实现junit4框架体系下数据驱动
  8. How to create XML validator(验证器;验证程序) from XML schema
  9. javascript基础、语法
  10. android JNI 简单demo(2)它JNI demo 写
  11. JS中new的运行方式
  12. Swift 之Protocol在cocoa中的使用范例搜集(一)
  13. 将本地web服务映射到公网访问
  14. git知识总结-1.git基础之git分布式
  15. FileMode文件模式(转载)
  16. shell 下生成使用UUID
  17. linux 命令 — split
  18. 关于VC工程编译不过去这件事
  19. Login case
  20. Linux 内核里的“智能指针”【转】

热门文章

  1. 08 Java 集合的线程安全问题
  2. POJ 3481 Double Queue(set实现)
  3. 747_Largest-Number-At-Least-Twice-of-Others
  4. 多边形游戏(DP)
  5. IDEA设置类注解和方法注解(详解)
  6. 六、curator recipes之屏障barrier
  7. Zookeeper配置要点必看
  8. Code Signal_练习题_Add Border
  9. Windows 环境下 NodeJs 开发 Log
  10. mybatis大框架