码迷,mamicode.com
首页 > 数据库 > 详细

MySQL

时间:2019-08-11 12:37:49      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:停止   install   may   do it   简单   start   this   usr   his   

安装

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

备注

  1. 默认的端口号为 3306
  2. 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.

MySQL

标签:停止   install   may   do it   简单   start   this   usr   his   

原文地址:https://www.cnblogs.com/lshare/p/11334472.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!