码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS 7 + Nginx 1.9.4

时间:2015-09-01 00:08:53      阅读:241      评论:0      收藏:1      [点我收藏+]

标签:centos 7 nginx

环境:CentOS7+Nginx1.9.3

1安装依赖的类库

[root@localhost ~]# yum install zlib zlib-devel openssl openssl-devel pcre pcre-devel

2 下载nginx

[root@localhost ~]# wget http://nginx.org/download/nginx-1.9.4.tar.gz

3 安装nginx

[root@localhost src]# tar -zxvf nginx-1.9.4.tar.gz -C /src[root@localhost src]# cd nginx-1.9.4/[root@localhost nginx-1.9.4]# ./configure --prefix=/usr/local/nginx --with-http_stub_status_module[root@localhost nginx-1.9.4]# make && make install

4 nginx 启动

[root@localhost nginx-1.9.4]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

5 开始firewall端口服务

firewall-cmd --permanent --zone=public --add-service=http

6 nginx 常用命令

/usr/local/nginx/sbin/nginx -s reload
/usr/local/nginx/sbin/nginx -s stop 
/usr/local/nginx/sbin/nginx -t -c /usr/local/conf/nginx.cnf

本文出自 “站在巨人的肩膀上看世界” 博客,请务必保留此出处http://lixiaotao.blog.51cto.com/985722/1690243

CentOS 7 + Nginx 1.9.4

标签:centos 7 nginx

原文地址:http://lixiaotao.blog.51cto.com/985722/1690243

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!