共计 1629 个字符,预计需要花费 5 分钟才能阅读完成。
一、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 负载均衡
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 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 实现反向代理和负载均衡的配置及优化 http://www.linuxidc.com/Linux/2013-11/92909.htm
Nginx 做负载均衡报:nginx: [emerg] could not build the types_hash http://www.linuxidc.com/Linux/2013-10/92063.htm
Nginx 负载均衡模块 ngx_http_upstream_module 详述 http://www.linuxidc.com/Linux/2013-10/91907.htm
Nginx+Firebug 让浏览器告诉你负载均衡将请求分到了哪台服务器 http://www.linuxidc.com/Linux/2013-10/91824.htm
Ubuntu 安装 Nginx php5-fpm MySQL(LNMP 环境搭建) http://www.linuxidc.com/Linux/2012-10/72458.htm
Nginx 的详细介绍 :请点这里
Nginx 的下载地址 :请点这里