macos使用brew安装mysql
1、先搜索下,其实这一步可以省略
brew search mysql
2、安装命令
brew install mysql
3、启动服务
brew services start mysql
4、设置root密码
mysql_secure_installation
- 然后就可以输入密码
- 确认密码
- 然后各种询问,只需要识别最后一个询问输y,内容如下
... skipping.
Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.
Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
- 其他全部输入no回车
5、到此安装完毕
mysql -uroot