Mac brew 安装MySQL
原创JTbeiying 最后发布于2019-04-26 15:05:24 阅读数 796 收藏
展开
因环境需要,需要在Mac上安装MySQL,记录如下。
1、brew 安装
brew install mysql
1
2、添加如下环境变量到 ~/.bash_profile 和 ~/.zshrc
export PATH="/usr/local/Cellar/mysql/8.0.12/bin:$PATH"
1
OR
echo 'export PATH="/usr/local/Cellar/mysql/8.0.12/bin:$PATH”’ >> ~/.zshrc
1
3、初始化,按照提示一步步走即可
mysql_secure_installation
1
4、启动MySQL服务
mysql.server start
1
备注:有时运行mysql.server会报错,找不到命令,mysql.server在./mysql/bin同级目录support-files/mysql.server
一般在/usr/local/mysql/support-files/mysql.server
5、登陆MySQL
mysql -u root -p
1
6、其它
关闭MySQL服务
mysql.server stop
1
查看MySQL当前状态
mysql.server status
1
7、MySQL常用查询命令
//用户登陆mysql,括号可选,带用户名或密码
mysql -uxxx(name) -pxxx(password)
//显示有哪些数据库
show databases
//显示当前数据库中的表
show tables
//切换数据库
use tableName
//显示数据库结构
desc tableName
or
show columns from tableName
//显示数据库配置字段信息
show variables
//显示表的创建sql语句
show create table tableName
//查看数据表类型
show table states like 'tableName'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
遇到的问题:
上述操作后,用Navicat root用户连接时,会报如下错误:
Authentication plugin 'caching_sha2_password' cannot be loaded: dlopen/usr/local/mysql/lib/plugin/caching_sha2_password.so 2: image not found
1
原因:
mysql 8.0 及以后版本的默认加密方式变了,变成了 caching_sha2_password
mysql 8.0 之前 版本的默认加密方式是 mysql_native_password
解决方案:
一、修改root用户的加密方式为 mysql_native_password
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'rootPASSWORD';
1
二、mysql创建一个新用户,设置密码加密方式为 mysql_native_password,并授予其所有权限
CREATE USER 'newUser'@'localhost' IDENTIFIED WITH mysql_native_password BY 'newPassWord';
GRANT ALL PRIVILEGES ON *.* TO 'newUser'@'localhost';
1
2
上述用户名后面跟的是localhost,目的是只允许连到本地才能进行访问,不能远程访问,如何才能远程访问?
用%替换localhost,如下:
CREATE USER 'newUser'@'%' IDENTIFIED WITH mysql_native_password BY 'newPassWord';
GRANT ALL PRIVILEGES ON *.* TO 'newUser'@'%';
1
2
创建新用户参考链接:https://dev.mysql.com/doc/refman/8.0/en/adding-users.html
始发于2018.8.16
————————————————
版权声明:本文为CSDN博主「JTbeiying」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_33912215/article/details/89553741