mac安装mysql
Posted shenhf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mac安装mysql相关的知识,希望对你有一定的参考价值。
mac使用brew安装mysql
1 先查看mac上边有没有安装brew;
brew -v 可查看brew版本
没有安装可先安装brew:/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
2 检查brew能否正常工作:brew doctor
3 更新brew包:brew update
4 安装mysql:brew insatll mysql
5 后台启动mysql:brew services start mysql // 重启:brew services restart mysql
6 启动MySQL服务:mysql.server start // 需要权限时可以用 sodu mysql.server start 启动
7 设置密码:mysql_secure_installation
8 连接mysql:mysql -uroot -p<you password> 例子:mysql -uroot -p123456 也可以输入 mysql -uroot -p 回车输入密码
以上是关于mac安装mysql的主要内容,如果未能解决你的问题,请参考以下文章
mac下安装mysql,连接出现Access denied for user 'root'@'localhost' (using password: YES)(示例代码
python 一个终端代码片段,在mac上生成可启动的usb live CD,以运行类似ubuntu或debian的内容。