919

MacOS使用brew services 和 launchctl管理服务

前言

MacOS可以使用launchctl命令管理服务,也可以使用brew services

brew services 相比 launchctl,操作更简化,更加类似 Centos 的 systemd 命令。

brew services常用命令

启动、停止服务

例如:启动nginx

brew services start nginx

例如:停止php-fpm

brew services stop php
872

Macos更换Homebrew为腾讯源

安装homebrew

如果还未安装homebrew的话,使用以下命令安装

/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

Step1:更换brew源

查看

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

更换

git remote set-url origin https://mirrors.cloud.tencent.com/homebrew/brew.git

Step2:更换homebrew-core源(注意:brew v4 不需要此步)