Nginx负载均衡和动静分离

Nginx负载均衡和动静分离

实验目的:实现Nginx的负载均衡和动静分离

实现环境:一台server用作Nginx代理(需要两块网卡,eth0连接内网,eth1连接外网),两台用作web服务(每台server都定义两个虚拟机,端口分别是808080),一台客户端用于验证结果;

操作步骤

负载均衡的实现:

一、配置IP

1.配置A主机的IP

# ip addr add dev eth0 192.168.10.254/24

# ip addr add dev eth1 192.168.20.254/24

2.配置B主机的IP

# ip addr add dev eth0 192.168.10.2/24

3.配置C主机的IP

# ip ddr add dev eth0 192.168.10.3/24

二、配置web服务(BC主机都做同样配置)

1.安装所需程序包

# yum -y install nginx php-fpm

2.配置web服务,提供默认主页

# vim /etc/nginx/conf.d/defalut.conf

    server {

        index index.php index.html;

    }

    location / {

        fastcgi_pass 127.0.0.1:9000;

        fastcgi_index index.php;

        fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name;

        include fastcgi_params;

    }

# vim /usr/share/nginx/html/index.php

    <?php

        phpinfo();

    ?>

3.php-fpm的运行用户和组改为nginx

# vim /etc/php-fpm.d/www.conf

    user = nginx

    group = nginx

4.启动php-fpmnginx

# service php-fpm start

# service nginx start

三、配置代理,以集群方式实现负载均衡

1.安装nginx

# yum -y install nginx

2.定义动态页面集群组,在http{}段中定义;

# vim /etc/nginx/nginx.conf

    http {

        upstream websrvs {

            server 192.168.10.2:80;

            server 192.168.10.3:80;

        }

    }

3.调用定义的集群组,在server{}段的location{}段中调用;

# vim /etc/nginx/conf.d/default.conf

        server {

            location / {

                proxy_pass http://wersrvs;\

               index index.php;

            }

        }

4.启动服务

# service nginx start

5.在客户端上测试,访问192.168.20.254地址,响应的服务器是轮询的结果;

动静分离的实现:

一、配置虚拟主机

1.配置虚拟主机(BC主机都作同样配置,默认主页中的ip地址改为C主机的ip,以示区分)

# vim /etc/nginx/conf.d/default.conf

    server {

        listen 8080;

        server_name _;

        index index.html

        location / {

            root /var/www/static;

        }

    }

2.创建默认主页

# mkdir -v /var/www/static

# vim /var/www/static/index.html

    <h1>static page 192.168.10.2</h1>

3.检测和重载配置

# nginx -t

# nginx -s reload

二、定义静态页面集群组及调用

1.定义静态页面集群组

# vim /etc/nginx/nginx.conf

    http {

        upstream statrvs {

            server 192.168.10.2:8080;

            server 192.168.10.3:8080;

        }

    }

2.调用定义的集群组,在server{}段的location{}段中调用;

# vim /etc/nginx/conf.d/default.conf

    server {

        location ~* \.(jpg|jpeg|png|gif|html)$ {

            proxy_pass http://stasrvs;

            index index.html;

        }

    }

结果验证:

1.访问静态页面,在浏览器中输入地址:192.168.20.254/index.html,此时响应的集群组是stasrvs,且后端的服务器轮询响应请求;

2.访问动态页面,在浏览器中输入地址:192.168.20.254/index.php,此时响应的集群组是websrvs,且后端的服务器轮询响应请求;

原创文章,作者:人字拖,如若转载,请注明出处:http://www.178linux.com/75483

(0)
人字拖人字拖
上一篇 2017-05-13
下一篇 2017-05-14

相关推荐

  • bash脚本基础认知

    编程基础:程序:指令+数据                过程式:以指令为中心,数据服务于指令              &nbs…

    Linux干货 2017-03-02
  • Function函数实例

    函数:function     把一段独立功能的代码当做一个整体,而后为之取一个名字,命令的代码段,即为函数。 注意:     定义函数的代码段不会自动执行,在调用时执行;所谓调用函数,在代码中给定函数名即可     函数名出现的任何位置,…

    Linux干货 2016-08-21
  • ​Bash2

    字串比较时变量最好使用"" 这样就不会报错了,只是退出码不为0 组合条件:     与:[ condition1 -a condition2 ]或condition1 && condition2     或:[ condition1 -o co…

    Linux干货 2016-09-25
  • LVS详解

    概述     LVS是工作在4层的负载均衡调度器,可根据请求报文的目标IP和目标协议及端口,根据指定的调度算法,将请求调度转发至某RealServer,本篇就针对LVS的原理,配置和使用进行简单介绍,具体包含:     1、LVS的四种类型的介绍   &nbs…

    Linux干货 2016-10-27
  • Linux文件查找工具之find “大宝剑”

    一、文件查找工具常用软件 locate:     locate命令其实是find -name的另一种写法,但是要比后者快得多,原因在于它不搜索具体目录,而是搜索一个数据库/var/lib/locatedb,这个数据库中含有本地所有文件信息。Linux系统自动创建这个数据库,并且每天自动更新一次,所以使用locate命令…

    Linux干货 2016-03-12
  • 第七周博客作业

    1、创建一个10G分区,并格式为ext4文件系统; (1) 要求其block大小为2048, 预留空间百分比为2, 卷标为MYDATA, 默认挂载属性包含acl; [root@localhost tmp]# cat /proc/partitions major minor #blocks name 8 16 52428800 sdb 8 17 1049041…

    Linux干货 2017-03-06