Bootstrap

mac homebrew配置使用

本文介绍mac上homebrew工具的安装、配置过程。homebrew功能类似于centos的yum,用于软件包的管理,使用上有命令的差异。
本次配置过程使用mac,看官方文档,在linux上也可以用,但我没试过,有兴趣的同学可以试试。

1、安装

打开终端,复制如下命令:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

这个要花几分钟,安装过程中要下载,别着急。完成后,效果如下:
在这里插入图片描述
看一下版本:

brew -v

在这里插入图片描述

2、更换源

homebrew默认的源在国外,国内使用时老是超时,我们换成国内源便于使用。先看一下当前的源:

cd "$(brew --repo)" && git remote -v

在这里插入图片描述
看见了吧,咱们现在改成清华大学的。

#··1、换源
git -C "$(brew --repo)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask.git

#··2、修改zshrc文件 
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.zshrc
source ~/.zshrc

#··3、更新
brew update

等待update完成,就可以用homebrew安转软件了。

3、homebrew常用命令

  • brew search 名称 : 查找
  • brew install 名称@版本 : 安装对应版本的软件
  • brew services start 名称: 启动服务
  • brew services info 名称:查看服务信息,包括运行、停止等状态
  • brew uninstall 名称:卸载
  • brew --help: homebrew的帮助,比较简单

4、装个redis试试

brew install redis
brew services list 

quit
由上图看出,redis目前处于运行状态,进入redis再看看,直接连接:

redis-cli

# 连接成功后,再看看server信息
# 注意,这个命令不是bash命令,是redis链接成功后,redis客户端的命令。
info server 

在这里插入图片描述
redis安装成功了,你可以试试mysql或其他软件。

;