服務(wù)器類型 | 系統(tǒng) | IP地址 | 需要安裝的組件 |
---|---|---|---|
consul服務(wù)器 | CentOS7.4(64 位) | 192.168.80.10 | 運(yùn)行consul服務(wù)、nginx服務(wù)、consul-template守護(hù)進(jìn)程 |
registrator服務(wù)器 | CentOS7.4(64 位) | 192.168.80.20 | 運(yùn)行registrator容器、nginx服務(wù) |
所有服務(wù)器關(guān)閉防火墻和SElinux
systemctl stop firewalld setenforce 0
mkdir /opt/consul/ cd /opt/consul/ rz -E #導(dǎo)入下面的壓縮包 consul_0.9.2_linux_amd64.zip unzip consul_0.9.2_linux_amd64.zip mv consul /usr/local/bin/
consul agent \ -server \ -bootstrap \ -ui \ -data-dir=/var/lib/consul-data \ -bind=192.168.80.10 \ -client=0.0.0.0 \ -node=consul-server01 &> /var/log/consul.log & netstat -napt | grep consul consul members consul info | grep leader
相關(guān)選項(xiàng)說明如下:
選項(xiàng) | 說明 |
---|---|
-以server身份啟動(dòng) | 默認(rèn)是client。 |
-bootstrap | 用來控制一個(gè)server 是否在bootstrap模式,在一個(gè)數(shù)據(jù)中心中只能有一個(gè)server處于bootstrap模式,當(dāng)一個(gè)server處于bootstrap模式時(shí),可以自己選舉為server-leader |
-bootstrap-expect=2 | 集群要求的最少server數(shù)量,當(dāng)?shù)陀谶@個(gè)數(shù)量,集群即失效。 |
-ui | 指定開啟UI界面,這樣可以通過http://localhost:8500/ui 這樣的地址訪問consul 自帶的web UI界面。 |
-data-dir | 指定數(shù)據(jù)存儲(chǔ)日錄。 |
-bind | 指定用來在集群內(nèi)部的通訊地址,集群內(nèi)的所有節(jié)點(diǎn)到此地址都必須是可達(dá)的,默認(rèn)是0.0.0.0。 |
-client | 指定consul 綁定在哪個(gè)client地址上,這個(gè)地址提供HTTP、DNS、RPC等服務(wù),默認(rèn)是127.0.0.1。 |
-node | 節(jié)點(diǎn)在集群中的名稱,在一個(gè)集群中必須是唯一的, 默認(rèn)是該節(jié)點(diǎn)的主機(jī)名。 |
-datacenter | 指定數(shù)據(jù)中心名稱,默認(rèn)是dc1。 |
1)查看member狀態(tài)和查看集群狀態(tài)
查看集群server成員 curl 127.0.0.1:8500/v1/status/peers 集群Raf leader curl 127.0.0.1:8500/v1/status/leader 注冊的所有服務(wù) curl 127.0.0.1:8500/v1/catalog/services 查看nginx服務(wù)信息 curl 127.0.0.1:8500/v1/catalog/nginx 集群節(jié)點(diǎn)詳細(xì)信息 curl 127.0.0.1:8500/v1/catalog/nodes
docker run -d \ --name=registrator \ --net=host \ -v /var/run/docker.sock:/tmp/docker.sock \ --restart=always \ gliderlabs/registrator:latest \ -ip=192.168.80.20 \ consul://192.168.80.10:8500
–net=host | 把運(yùn)行的docker容器設(shè)定為host網(wǎng)絡(luò)模式。 |
---|---|
-v /var/run/docker.sock:/tmp/docker.sock | 把宿主機(jī)的Docker守護(hù)進(jìn)程(Docker daemon)默認(rèn)監(jiān)聽的Unix域套接字掛載到容器中。 |
–restart=always | 設(shè)置在容器退出時(shí)總是重啟容器。 |
–ip | 剛才把network指定了host模式,所以我們指定ip為宿主機(jī)的ip。 |
consul | 指定consul服務(wù)器的IP和端口。 |
docker run -itd -p:81:80 --name test-01 -h test01 nginx docker run -itd -p:82:80 --name test-02 -h test02 nginx docker run -itd -p:83:80 --name test-03 -h test03 httpd docker run -itd -p:84:80 --name test-04 -h test04 httpd
在consul服務(wù)器上進(jìn)行操作
1)添加nginx.ctmpl配置文件
[root@consul consul]# pwd #當(dāng)前在/opt/consul目錄下 /opt/consul [root@consul consul]# vim nginx.ctmpl upstream nginx_slb { {{range service "nginx"}} server {{.Address}}:{{.Port}}; {{end}} } server { listen 8000; server_name localhost 192.168.80.10; access_log /var/log/nginx/clj.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://nginx_slb; } }
2)傳入nginx安裝包并解壓
cd .. rz -E #上傳nginx壓縮包,如下: nginx-1.12.0.tar.gz tar zxvf nginx-1.12.0.tar.gz #解壓
3)創(chuàng)建nginx程序用戶并安裝依賴包
useradd -M -s /sbin/nologin nginx yum -y install gcc pcre-devel zlib-devel gcc-c++ make
4)編譯安裝后優(yōu)化路徑
cd nginx-1.12.0/ ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx && make && make install ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/
5)修改nginx配置文件
cd /usr/local/nginx/conf/ vim nginx.conf http { include vhost/*.conf; #19行添加此項(xiàng)配置
6)創(chuàng)建nginx服務(wù)的vhost和日志目錄
mkdir vhost mkdir /var/log/nginx nginx #啟動(dòng)nginx netstat -natp | grep :80 tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 59892/nginx: master
7)傳入consul-template_0.19.3_linux_amd64.zip壓縮包并解壓
cd /opt/ rz -E #傳入template文件,如下 consul-template_0.19.3_linux_amd64.zip unzip consul-template_0.19.3_linux_amd64.zip mv consul-template /usr/local/bin/
8)前臺(tái)啟動(dòng)consul-template(后臺(tái)也可以)
consul-template --consul-addr 192.168.80.10:8500 \ --template "/opt/consul/nginx.ctmpl:/usr/local/nginx/conf/vhost/clj.conf:/usr/local/nginx/sbin/nginx -s reload" \ --log-level=info
9)新開一個(gè)終端查看配置文件是否生成
cd /usr/local/nginx/conf/vhost/ vim clj.conf
10)在registrator服務(wù)器上添加端口為85的nginx容器
docker run -itd -p:85:80 --name test-05 -h test05 nginx
11)查看consul服務(wù)器運(yùn)行template服務(wù)頁面發(fā)生了變化
12)再次查看一下配置文件(可以看到增加一個(gè)85端口,使用docker stop停止一個(gè)容器的話,配置文件也會(huì)相對應(yīng)改變)
13)修改容器nginx站點(diǎn)目錄中默認(rèn)的html.index文件
14)在瀏覽器中進(jìn)行訪問測試
1)先建立 consul 服務(wù)
rz -y #導(dǎo)入consul壓縮包 consul_0.9.2_linux_amd64.zip mv consul /usr/local/bin/
2)添加一臺(tái)已有docker環(huán)境的服務(wù)器加入到已有的集群中
consul agent \ -server \ --bootstrap \ -ui \ -data-dir=/var/lib/consul-data \ -bind=192.168.80.30 \ -client=0.0.0.0 \ -node=consul-server02 \ -enable-script-checks=true \ -datacenter=dc1 \ -join 192.168.80.10 &> /var/log/consul.log &
–enable-script-ckecks=true | 設(shè)置檢查服務(wù)為可用 |
---|---|
-datacenter | 數(shù)據(jù)中心名稱 |
-join | 加入到已有的集群中 |
–enable-script-ckecks=true
3)在consul服務(wù)器上查看
到此這篇關(guān)于Docker consul的容器服務(wù)更新與發(fā)現(xiàn)的文章就介紹到這了,更多相關(guān)Docker consul容器內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
標(biāo)簽:松原 朝陽 泰州 慶陽 周口 銅川 蕪湖 那曲
巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Docker consul的容器服務(wù)更新與發(fā)現(xiàn)的問題小結(jié)》,本文關(guān)鍵詞 Docker,consul,的,容器,服務(wù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。