ICode9

精准搜索请尝试: 精确搜索
首页 > 数据库> 文章详细

Mac M1 安装mysql

2021-06-04 14:01:54  阅读:485  来源: 互联网

标签:opt 5.7 -- 34 Mac M1 mysql homebrew


安装

不是所有版本都能安装成功的

% brew install mysql@5.6
Warning: mysql@5.6 has been deprecated because it is not supported upstream!
Error: mysql@5.6: no bottle available!
You can try to install from source with:
  brew install --build-from-source mysql@5.6
Please note building from source is unsupported. You will encounter build
failures with some formulae. If you experience any issues please create pull
requests instead of asking for help on Homebrew's GitHub, Twitter or any other
official channels.
% brew install mysql@5.7
Warning: mysql@5.7 5.7.34 is already installed and up-to-date.
To reinstall 5.7.34, run:
  brew reinstall mysql@5.7

mysql5.7的版本就可以安装成功。

配置环境变量

# 终端
echo 'export PATH="/opt/homebrew/opt/mysql@5.7/bin:$PATH"' >> ~/.zshrc
 
# 刷新 ~/.zshrc
source ~/.zshrc

查看版本

% mysql --version
mysql  Ver 14.14 Distrib 5.7.34, for osx10.16 (x86_64) using  EditLine wrapper

mysql 常用命令

mysql.server start  # 启动mysql

mysql.server stop # 停止mysql

mysql.server restart # 重启mysql

设置初始密码

% mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.34 Homebrew

Copyright (c) 2000, 2021, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 
set password for 'root'@'localhost'=password('123456');

查看mysql进程

% ps -ef | grep mysql
  501  4692     1   0  1:47下午 ttys000    0:00.02 /bin/sh /opt/homebrew/Cellar/mysql@5.7/5.7.34/bin/mysqld_safe --datadir=/opt/homebrew/var/mysql --pid-file=/opt/homebrew/var/mysql/jiqingdeMBP.pid
  501  4792  4692   0  1:47下午 ttys000    0:00.25 /opt/homebrew/Cellar/mysql@5.7/5.7.34/bin/mysqld --basedir=/opt/homebrew/Cellar/mysql@5.7/5.7.34 --datadir=/opt/homebrew/var/mysql --plugin-dir=/opt/homebrew/Cellar/mysql@5.7/5.7.34/lib/plugin --log-error=jiqingdeMBP.err --pid-file=/opt/homebrew/var/mysql/jiqingdeMBP.pid
  501  4815   682   0  1:52下午 ttys000    0:00.00 grep mysql
  501  4813  4802   0  1:52下午 ttys001    0:00.02 mysql -uroot -p

标签:opt,5.7,--,34,Mac,M1,mysql,homebrew
来源: https://www.cnblogs.com/jiqing9006/p/14849287.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有