91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

nginx+rsync+inotify怎么配置實現負載均衡

發布時間:2022-04-29 17:29:42 來源:億速云 閱讀:179 作者:zzz 欄目:大數據

這篇文章主要介紹了nginx+rsync+inotify怎么配置實現負載均衡的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇nginx+rsync+inotify怎么配置實現負載均衡文章都會有所收獲,下面我們一起來看看吧。

實驗環境

前端nginx:ip 192.168.6.242,對后端的wordpress網站做反向代理實現復雜均衡
后端nginx:ip 192.168.6.36,192.168.6.205都部署wordpress,并使用相同的數據庫

1、在后端的兩個wordpress上配置rsync+inotify,兩服務器都開啟rsync服務,并且通過inotify分別向對方同步數據
下面配置192.168.6.205這臺服務器
vim /etc/rsyncd.conf
uid = nginx
gid = nginx
port = 873
host all = 192.168.6.36     #另外一臺wordpress使用192.168.6.205
use chroot = on
max connections = 4
timeout = yes
[wordpress]
path = /usr/local/nginx/html/wordpress
comment = rsync files
ignore errors
read only = no
list = yes
auth users = rsync
secrets file = /etc/rsync_server.passwd     #指定帳號密碼,用于提供另外一個節點訪問自身的帳號

vim /etc/rsync_server.passwd
rsync:rsync

vim /etc/rsync_client.passwd
rsync                                                     #用于訪問另外一個wordpress使用的密碼文件

配置inotify同步腳本
#!/bin/bash
host=192.168.6.36                  #另外一個wordpress
src=/usr/local/nginx/html/wordpress/
dst=wordpress
user=rsync
inotifywait=/usr/local/inotify/bin/inotifywait
rsync=/usr/bin/rsync
$inotifywait -mrq –timefmt '%d/%m/%y %h:%m' –format '%t %w%f' -e modify,delete,create,attrib $src | while read files
do
       $rsync -vzrtopg –delete –progress –password-file=/etc/rsync_client.passwd $src $user@$host::$dst
        echo "${files} was rsynced" >>/tmp/rsync.log 2>&1
done

2、配置前端nginx實現反向代理
vim /usr/local/nginx/conf/nginx.conf
#在http段中加入
include vhost/wordpress.conf;

mkdir /usr/local/nginx/confi/vhost
vim /usr/local/nginx/confi/vhost/wordpress.conf
upstream wordpress {
   server 192.168.6.205 weight=1;
   server 192.168.6.36 weight=1;
}

server {
   location / {
       proxy_pass http://wordpress;
       proxy_redirect      off;
       proxy_set_header    host        $host;
       proxy_set_header    x-real-ip   $remote_addr;
   }
}

3、修改wordpress中的設置,必須將這個了的站點地址改為前端nginx的ip地址或者域名

nginx+rsync+inotify怎么配置實現負載均衡

關于“nginx+rsync+inotify怎么配置實現負載均衡”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“nginx+rsync+inotify怎么配置實現負載均衡”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

兴隆县| 应城市| 深泽县| 苏尼特右旗| 永吉县| 尉氏县| 黔西县| 辉南县| 淮北市| 辽源市| 湘潭县| 白城市| 萝北县| 桑植县| 阿尔山市| 平南县| 屯门区| 汝城县| 沐川县| 延庆县| 灌阳县| 浪卡子县| 固镇县| 宁陵县| 二连浩特市| 淮安市| 开平市| 长春市| 刚察县| 鸡东县| 汨罗市| 灵璧县| 孟村| 宝丰县| 蓝山县| 万荣县| 福海县| 九江县| 吴忠市| 林口县| 山东省|