MySql教程

mac安装mysql及导库

本文主要是介绍mac安装mysql及导库,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1、执行安装命令

$brew install mysql

2、安装完后启动mysql

$mysql.server start

3、执行安全设置

$mysql_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、登录mysql

$mysql -u root -p

按提示输入root密码

root@poksi-test-2019:~# mysql -u root -p

Enter password:

$mysql>source d:/dbname.sql

三、检查mysql服务状态

先退出mysql命令行,输入命令

$mysql.server status

显示如下结果说明mysql服务是正常的

 SUCCESS! MySQL running (23753)



这篇关于mac安装mysql及导库的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!