天天看点

如何使用 Weave 以及 Docker 搭建 Nginx 反向代理/负载均衡服务器

hi, 今天我们将会学习如何使用 weave 和 docker 搭建 nginx 的反向代理/负载均衡服务器。weave 可以创建一个虚拟网络将 docker 容器彼此连接在一起,支持跨主机部署及自动发现。它可以让我们更加专注于应用的开发,而不是基础架构。weave 提供了一个如此棒的环境,仿佛它的所有容器都属于同个网络,不需要端口/映射/连接等的配置。容器中的应用提供的服务在 weave 网络中可以轻易地被外部世界访问,不论你的容器运行在哪里。在这个教程里我们将会使用 weave 快速并且简单地将 nginx web 服务器部署为一个负载均衡器,反向代理一个运行在 amazon web services 里面多个节点上的 docker 容器中的简单 php 应用。这里我们将会介绍 weavedns,它提供一个不需要改变代码就可以让容器利用主机名找到的简单方式,并且能够让其他容器通过主机名连接彼此。

在这篇教程里,我们将使用 nginx 来将负载均衡分配到一个运行 apache 的容器集合。最简单轻松的方法就是使用 weave 来把运行在 ubuntu 上的 docker 容器中的 nginx 配置成负载均衡服务器。

如何使用 Weave 以及 Docker 搭建 Nginx 反向代理/负载均衡服务器

<a target="_blank"></a>

<code>$ git clone https://github.com/weaveworks/guides</code>

<code>$ cd weave-gs/aws-nginx-ubuntu-simple</code>

在克隆完仓库之后,我们执行下面的脚本,这个脚本将会部署两个 t1.micro 实例,每个实例中都是 ubuntu 作为操作系统并用 weave 跑着 docker 容器。

<code>$ sudo ./demo-aws-setup.sh</code>

在这里,我们将会在以后用到这些实例的 ip 地址。这些地址储存在一个 weavedemo.env 文件中,这个文件创建于执行 demo-aws-setup.sh 脚本期间。为了获取这些 ip 地址,我们需要执行下面的命令,命令输出类似下面的信息。

<code>$ cat weavedemo.env</code>

<code></code>

<code>export weave_aws_demo_host1=52.26.175.175</code>

<code>export weave_aws_demo_host2=52.26.83.141</code>

<code>export weave_aws_demo_hostcount=2</code>

<code>export weave_aws_demo_hosts=(52.26.175.175 52.26.83.141)</code>

请注意这些不是固定的 ip 地址,aws 会为我们的实例动态地分配 ip 地址。

我们在 bash 下执行下面的命令使环境变量生效。

<code>. ./weavedemo.env</code>

在安装完实例之后,我们将会在每台主机上启动 weave 以及 weavedns。weave 以及 weavedns 使得我们能够轻易地将容器部署到一个全新的基础架构以及配置中, 不需要改变代码,也不需要去理解像 ambassador 容器以及 link 机制之类的概念。下面是在第一台主机上启动 weave 以及 weavedns 的命令。

<code>ssh -i weavedemo-key.pem ubuntu@$weave_aws_demo_host1</code>

<code>$ sudo weave launch</code>

<code>$ sudo weave launch-dns 10.2.1.1/24</code>

下一步,我也准备在第二台主机上启动 weave 以及 weavedns。

<code>ssh -i weavedemo-key.pem ubuntu@$weave_aws_demo_host2</code>

<code>$ sudo weave launch $weave_aws_demo_host1</code>

<code>$ sudo weave launch-dns 10.2.1.2/24</code>

现在,我们准备跨两台主机启动六个容器,这两台主机都用 apache2 web 服务实例跑着简单的 php 网站。为了在第一个 apache2 web 服务器实例跑三个容器, 我们将会使用下面的命令。

<code>$ sudo weave run --with-dns 10.3.1.1/24 -h ws1.weave.local fintanr/weave-gs-nginx-apache</code>

<code>$ sudo weave run --with-dns 10.3.1.2/24 -h ws2.weave.local fintanr/weave-gs-nginx-apache</code>

<code>$ sudo weave run --with-dns 10.3.1.3/24 -h ws3.weave.local fintanr/weave-gs-nginx-apache</code>

在那之后,我们将会在第二个实例上启动另外三个容器,请使用下面的命令。

<code>$ sudo weave run --with-dns 10.3.1.4/24 -h ws4.weave.local fintanr/weave-gs-nginx-apache</code>

<code>$ sudo weave run --with-dns 10.3.1.5/24 -h ws5.weave.local fintanr/weave-gs-nginx-apache</code>

<code>$ sudo weave run --with-dns 10.3.1.6/24 -h ws6.weave.local fintanr/weave-gs-nginx-apache</code>

注意: 在这里,--with-dns 选项告诉容器使用 weavedns 来解析主机名,-h x.weave.local 则使得 weavedns 能够解析该主机。

在应用容器如预期的运行后,我们将会启动 nginx 容器,它将会在六个应用容器服务之间轮询并提供反向代理或者负载均衡。 为了启动 nginx 容器,请使用下面的命令。

<code>$ sudo weave run --with-dns 10.3.1.7/24 -ti -h nginx.weave.local -d -p 80:80 fintanr/weave-gs-nginx-simple</code>

因此,我们的 nginx 容器在 $weaveawsdemo_host1 上公开地暴露成为一个 http 服务器。

为了测试我们的负载均衡服务器是否可以工作,我们执行一段可以发送 http 请求给 nginx 容器的脚本。我们将会发送6个请求,这样我们就能看到 nginx 在一次的轮询中服务于每台 web 服务器之间。

<code>$ ./access-aws-hosts.sh</code>

<code>{</code>

<code>"message" : "hello weave - nginx example",</code>

<code>"hostname" : "ws1.weave.local",</code>

<code>"date" : "2015-06-26 12:24:23"</code>

<code>}</code>

<code>"hostname" : "ws2.weave.local",</code>

<code>"hostname" : "ws3.weave.local",</code>

<code>"hostname" : "ws4.weave.local",</code>

<code>"hostname" : "ws5.weave.local",</code>

<code>"hostname" : "ws6.weave.local",</code>

我们最终成功地将 nginx 配置成一个反向代理/负载均衡服务器,通过使用 weave 以及运行在 aws(amazon web service)ec2 里面的 ubuntu 服务器中的 docker。从上面的步骤输出可以清楚的看到我们已经成功地配置了 nginx。我们可以看到请求在一次轮询中被发送到6个应用容器,这些容器在 apache2 web 服务器中跑着 php 应用。在这里,我们部署了一个容器化的 php 应用,使用 nginx 横跨多台在 aws ec2 上的主机而不需要改变代码,利用 weavedns 使得每个容器连接在一起,只需要主机名就够了,眼前的这些便捷, 都要归功于 weave 以及 weavedns。

本文来自云栖社区合作伙伴“linux中国”,原文发布日期:2015-09-05

继续阅读