赞
踩
打开mac终端,输入以下命令
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
安装完成,路径信息:
安装路径:/usr/local/Cellar/nginx/1.17.0
配置文件路径:/usr/local/etc/nginx/nginx.conf
服务器默认路径: /usr/local/var/www
brew 升级命令:
sudo brew update
sudo brew install nginx
ps: 如果之前安装过,可以先卸载:
sudo brew uninstall nginx
方式1:
打开文件
open /usr/local/Cellar/nginx/1.17.7/bin
进入目录
cd /usr/local/Cellar/nginx/1.17.7/bin
启动服务 nginx
方式2:
sudo brew services start nginx
Nginx 默认8080端口,访问localhost:8080,若出现欢迎界面,说明成功安装和启动
或者在终端输入:
ps -ef|grep nginx
查看
nginx -v
sudo brew services restart nginx
sudo brew services stop nginx
在终端中输入ps -ef|grep nginx如果执行的结果是
501 15800 1 0 12:17上午 ?? 0:00.00 nginx: master process /usr/local/Cellar/nginx/1.8.0/bin/nginx -c /usr/local/etc/nginx/nginx.conf501 15801 15800 0 12:17上午 ?? 0:00.00 nginx: worker process501 15848 15716 0 12:21上午 ttys000 0:00.00 grep nginx
表示已启动成功,如果不是上图结果,在终端中执行
/usr/local/Cellar/nginx/1.17.0/bin/nginx -c /usr/local/etc/nginx/nginx.conf
命令即可启动nginx。
这时候如果成功访问localhost:8080,说明成功安装和启动好了。
sudo nginx -s reload
sudo nginx -s stop
原文地址:mac nginx安装、启动、简单命令
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。