mac使用brew安装mysql
brew
🍺 The missing package manager for macOS (or Linux)
项目地址:https://gitcode.com/gh_mirrors/br/brew
免费下载资源
·
mac使用brew安装mysql
首先使用brew install mysql@5.7
如果想查看版本,直接使用brew search mysql.
配置环境变量
现在都安装了zsh,在vim ~/.zshrc配置环境变量。
一般使用brew安装的文件都在:/usr/local/Cellar/下。
我的mysql安装目录为:/usr/local/Cellar/mysql@5.7/5.7.28/
在~/.zshrc目录下添加:
export PATH=$PATH:/usr/local/Cellar/mysql@5.7/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;
GitHub 加速计划 / br / brew
40.4 K
9.47 K
下载
🍺 The missing package manager for macOS (or Linux)
最近提交(Master分支:1 个月前 )
90a90b30
3 个月前
47b1cab7
3 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)