标签:share pid har family str 二进制安装 web根目录 etc mic
**二进制安装
安装:
yum -y install nginx
默认配置文件:/etc/nginx/nginx.conf
默认access日志:/var/log/nginx/access.log
默认web根目录:/usr/share/nginx/html/
开启方式:
1、nginx 默认加载/etc/nginx/nginx.conf
2、/usr/sbin/nginx -c "制定配置文件"
3、systemctl start nginx
4、nginx -s reload 重新加载配置
关闭方式:
1、nginx -s stop
2、systemctl stop nginx
3、ps aux |grep nginx ===> kill -9 "pid"
注意:
1、可手动加载不同配置,相当与打开不同的web服务
2、测试时关闭防火墙策略,iptables -F
标签:share pid har family str 二进制安装 web根目录 etc mic
原文地址:http://www.cnblogs.com/lucaq/p/6925678.html