当前位置:   article > 正文

MacOS使用brew如何下载Nginx_brew下载

brew下载

首先,第一步切换源:

切换 brew.git 仓库地址:

  1. cd "$(brew --repo)"
  2. git remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git

替换 homebrew-core.git 仓库地址: 

  1. cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
  2. git remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-core.git

在替换 homebrew-bottles 访问地址之前首先检测本机是什么shell版本

echo $SHELL

输出 /bin/zsh 执行下面这个

  1. echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.zshrc
  2. source ~/.zshrc

如果是输出 /bin/bash 执行下面这个

  1. echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.bash_profile
  2. source ~/.bash_profile

在切换完上面各镜像后,执行下方指令查看是否成功

brew update

无法成功的话,执行下面一串代码

brew doctor

出现一系列问题之后继续走

brew update-reset

再更新

brew update

还是不行的话,就删除homebrew-core就可以了

  1. cd /usr/local/Homebrew/Library/Taps/homebrew
  2. rm -rf homebrew-core
  3. brew upgrade

使用brew upgrade会重新更新 homebrew-core。安装速度太慢的话马上让终端运行停下来,走下列指令

cd /usr/local/Homebrew/Library/Taps
mkdir homebrew
git clone git://mirrors.ustc.edu.cn/homebrew-core.git
  1. /bin/bash -c "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install.sh)"

最后执行

brew update

安装Nginx

安装prce

brew install pcre​​

安装zlib

brew install zlib​​

安装openssl

brew install openssl​​

下载Nginx

brew install nginx

启动nginx

sudo nginx

4 成果展示

最终激动人心的时刻到了。

在浏览器输入 http://localhost:8080/

Nginx相关操作指令
启动Nginx:sudo systemctl start nginx
停止Nginx:sudo systemctl stop nginx
重启Nginx:sudo systemctl restart nginx
查看Nginx状态:sudo systemctl status nginx
测试配置文件是否正确:sudo nginx -t
重新加载Nginx配置文件:sudo systemctl reload nginx
查看Nginx版本号:nginx -v
查看Nginx帮助文档:nginx -h

本文参考链接 ==》MacOS全套详细介绍如何下载Nginx

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/264456?site
推荐阅读
相关标签
  

闽ICP备14008679号