首页 > 代码库 > mac系统下安装mysql步骤

mac系统下安装mysql步骤

1.下载mysql-5.7.13-osx10.11-x86_64.dmg安装包,并点击dmg安装包进行安装

2.安装完成后弹出如以下提示信息:

2016-06-23T01:14:48.649253Z 1 [Note] A temporary password is generated for root@localhost: lFuFYqu;M0-T

If you lose this password, please consult the section How to Reset the Root Password in the MySQL reference manual.


3.root用户默认密码是 lFuFYqu;M0-T ;安装后的目录是/usr/local/mysql-版本号
4.可以在“设置”里启动和停止mysql服务,也可以通过以下命令启东
support-files/mysql.server start
support-files/mysql.server stop
support-files/mysql.server stute
5.登陆mysql命令:./mysql -u root -p 回车键后提示输入上面的默认密码
进入到后,修改默认密码,否则不能对数据库进行操作:
修改默认密码:
mysql>set password = password(‘123‘);

6.安装完成,可以用新密码登陆了。

mac系统下安装mysql步骤