mac使用brew安装mysql
mac使用brew安装mysql
首先使用brew install [email protected]
如果想查看版本,直接使用brew search mysql.
配置环境变量
现在都安装了zsh,在vim ~/.zshrc配置环境变量。
一般使用brew安装的文件都在:/usr/local/Cellar/下。
我的mysql安装目录为:/usr/local/Cellar/[email protected]/5.7.28/
在~/.zshrc目录下添加:
export PATH=$PATH:/usr/local/Cellar/[email protected]/5.7.28/bin/
启动mysql
mysql.server start
设置密码
第一次直接进入,没密码:
mysql -uroot -p:
进入mysql库
use mysql;
设置密码安全级别(个人使用,建议使用最低级别)
set global validate_password_policy=LOW;
设置密码长度
set global validate_password_length=6;
设置密码
update user set authentication_string=password(‘123456’) where user=‘root’;
flush privileges;