安装
mac下安装mysql 5.7,参考:https://gist.github.com/operatino/392614486ce4421063b9dece4dfe6c21
brew info mysql@5.7
brew install mysql@5.7
brew tap homebrew/services
brew services start mysql@5.7
brew services list
brew link mysql@5.7 --force
mysql -V
mysqladmin -u root password 'yourpassword'
启动和停止
# 启动
mysql.server start
# 停止
mysql.server stop
修改密码
mysqladmin -uroot password "new_password"
登录
mysql -uroot -p
备注
- 默认的端口号为 3306
- Mac下简单易用的MySql管理工具:Sequel Pro
QA
Sequel Pro and MySQL connection failed
问题描述:
MySQL said: Authentication plugin 'caching_sha2_password' cannot be loaded: dlopen(/usr/local/lib/plugin/caching_sha2_password.so, 2): image not found
解决方案:
This is because Sequel Pro is not ready yet for a new kind of user login, as the error states: there is no driver. Quick fix for non-homebrew installs:
Apple Logo > System Preferences > MySQL > Initialize Database
, then type your new password and select 'Use legacy password'
After restart you should be able to connect. Do it only on fresh installs, because you may lost your db tables otherwise.