共计 4750 个字符,预计需要花费 12 分钟才能阅读完成。
1. 背景
介绍:
Nginx 是一款高性能的 HTTP 和反向代理服务器,能够选择高效的 epoll(linux2.6 内核)、kqueue(freebsd)、eventport(solaris10) 作为网络 I / O 模型,能够支持高达 50000 个并发连接数的响应,而内存、CPU 等系统资源消耗却非常低、运行非常稳定。
选择的理由:
* 支持高并发连接:nginx 使用高效的多路复用模型 (epoll/linux, kqueue/freebsd, eventport/solaris)
* 内存消耗少:在服务器 3W 并发连接下,开启 10 个 Nginx 进程消耗 150MB 内存 (15MB*10)
* 成本低廉:购买 F5 BIG-IP、NetScaler 等负载均衡交换机需要几十万 RMB,而开源 Nginx 替代这些商业设备。
* 其他理由:网络配置简单;支持 rewrite 重写规则,能够根据域名、URL 的不同、将 HTTP 请求分到不同的后端服务器群组;内置的健康检查功能;节省带宽,支持 GZIP 压缩,可以添加浏览器本地缓存的 Header 头;支持热部署,能够在不间断服务的情况下、对软件版本进行升级
应用范围:
* Web 服务: 设置多虚拟主机的服务并配合 fast-cgi 或 tomcat 支持动态网页
Nginx 是近年来比较火的一个 www 服务的软件, 与 Apache 和 lighttpd 以及 tomcat 等功能类似,但是 nginx 要比前者有着卓越的性能,比如:采用了 epoll 模型,内存消耗小等优点;
* 反向代理, 多虚拟主机的代理:
指以代理服务器来接受 Internet 上的连接请求,然后将请求转发给内部网络上的服务器,并将从服务器上得到的结果返回给 Internet 上请求连接的客户端;
* 七层的负载均衡: 单多虚拟主机不同服务器之间的访问;
负载均衡是由多台服务器以对称的方式组成一个服务器集合,每台都是等价地位,通过某种负载分担技术,将外部发送来的请求均匀分配到对称结构中某一台服务器上,来接收到请求的服务器独立地回应客户的请求;
* 正向代理: 代理上网
代理内部网络对 Internet 的链接请求,客户机必须指定代理服务器,并将本来要直接发送到 web 服务器上的 http 请求发送到代理服务器中,由代理服务器请求并返回响应内容;
* 缓存服务
为 proxy 和 fastcgi 做缓存服务,提高访问速度,相当于 squid 功能;
2. 环境
[root@nginx ~]# cat /etc/RedHat-release
CentOS release 6.8 (Final)
[root@nginx ~]# uname -r
2.6.32-504.el6.x86_64
3. 安装
* 临时关闭 selinux(可选)
[root@nginx ~]# setenforce 0
* 关闭 iptables(可选)
[root@nginx ~]# service iptables stop
* 创建 www 用户
[root@nginx ~]# useradd -r -s /sbin/nologin -M www
* 安装 pcre 库依赖
[root@nginx ~]# yum install pcre pcre-devel -y
* 安装 ssl 库依赖
[root@nginx ~]# yum install openssl openssl-devel -y
* 进入下载目录
cd /usr/local/src
* 下载 nginx 源码包
wget http://nginx.org/download/nginx-1.11.10.tar.gz
* 解压 nginx 源码包
tar zxvf nginx-1.11.10.tar.gz
* 进入 nginx 包目录
cd nginx-1.11.10
* 指定安装目录、用户、模块
[root@nginx ~]# ./configure –prefix=/usr/local/nginx-1.11.10 –user=www –group=www –with-http_ssl_module –with-http_stub_status_module
* 编译并安装
[root@nginx ~]# make && make install
* 做 nginx 软链接
[root@nginx ~]# ln -s /usr/local/nginx-1.11.10 /usr/local/nginx
4. 创建启动脚本
* /etc/init.d/nginx
#!/bin/sh
#
# nginx – this script starts and stops the nginx daemon
#
# chkconfig: – 85 15
# description: NGINX is an HTTP(S) server, HTTP(S) reverse \
# proxy and IMAP/POP3 proxy server
# processname: nginx
# config: /usr/local/nginx/conf/nginx.conf
# config: /etc/sysconfig/nginx
# pidfile: /var/run/nginx.pid
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
# Check that networking is up.
[“$NETWORKING” = “no”] && exit 0
nginx=”/usr/local/nginx/sbin/nginx”
prog=$(basename $nginx)
NGINX_CONF_FILE=”/usr/local/nginx/conf/nginx.conf”
[-f /etc/sysconfig/nginx] && . /etc/sysconfig/nginx
lockfile=/var/lock/subsys/nginx
make_dirs() {
# make required directories
user=`$nginx -V 2>&1 | grep “configure arguments:” | sed ‘s/[^*]*–user=\([^]*\).*/\1/g’ -`
if [-z “`grep $user /etc/passwd`”]; then
useradd -M -s /bin/nologin $user
fi
options=`$nginx -V 2>&1 | grep ‘configure arguments:’`
for opt in $options; do
if [`echo $opt | grep ‘.*-temp-path’`]; then
value=`echo $opt | cut -d “=” -f 2`
if [! -d “$value”]; then
# echo “creating” $value
mkdir -p $value && chown -R $user $value
fi
fi
done
}
start() {
[-x $nginx] || exit 5 [-f $NGINX_CONF_FILE] || exit 6
make_dirs echo -n $”Starting $prog: “
daemon $nginx -c $NGINX_CONF_FILE
retval=$?
echo
[$retval -eq 0] && touch $lockfile
return $retval
}
stop() {
echo -n $”Stopping $prog: “
killproc $prog -QUIT retval=$?
echo
[$retval -eq 0] && rm -f $lockfile
return $retval
}
restart() {
configtest || return $?
stop
sleep 1
start
}
reload() {
configtest || return $?
echo -n $”Reloading $prog: “
killproc $nginx -HUP RETVAL=$?
echo
}
force_reload() {
restart
}
configtest() {
$nginx -t -c $NGINX_CONF_FILE
}
rh_status() {
status $prog
}
rh_status_q() {
rh_status >/dev/null 2>&1
}
case “$1” in
start)
rh_status_q && exit 0
$1
;;
stop)
rh_status_q || exit 0
$1
;;
restart|configtest)
$1
;;
reload)
rh_status_q || exit 7
$1
;;
force-reload)
force_reload
;;
status)
rh_status
;;
condrestart|try-restart)
rh_status_q || exit 0
;;
*)
echo $”Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}”
exit 2
esac
* 改变 nginx 脚本文件权限
[root@nginx ~]# chmod 755 /etc/init.d/nginx
* 添加进 service 管理服务并设置开机启动
[root@nginx ~]# chkconfig –add nginx
[root@nginx ~]# chkconfig nginx on
5. 服务启动测试
[root@nginx ~]# service nginx start
可以看到 80 默认的 80 端口 nginx 已经开始监听
6. 访问测试
* 通过浏览器测试, 此 nginx 宿主机 ip 为 192.168.222.128
访问成功,nginx 已经成功返回页面
Nginx、Apache 工作原理及 Nginx 为何比 Apache 高效 http://www.linuxidc.com/Linux/2017-03/141896.htm
CentOS 7 下 Nginx 服务器的安装配置 http://www.linuxidc.com/Linux/2017-04/142986.htm
CentOS 上安装 Nginx 服务器实现虚拟主机和域名重定向 http://www.linuxidc.com/Linux/2017-04/142642.htm
CentOS 6.8 安装 LNMP 环境(Linux+Nginx+MySQL+PHP)http://www.linuxidc.com/Linux/2017-04/142880.htm
Nginx 服务的 SSL 认证和 htpasswd 认证 http://www.linuxidc.com/Linux/2017-04/142478.htm
Nginx 日志过滤 使用 ngx_log_if 不记录特定日志 http://www.linuxidc.com/Linux/2014-07/104686.htm
CentOS 7.2 下 Nginx+PHP+MySQL+Memcache 缓存服务器安装配置 http://www.linuxidc.com/Linux/2017-03/142168.htm
Nginx 的详细介绍 :请点这里
Nginx 的下载地址 :请点这里
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2017-04/143022.htm