目录
一、consul的工作原理
数据流向:
1、registrator:用于监控返现和注册到consul服务内
2、consul服务:存储reg注册的变化的容器信息,然后变化信息以参数的方式传给template
3、template会接收参数,然后将参数改为具体的upstream的配置放入ng的子配置文件中(1.conf)
最后,nginx -s reload
二、部署consul
服务器:192.168.250.12 Docker-ce、Compose 3、Consul、Consul-template
服务器:192.168.250.60 Docker-ce、registrator
2.1.在 192.168.250.12机器上操作
mkdir /root/consul
cp consul_0.9.2_linux_amd64.zip /root/consul
#把包放到/root/consul
cd /root/consul
unzip consul_0.9.2_linux_amd64.zip
mv consul /usr/bin
consul agent \
-server \ server模式
-bootstrap \ 前端框架
-ui \ 可被访问的web界面
-data-dir=/var/lib/consul-data \
-bind=192.168.226.128 \
-client=0.0.0.0 \
-node=consul-server01 &> /var/log/consul.log &
consul agent \
-server \
-bootstrap \
-ui \
-data-dir=/var/lib/consul-data \
-bind=192.168.250.12 \
-client=0.0.0.0 \
-node=consul-server01 &> /var/log/consul.log &
#查看集群信息
#通过httpd api 获取集群信息
curl 127.0.0.1:8500/v1/status/peers //查看集群server成员
curl 127.0.0.1:8500/v1/status/leader //集群 Raf leader
curl 127.0.0.1:8500/v1/catalog/services //注册的所有服务
curl 127.0.0.1:8500/v1/catalog/nginx //查看 nginx 服务信息
curl 127.0.0.1:8500/v1/catalog/nodes //集群节点详细信息
2.2.在192.168.250.60机器上操作
容器服务自动加入consul集群
1. 安装 Gliderlabs/Registrator Gliderlabs/Registrator
可检查容器运行状态自动注册,还可注销 docker 容器的服务 到服务配置中心。
目前支持 Consul、Etcd 和 SkyDNS2。
docker run -d \
--name=registrator \
--net=host \
-v /var/run/docker.sock:/tmp/docker.sock \
--restart=always \
gliderlabs/registrator:latest \
-ip=192.168.250.60 \
consul://192.168.250.12:8500
2. 测试服务发现功能是否正常
docker run -itd -p:83:80 --name test-01 -h test01 nginx
docker run -itd -p:84:80 --name test-02 -h test02 nginx
docker run -itd -p:88:80 --name test-03 -h test03 httpd
docker run -itd -p:89:80 --name test-04 -h test04 httpd
3. 验证 http 和 nginx 服务是否注册到 consul
浏览器输入 http://192.168.250.12:8500,“单击 NODES”,然后单击 “consurl-server01”,会出现4个服务。
#在consul服务器上查看服务
4. 安装 consul-template
Consul-Template 是一个守护进程,用于实时查询 Consul 集群信息,并更新文件系统 上任意数量的指定模板,生成配置文件。更新完成以后,可以选择运行 shell 命令执行更新 操作,重新加载 Nginx。Consul-Template 可以查询 Consul 中的服务目录、Key、Key-values 等。这种强大的抽象功能和查询语言模板可以使 Consul-Template 特别适合动态的创建配置文件。
例如:创建 Apache/Nginx Proxy Balancers、Haproxy Backends。
5. 准备 template nginx 模板文件
在consul服务器上操作(192.168.250.12)
vim /root/consul/nginx.ctmpl
upstream http_backend {
{{range service "nginx"}}
server {{.Address}}:{{.Port}}; #此处引用的变量会指向后端的地址和端口(动态变化)
{{end}}
}
server {
listen 83;
server_name localhost 192.168.250.12; #反向代理的IP地址(前端展示的NG服务的IP)
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; #后端真实IP
proxy_set_header Client-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; #转发地址
proxy_pass http://http_backend;
}
}
6.编译安装nginx
在consul服务器上操作(192.168.250.12)
yum install gcc pcre-devel zlib-devel -y
cd /opt
#把软件包放到opt下
tar zxvf nginx-1.20.2.tar.gz -C /opt
cd nginx-1.20.2
./configure --prefix=/usr/local/nginx
make && make install
7. 配置 nginx
在consul服务器上操作(192.168.250.12)
vim /usr/local/nginx/conf/nginx.conf
http {
include mime.types; #默认存在的
include vhost/*.conf; ####添加虚拟主机目录(consul动态生成的配置文件就会放在这里)
default_type application/octet-stream;
##创建虚拟主机目录
mkdir /usr/local/nginx/conf/vhost
##创建日志文件目录
mkdir /var/log/nginx
##启动nginx
ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/
nginx
ss -natp |grep nginx
8. 配置并启动 template
在consul服务器上操作(192.168.250.12)
上传 consul-template_0.19.3_linux_amd64.zip 包到/root 目录下
unzip consul-template_0.19.3_linux_amd64.zip
mv consul-template /usr/bin/
##关联nginx 虚拟目录中的子配置文件操作
consul-template -consul-addr 192.168.250.12:8500 \
-template "/root/consul/nginx.ctmpl:/usr/local/nginx/conf/vhost/kgc.conf:/usr/local/nginx/sbin/nginx -s reload" \
--log-level=info
#另外打开一个终端查看生成配置文件
2.3.#增加一个nginx容器节点
增加一个 nginx 容器节点,测试服务发现及配置更新功能
//在registrator服务端注册(192.168.250.60)
docker run -itd -p 85:80 --name test-05 -h test05 nginx
//在consul服务器监控装填会有提示自动更新
//查看三台nginx容器日志,请求正常轮询到各个容器节点上
docker logs -f test-01
docker logs -f test-02
docker logs -f test-03
docker logs -f test-04
docker logs -f test-05