溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

nginx反向代理docker,并用nfs同步docker

發(fā)布時(shí)間:2020-06-22 07:34:31 來源:網(wǎng)絡(luò) 閱讀:378 作者:qq5bb2021f831d3 欄目:云計(jì)算

nginx反向代理docker,并用nfs同步docker
nginx1 192.168.1.10

nginx2 192.168.1.20

docker01 192.168.1.30

docker02 192.168.1.40

nfs主 192.168.1.50

nfs備 192.168.1.60

nfs1下載安裝nfs:
[root@nfs01 ~]# yum -y install nfs-utils

[root@nfs01 ~]# cd /datashare/
[root@nfs01 datashare]# vim /etc/exports

添加:

/datashare *(rw,sync,no_root_squash)

啟動(dòng):

[root@nfs01 datashare]# systemctl start rpcbind
[root@nfs01 datashare]# systemctl enable rpcbind
[root@nfs01 datashare]# systemctl start nfs-server
[root@nfs01 datashare]# systemctl enable nfs-server
docker01上操作:

導(dǎo)入鏡像:
nginx反向代理docker,并用nfs同步docker

[root@docker01 ~]# docker load < nginx.tar 

[root@docker01 ~]# mkdir /wwwroot
[root@docker01 ~]# mkdir /docker

[root@docker01 ~]# docker run -itd --name test nginx:latest

[root@docker01 ~]# docker cp test:/etc/nginx /docker/

[root@docker01 ~]# docker cp test:/usr/share/nginx/html /wwwroot/
[root@docker01 ~]# showmount -e 192.168.1.50
Export list for 192.168.1.50:
/datashare *

[root@docker01 ~]# mount 192.168.1.50:/datashare /wwwroot/html/

[root@docker01 ~]# docker run -itd --name nginx-web1 -v /docker/nginx:/etc/nginx -v /wwwroot/html:/usr/share/nginx/html -p 80:80 nginx:latest
docker02上操作:

導(dǎo)入鏡像:

nginx反向代理docker,并用nfs同步docker

[root@docker02 ~]# docker load < nginx.tar

[root@docker02 ~]# mkdir /wwwroot
[root@docker02 ~]# mkdir /docker

[root@docker02 ~]# docker run -itd --name test nginx:latest 

[root@docker02 ~]# docker cp test:/etc/nginx /docker/
[root@docker02 ~]# docker cp test:/usr/share/nginx/html /wwwroot/
[root@docker02 ~]# showmount -e 192.168.1.50
Export list for 192.168.1.50:
/datashare *

[root@docker02 ~]# mount 192.168.1.50:/datashare /wwwroot/html/

[root@docker02 ~]# docker run -itd --name nginx-web2 -v /docker/nginx:/etc/nginx -v /wwwroot/html:/usr/share/nginx/html -p 80:80 nginx:latest 
更改docker01網(wǎng)頁界面,docker02上驗(yàn)證同步:
[root@docker01 ~]# cd /wwwroot/html/

[root@docker01 html]# cat index.html 
skx nginx

[root@docker01 html]# curl 127.0.0.1
skx nginx

[root@docker02 ~]# curl 127.0.0.1
skx nginx

驗(yàn)證成功
再nginx01和nginx02上做漂移地址:
nginx01:
[root@nginx01 ~]# yum -y install pcre-devel openssl-devel

導(dǎo)入鏡像:

nginx反向代理docker,并用nfs同步docker

[root@nginx01 ~]# tar zxf ngx_cache_purge-2.3.tar.gz 
[root@nginx01 ~]# unzip nginx-sticky-module.zip 

[root@nginx01 ~]# tar zxf nginx-1.14.0.tar.gz 

[root@nginx01 ~]# cd nginx-1.14.0/

[root@nginx01 nginx-1.14.0]#  ./configure --prefix=/usr/local/nginx1.14  --user=www --group=www   --with-http_stub_status_module --with-http_realip_module   --with-http_ssl_module --with-http_gzip_static_module   --http-client-body-temp-path=/var/tmp/nginx/client  --http-proxy-temp-path=/var/tmp/nginx/proxy   --http-fastcgi-temp-path=/var/tmp/nginx/fcgi   --with-pcre  --with-http_flv_module   --add-module=../nginx-sticky-module  --add-module=../ngx_cache_purge-2.3 && make && make install

[root@nginx01 nginx-1.14.0]#  ln -s /usr/local/nginx1.14/sbin/nginx  /usr/local/sbin/

[root@nginx01 nginx-1.14.0]#  useradd www  -s /sbin/nologin -M

[root@nginx01 nginx-1.14.0]#  mkdir -p /var/tmp/nginx/client

[root@nginx01 nginx-1.14.0]# nginx
[root@nginx01 nginx-1.14.0]# netstat -anpt | grep 80
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      7711/nginx: master 
nginx02:

nginx反向代理docker,并用nfs同步docker

[root@nginx02 ~]# tar zxf ngx_cache_purge-2.3.tar.gz 
[root@nginx02 ~]# unzip nginx-sticky-module.zip 

[root@nginx02 ~]# tar zxf nginx-1.14.0.tar.gz 

[root@nginx02 ~]#  yum -y install pcre-devel openssl-devel

[root@nginx02 ~]# cd nginx-1.14.0/

[root@nginx02 nginx-1.14.0]# ./configure --prefix=/usr/local/nginx1.14  --user=www --group=www   --with-http_stub_status_module --with-http_realip_module   --with-http_ssl_module --with-http_gzip_static_module   --http-client-body-temp-path=/var/tmp/nginx/client  --http-proxy-temp-path=/var/tmp/nginx/proxy   --http-fastcgi-temp-path=/var/tmp/nginx/fcgi   --with-pcre  --with-http_flv_module   --add-module=../nginx-sticky-module  --add-module=../ngx_cache_purge-2.3 && make && make install

[root@nginx02 nginx-1.14.0]# ln -s /usr/local/nginx1.14/sbin/nginx /usr/local/sbin/
[root@nginx02 nginx-1.14.0]#  useradd www  -s /sbin/nologin -M
[root@nginx02 nginx-1.14.0]# mkdir -p /var/tmp/nginx/client

[root@nginx02 nginx-1.14.0]# nginx
[root@nginx02 nginx-1.14.0]# netstat -anpt | grep 80
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      7355/nginx: master  
nginx01安裝keepalived:

nginx反向代理docker,并用nfs同步docker

[root@nginx01 ~]# tar -zxvf keepalived-1.2.13.tar.gz 

[root@nginx01 ~]# cd keepalived-1.2.13/
[root@nginx01 keepalived-1.2.13]# ./configure --prefix=/

[root@nginx01 keepalived-1.2.13]# make && make install
[root@nginx01 keepalived-1.2.13]# vim /etc/keepalived/keepalived.conf 

3行:

global_defs {
   router_id LVS_DEVEL_1
  }

14行:

   interface ens33

22行:

virtual_ipaddress {
        192.168.1.254 
    }   
nginx02安裝keepalived:

nginx反向代理docker,并用nfs同步docker
[root@nginx01 ~]# tar -zxvf keepalived-1.2.13.tar.gz

[root@nginx01 ~]# cd keepalived-1.2.13/
[root@nginx01 keepalived-1.2.13]# ./configure --prefix=/

[root@nginx01 keepalived-1.2.13]# make && make install

[root@nginx02 keepalived-1.2.13]# vim /etc/keepalived/keepalived.conf

3行:

global_defs {
router_id LVS_DEVEL_2
}

14行:

? interface ens33

22行:

virtual_ipaddress {
192.168.1.254
}


docker01和docker02啟動(dòng)服務(wù):

[root@nginx02 keepalived-1.2.13]# /etc/init.d/keepalived start
Reloading systemd: [ OK ]
Starting keepalived (via systemctl): [ OK ]


訪問:

![](https://s1.51cto.com/images/blog/201912/21/f4595e87674a32c6cb6c25a4f631861a.png?x-oss-process=image/watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3poZW5naGVpdGk=)

#### docker01和docker02做反向代理:

#### docker01:

[root@nginx01 ~]# vim /usr/local/nginx1.14/conf/nginx.conf

21行添加:

upstream backend {

? ip_hash;

? server 192.168.1.30:80 weight=1 max_fails=2 fail_timeout=10s;
? server 192.168.1.40:80 weight=1 max_fails=2 fail_timeout=10s;
? }

49行添加:

proxy_pass http://backend;


重啟服務(wù):

[root@nginx01 ~]# nginx -t
nginx: the configuration file /usr/local/nginx1.14/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx1.14/conf/nginx.conf test is successful
[root@nginx01 ~]# nginx -s reload


#### docker02:

33行添加:

upstream backend {
ip_hash;
server 192.168.1.30:80 weight=1 max_fails=2 fail_timeout=10s;
server 192.168.1.40:80 weight=1 max_fails=2 fail_timeout=10s;
}

50行添加:

proxy_pass http://backend;


重啟服務(wù):

[root@nginx01 ~]# nginx -t
nginx: the configuration file /usr/local/nginx1.14/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx1.14/conf/nginx.conf test is successful
[root@nginx01 ~]# nginx -s reload


瀏覽器用漂流地址訪問

#### 做NFS的Rsync+Inotify

#### nfs01:
![](https://s1.51cto.com/images/blog/201912/21/853d21d253a7f2ca29e7b1c5bd0a25bc.png?x-oss-process=image/watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3poZW5naGVpdGk=)

[root@nfs01 ~]# tar zxf inotify-tools-3.14.tar.gz
[root@nfs01 ~]# cd inotify-tools-3.14/
[root@nfs01 inotify-tools-3.14]# ./configure && make && make install

[root@nfs01 inotify-tools-3.14]# vim /etc/rsyncd.conf

最后一行添加:

gid = nobody
use chroot = yes
address = 192.168.1.50
port 873
log file = /var/log/rsyncd.log
pid file = /var/run/rsyncd.pid
hosts allow = 192.168.1.0/24
[wwwroot]
path = /datashare
read only = no
dont compress = .gz .tgz .zip .z .Z .rpm .deb .bz2


#### 編寫腳本來實(shí)現(xiàn)實(shí)時(shí)同步:

[root@nfs01 ~]# vim /inotify_sync.sh

#!/bin/bash

inotify_cmd="inotifywait -mrq -e modify,create,attrib,move,delete /datashare"

rsync_cmd="rsync -azH /datashare/* 192.168.2.40::wwwroot"

$inotify_cmd | while read DIRECTORY EVENT FILE

do

? $rsync_cmd

done

[root@nfs01 ~]# chmod +x /inotify_sync.sh

啟動(dòng)服務(wù):

[root@nfs01 ~]# rsync --daemon


#### nfs02:

[root@nfs02 ~]# yum -y install rsync

[root@nfs02 ~]# vim /etc/rsyncd.conf

uid = nobody
gid = nobody
use chroot = yes
address = 192.168.1.60
port 873
log file = /var/log/rsyncd.log
pid file = /var/run/rsyncd.pid
hosts allow = 192.168.1.0/24
[wwwroot]
path = /datashare
read only = no
dont compress = .gz .tgz .zip .z .Z .rpm .deb .bz2

[root@nfs02 ~]# mkdir /datashare


#### nfs01:

[root@nfs01 ~]# sh /inotify_sync.sh

nfs02:


#### 驗(yàn)證:

[root@nfs02 ~]# cat /datashare/

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI