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

CentOS 7.2源码包编译安装nginx-1.10.2

时间:2018-01-17 15:53:13      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:inux   bsd   name   就是   code   tcp   请求   软件包   roo   

1、nginx介绍

Nginx (engine x) 是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP服务器。
Nginx是由伊戈尔·赛索耶夫为俄罗斯访问量第二的Rambler.ru站点(俄文:Рамблер)开发的,第一个公开版本0.1.0发布于2004年10月4日。
其将源代码以类BSD许可
证的形式发布,因它的稳定性、丰富的功能集、示例配置文件和低系统资源的消耗而闻名。
Nginx是一款轻量级的Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,并在一个
BSD-like 协议下发行。其特点是占有内存少,并发能力强。
Nginx 解决了服务器的C10K(就是在一秒之内连接客户端的数目为10k即1万)问题。它的设计不像传统
的服务器那样使用线程处理请求,而是一个更加高级的机制—事件驱动机制,是一种异步事件驱动结构。

2、部署环境说明

# cat /etc/redhat-release 
CentOS Linux release 7.2.1511 (Core) 

# hostname -I
192.168.56.100

# uname -r
3.10.0-327.el7.x86_64

关闭防火墙,关闭selinux(防止操作过程中报错),操作步骤请参考博客:http://blog.51cto.com/12217917/2060136

3、nginx-1.10.2源码编译安装

nginx官方源码包下载地址:http://nginx.org/download/

# wget http://nginx.org/download/nginx-1.10.2.tar.gz      #获取源码包
# yum install openssl openssl-devel pcre pcre-devel -y       #下载依赖包
# useradd -s /sbin/nologin -M nginx      #创建nginx启动用户
# tar xf nginx-1.10.2.tar.gz          #解压软件包
# cd nginx-1.10.2/
./configure --user=nginx --group=nginx \        #启动的用户和组
 --with-http_ssl_module \                              #ssl加密模块
 --with-http_stub_status_module \                #nginx状态模块
 --prefix=/usr/local/nginx-1.10.2                    #安装的路径
# make && make install && echo $?            #make编译后返回状态码
# ln -s /usr/local/nginx-1.10.2/ /usr/local/nginx        #创建软连接
# ls -l /usr/local/nginx       #查看软连接
lrwxrwxrwx 1 root root 24 Jan 18 00:10 /usr/local/nginx -> /usr/local/nginx-1.10.2/
# /usr/local/nginx/sbin/nginx -t         #检查nginx的配置语法
nginx: the configuration file /usr/local/nginx-1.10.2/conf/nginx.conf syntax is ok     #OK表示配置没问题
nginx: configuration file /usr/local/nginx-1.10.2/conf/nginx.conf test is successful
# /usr/local/nginx/sbin/nginx                 #启动nginx
# netstat -lnutp|grep 80                #检查nginx的端口是否启动,没有netstat这个命令需要下载net-tools这个包
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      5302/nginx: master  

CentOS 7.2源码包编译安装nginx-1.10.2

标签:inux   bsd   name   就是   code   tcp   请求   软件包   roo   

原文地址:http://blog.51cto.com/12217917/2062065

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