Mac 安装mysql


1.安装Homebrew好不啦.

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

2.brew doctor 确认brew在正常工作.

Your system is ready to brew.

3.brew update更新包。

Already up-to-date.

4.brew install mysql安装mysql

然后就慢慢的~ 慢慢的等待~~

5.按照brew的提示运行 mysql_secure_installation,运行后会报错:

> mysql_secure_installationSecuring the MySQL server deployment.Enter password for user root:Error: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
![](http://static.blog.csdn.net/images/save_snippets.png)

不要急,不要急,提示说找不到mysql.sock。原因是mysql进程还没启动。

6.启动mysql服务

mysql.server start

7.再运行

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!

8.看一下登录

mysql -u root -p
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • 1.使用安装包安装mysql(网上下载实在是太慢了,需要安装包的可以在文章底部留言,我发给您) 双击打开安装文件 ...
    猪猪9527阅读 3,720评论 0 2
  • 1.使用安装包安装mysql(网上下载实在是太慢了,需要安装包的可以在文章底部留言,我发给您) 双击打开安装文件 ...
    Jack问阅读 14,529评论 5 4
  • 使用 brew 安装mysql 由于 HomeBrew 安装的 mysql 默认root账户没有设置密码。因此需要...
    我小时候可猛了_阅读 2,833评论 0 0
  • MacBook-Air:~ huangyong$ brew install mysql ==> CaveatsWe...
    你说你要一场阅读 2,425评论 0 0
  • 2016年12月13日,昨天的夜晚飘落了些许的雨雪,今天的气温变的冷了一些; 昨晚没有接你回来相信你是知道原因的,...
    雨函妈妈阅读 1,369评论 0 0

友情链接更多精彩内容