Docker consul的容器服务注册与发现-2

本文涉及的产品
日志服务 SLS,月写入数据量 50GB 1个月
简介: Docker consul的容器服务注册与发现

3.3 consul-template

Consul-Template是基于Consul的自动替换配置文件的应用。Consul-Template是一个守护进程,用于实时查询Consul集群信息,并更新文件系统上任意数量的指定模板,生成配置文件。更新完成以后,可以选择运行 shell 命令执行更新操作,重新加载 Nginx。


Consul-Template可以查询Consul中的服务目录、Key、Key-values 等。这种强大的抽象功能和查询语言模板可以使 Consul-Template 特别适合动态的创建配置文件。例如:创建Apache/Nginx Proxy Balancers 、 Haproxy Backends等。


3.3.1 准备 template nginx 模板文件

//在consul服务器上操作
vim /opt/consul/nginx.ctmpl
#定义nginx upstream一个简单模板
upstream http_backend {
  {{range service "nginx"}}
   server {{.Address}}:{{.Port}};
   {{end}}
}
#定义一个server,监听8000端口,反向代理到upstream
server {
    listen 8000;
    server_name localhost 192.168.147.105;
    access_log /var/log/nginx/zhangsan.com-access.log;              #修改日志路径
    index index.html index.php;
    location / {
        proxy_set_header HOST $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header Client-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://http_backend;
    }
}

5c003995e7864647a1e90b8c0ad9a124.png


3.3.2 编译安装nginx

yum -y install pcre-devel zlib-devel gcc gcc-c++ make
useradd -M -s /sbin/nologin nginx
tar zxvf nginx-1.12.0.tar.gz -C /opt/
cd /opt/nginx-1.12.0/
./configure --prefix=/usr/local/nginx --user=nginx --group=nginx && make -j2 && make install
ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/

3.3.3 配置 nginx

vim /usr/local/nginx/conf/nginx.conf
......
http {
     include       mime.types;
     include  vhost/*.conf;               #添加虚拟主机目录
     default_type  application/octet-stream;
......
//创建虚拟主机目录
mkdir /usr/local/nginx/conf/vhost
//创建日志文件目录
mkdir /var/log/nginx
//启动nginx
nginx

911b043f0fa549228210c959002261d7.png

1da1dea7bb914788987d746df0f21fcf.png


3.3.4 配置并启动 template

unzip consul-template_0.19.3_linux_amd64.zip -d /opt/
cd /opt/
mv consul-template /usr/local/bin/
//在前台启动 template 服务,启动后不要按 ctrl+c 中止 consul-template 进程。
consul-template --consul-addr 192.168.147.105:8500 \
--template "/opt/consul/nginx.ctmpl:/usr/local/nginx/conf/vhost/zhangsan.conf:/usr/local/nginx/sbin/nginx -s reload" \
--log-level=info

1589add1f9da4aa9b8b23838ac2260c4.png


3f45bdd3a8974128aa9cd680763f3cb2.png

//另外打开一个终端查看生成配置文件
cat /usr/local/nginx/conf/vhost/zhangsan.conf
upstream http_backend {
   server 192.168.147.106:83;
   server 192.168.147.106:84;
}
server {
  listen 8000;
  server_name 192.168.147.105;
  access_log /var/log/nginx/kgc.cn-access.log;
  index index.html index.php;
  location / {
    proxy_set_header HOST $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header Client-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_pass http://http_backend;
  }
}

36136b1166164a71806ea79c8381ad9d.png


3.3.5 访问 template-nginx

docker ps -a
CONTAINER ID   IMAGE   COMMAND                  CREATED           STATUS             PORTS                               NAMES
fe9d5e134efd   httpd   "httpd-foreground"       54 minutes ago    Up 54 minutes      0.0.0.0:89->80/tcp, :::89->80/tcp   test-04
65413265259b   httpd   "httpd-foreground"       54 minutes ago    Up 54 minutes      0.0.0.0:88->80/tcp, :::88->80/tcp   test-03
ca2baf553f2e   nginx   "/docker-entrypoint.…"   54 minutes ago    Up 54 minutes      0.0.0.0:84->80/tcp, :::84->80/tcp   test-02
97c361e14951   nginx   "/docker-entrypoint.…"   54 minutes ago    Up 54 minutes      0.0.0.0:83->80/tcp, :::83->80/tcp   test-01
c43854d28645   gliderlabs/registrator:latest   "/bin/registrator --…"   About an hour ago   Up About an hour                 registrator

6cab2232679448baaa754088e767ca97.png


docker exec -it 97c361e14951 bash
echo "this is test1 web" > /usr/share/nginx/html/index.html
docker exec -it ca2baf553f2e bash
echo "this is test2 web" > /usr/share/nginx/html/index.html
浏览器访问:http://192.168.147.105:8000/,并不断刷新。

ddd486621d344b48add2b025a1d6470f.png

e84f287a9cc746369d632ef296497698.png


3.3.6 增加一个 nginx 容器节点

增加一个 nginx 容器节点,测试服务发现及配置更新功能。

增加一个 nginx 容器节点,测试服务发现及配置更新功能。
docker run -itd -p:85:80 --name test-05 -h test05 nginx
观察 template 服务,会从模板更新/usr/local/nginx/conf/vhost/zhangsan.conf 文件内容,并且重载 nginx 服务。

4cc2f4bcfa4e440c90de857bbeebcf6e.png


查看/usr/local/nginx/conf/vhost/zhangsan.conf 文件内容

查看/usr/local/nginx/conf/vhost/zhangsan.conf 文件内容
cat /usr/local/nginx/conf/vhost/zhangsan.conf
upstream http_backend {
server 192.168.147.106:83;
server 192.168.147.106:84;
server 192.168.147.106:85;
}

d5e14cfa8bb24791bfce15790ea3393c.png


查看三台 nginx 容器日志,请求正常轮询到各个容器节点上

查看三台 nginx 容器日志,请求正常轮询到各个容器节点上
docker logs -f test-01
docker logs -f test-02
docker logs -f test-05

3.4 consul 多节点

//添加一台已有docker环境的服务器192.168.147.107/24加入已有的群集中(需要安装consul)
consul agent \
-server \
-ui \
-data-dir=/var/lib/consul-data \
-bind=192.168.147.107 \
-client=0.0.0.0 \
-node=consul-server02 \
-enable-script-checks=true  \
-datacenter=dc1  \
-join 192.168.147.105 &> /var/log/consul.log &
-enable-script-checks=true :设置检查服务为可用
-datacenter : 数据中心名称
-join :加入到已有的集群中

18b3304b3d63433d96c68cf2f393bcd1.png


consul members
Node             Address             Status  Type    Build  Protocol  DC
consul-server01  192.168.147.105:8301  alive   server  0.9.2  2         dc1
consul-server02  192.168.147.107:8301  alive   server  0.9.2  2         dc1
consul operator raft list-peers
Node             ID                  Address             State     Voter  RaftProtocol
Node             ID                  Address             State     Voter  RaftProtocol
consul-server01  192.168.147.105:8300  192.168.147.105:8300  leader    true   2
consul-server02  192.168.147.107:8300  192.168.147.107:8300  follower  true   2

4efc8175e2234c70b51846a0e1145c78.png


相关实践学习
巧用云服务器ECS制作节日贺卡
本场景带您体验如何在一台CentOS 7操作系统的ECS实例上,通过搭建web服务器,上传源码到web容器,制作节日贺卡网页。
容器应用与集群管理
欢迎来到《容器应用与集群管理》课程,本课程是“云原生容器Clouder认证“系列中的第二阶段。课程将向您介绍与容器集群相关的概念和技术,这些概念和技术可以帮助您了解阿里云容器服务ACK/ACK Serverless的使用。同时,本课程也会向您介绍可以采取的工具、方法和可操作步骤,以帮助您了解如何基于容器服务ACK Serverless构建和管理企业级应用。 学习完本课程后,您将能够: 掌握容器集群、容器编排的基本概念 掌握Kubernetes的基础概念及核心思想 掌握阿里云容器服务ACK/ACK Serverless概念及使用方法 基于容器服务ACK Serverless搭建和管理企业级网站应用
目录
相关文章
|
15天前
|
存储 Docker 容器
docker中挂载数据卷到容器
【10月更文挑战第12天】
42 5
|
1天前
|
JavaScript 持续交付 Docker
解锁新技能:Docker容器化部署在微服务架构中的应用
【10月更文挑战第29天】在数字化转型中,微服务架构因灵活性和可扩展性成为企业首选。Docker容器化技术为微服务的部署和管理带来革命性变化。本文探讨Docker在微服务架构中的应用,包括隔离性、可移植性、扩展性、版本控制等方面,并提供代码示例。
18 1
|
3天前
|
Docker 容器
docker 修改容器内的系统时间
【10月更文挑战第27天】docker 修改容器内的系统时间
53 2
|
7天前
|
负载均衡 应用服务中间件 nginx
基于Nginx和Consul构建自动发现的Docker服务架构——非常之详细
通过使用Nginx和Consul构建自动发现的Docker服务架构,可以显著提高服务的可用性、扩展性和管理效率。Consul实现了服务的自动注册与发现,而Nginx则通过动态配置实现了高效的反向代理与负载均衡。这种架构非常适合需要高可用性和弹性扩展的分布式系统。
15 4
|
9天前
|
Web App开发 iOS开发 Docker
Docker 容器的日志
【10月更文挑战第31天】
20 5
|
8天前
|
负载均衡 应用服务中间件 nginx
基于Nginx和Consul构建自动发现的Docker服务架构——非常之详细
通过使用Nginx和Consul构建自动发现的Docker服务架构,可以显著提高服务的可用性、扩展性和管理效率。Consul实现了服务的自动注册与发现,而Nginx则通过动态配置实现了高效的反向代理与负载均衡。这种架构非常适合需要高可用性和弹性扩展的分布式系统。
22 3
|
9天前
|
存储 缓存 Docker
docker中挂载数据卷到容器
【10月更文挑战第16天】
17 2
|
11天前
|
存储 关系型数据库 MySQL
|
12天前
|
存储 Docker 容器
docker中挂载数据卷到容器
【10月更文挑战第13天】
17 2
|
13天前
|
运维 监控 数据可视化
Docker容器可视化管理工具 - WGCLOUD基础介绍
WGCLOUD是新一代运维监测平台,它可以监控Docker容器的各种性能数据,比如内存,cpu,Image,运行时间,运行状态,端口映射等信息