netstat 命令
例如:查看所有监听的端口
netstat -nat |grep LISTEN例如:查看9000端口
netstat -nat |grep 9000# 示例输出
tcp4 0 0 127.0.0.1.9000 *.* LISTEN 例如:查看所有监听的端口
netstat -nat |grep LISTEN例如:查看9000端口
netstat -nat |grep 9000# 示例输出
tcp4 0 0 127.0.0.1.9000 *.* LISTEN MacOS可以使用launchctl命令管理服务,也可以使用brew services。
brew services 相比 launchctl,操作更简化,更加类似 Centos 的 systemd 命令。
例如:启动nginx
brew services start nginx例如:停止php-fpm
brew services stop php 直接使用brew命令安装即可
brew install php安装指定版本
brew install php@7.2MacOS下使用pecl安装PHP扩展
查看pecl
pecl version 如果还未安装homebrew的话,使用以下命令安装
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"卸载命令
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh)"查看
cd "$(brew --repo)" && git remote -v更换
git remote set-url origin https://mirrors.cloud.tencent.com/homebrew/brew.git