一、Nginx简介

Nginx ("engine x") 是一个高性能的 HTTP 反向代理 服务器,主要代理 IMAP/POP3/SMTP Nginx因为它的稳定性、丰富的功能集、示例配置文件和低系统资源的消耗而闻名。可以运行在大多数版本的操作系统上,占有内存少,并发能力强,事实上nginx的并发能力确实在同类型的网页服务器中表现较好,能够支持高达 50,000 个并发连接数的响应,Nginx采用C进行编写,几乎可以做到7*24不间断运行,即使运行数个月也不需要重新启动。你还能够不间断服务的情况下进行软件版本的升级

Nginx 作为http服务处理静态文件,索引文件以及自动索引,反向代理加速(无缓存),简单的负载均衡和容错,以fastcgi的方式支持PHP,不像apache一样以模块的方式支持php

其他HTTP功能,基于ip的虚拟主机和基于域名的虚拟主机

二、nginx安装配置

模块依赖性

gzip模快需要zlib

rewrite模块需要 pcre

ssl 功能需要openssl


1、安装 pcre-8.32.tar.gz

   tar xf pcre-8.32.tar.gz

   cd pcre-8.32

   ./configure --prefix=/usr/local/pcre

   make&& make install

2编译安装nginx-1.5.4.tar.gz

   ./configure  --prefix=/usr/local/nginx  --with-http_ssl_module  --with-http_stub_status_module

   make &&make install

添加软连接ln -s /usr/local/lib/libpcre.so.1 /lib64/

配置文件测试 /usr/local/nginx/sbin/nginx –t

启动Nginx /usr/local/nginx/sbin/nginx

浏览器访问验证:

企业级nginx负载均衡和反向代理搭建_负载均衡之nginx

三、nginx负载均衡

1、配主置文档nginx.conf (http模块添加以下)

upstream webserver{

server 192.168.126.133:80 weight=2;

server 192.168.126.131:80 weight=2;

}

server {

listen80;

server_namelocalhost;

location / {

proxy_pass http://webserver;

2、客户端一配置

echo “this isreal-server1” >/var/www/html/index.html

/etc/init.d/iptablesstop

vim/etc/sysctl.conf

net.ipv4.ip_forward=1

service httpd  start

3、客户端二配置

Echo “this isreal-server2” >/var/www/html/index.html

/etc/init.d/iptablesstop

Vim/etc/sysctl.conf

net.ipv4.ip_forward=1

service httpdstart

4、验证

企业级nginx负载均衡和反向代理搭建_负载均衡之nginx_02

企业级nginx负载均衡和反向代理搭建_负载均衡之nginx_03


四、反向代理

1、配主置文档nginx.conf (server模块添加以下)

location / {

proxy_pass http://192.168.126.131;

2、客户端配置

Echo “this isproxy server ” >/var/www/html/index.html

/etc/init.d/iptablesstop

Vim/etc/sysctl.conf

net.ipv4.ip_forward=1

service httpdstart

3、验证

企业级nginx负载均衡和反向代理搭建_负载均衡之nginx_04