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

./configure

make&& make install

2、nginx编译安装

./configure--prefix=/urs/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负载均衡

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 ;

2、客户端一配置
Echo “this isreal-server1” >/var/www/html/index.html
/etc/init.d/iptablesstop
Vim/etc/sysctl.conf
net.ipv4.ip_forward=1
service httpdstart

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负载均衡服务搭建

推荐阅读

Nginx实现反向代理和负载均衡的配置及优化

Nginx做负载均衡报:nginx: [emerg] could not build the types_hash

Nginx 负载均衡模块 ngx_http_upstream_module 详述

Nginx+Firebug 让浏览器告诉你负载均衡将请求分到了哪台服务器

Ubuntu安装Nginx php5-fpm MySQL(LNMP环境搭建)

Nginx 的详细介绍请点这里
Nginx 的下载地址请点这里

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/a8505bcc9fd1d5a64a39db13e704803d.html