lvs 負載均衡兩臺Discuz+rsync+innotify實現資料同步
環境如下:
mysql 伺服器192.168.0.25
discus 伺服器 192.168.0.24和192.168.0.26 ,兩臺discus之間做rsync+innotify實現資料同步
lvs伺服器192.168.0.22 ,VIP 192.168.0.19
效果如下
discus 伺服器安裝好lamp 環境,
192.168.0.24 配置如下 yum install rsync
[root@node3 ~]# cat /etc/rsyncd.conf
uid = nobody
gid = nobody
use chroot = no
max connections = 10
strict modes = yes
pid file = /var/run/rsyncd.pid
log file = /var/log/rsyncd.lock
[web]
path = /web
ignore errors
read only = no
write only = no
hosts allow = 192.168.0.0/24
hosts deny = *
uid = root
gid = root
list = false
192.168.0.26安裝rsync 客戶端工具inotify-tools-3.13 ,配置指令碼
[root@node5 ~]# cat rsync.sh
#/bin/bash
#
#
rsyncServer=192.168.0.24
src=/web/
dst=web
rsync -azrtopg --delete $src $rsyncServer::$dst
/usr/local/bin/inotifywait -mrq -e create,move,delete,modify $src | while read files;do
rsync -azrtopg --delete $src $rsyncServer::$dst
done
增加計劃任務,這個的壞處就是不能實時同步,不過對於論壇形式的網站要求不高也無所謂了。
crontab -e
*/1 * * * * /usr/bin/rsync -aptgoz 192.168.0.24::web /web
安裝好discus 測試是否同步成功,LVS 安裝參照另外lvs NAT 模式或 DR模式篇
相關文章
- nginx實現兩臺服務負載均衡Nginx負載
- LVS+Keepalived實現負載均衡負載
- LVS負載均衡群集概念、NAT模式LVS負載均衡實戰部署負載模式
- LVS 負載均衡負載
- lvs負載均衡負載
- LVS負載均衡群集負載
- LVS+Keepalived 實現高可用負載均衡負載
- SQL Server資料庫實現負載均衡SQLServer資料庫負載
- LVS和Nginx實現負載均衡功能的比較Nginx負載
- keepalived+lvs實現mysql叢集負載均衡MySql負載
- Linux LVS 負載均衡Linux負載
- 負載均衡LVS+NAT負載
- LVS+KEEPALIVED負載均衡實驗負載
- LVS+Keepalive 實現負載均衡高可用叢集負載
- 負載均衡之--Nginx、LVS、HAProxy負載Nginx
- LVS負載均衡群集--NAT模式負載模式
- LVS+keepalived負載均衡負載
- 負載均衡 LVS+Keepalived負載
- nginx實現負載均衡Nginx負載
- 使用LVS實現負載均衡原理及安裝配置詳解負載
- 使用 LVS 實現負載均衡原理及安裝配置詳解負載
- Nginx 兩臺伺服器配置負載均衡!!!Nginx伺服器負載
- LVS:三種負載均衡方式比較+另三種負載均衡方式負載
- LVS 負載均衡之 VS/NAT 模式負載模式
- LVS 負載均衡之 VS/TUN 模式負載模式
- LVS 負載均衡之 VS/DR 模式負載模式
- LVS負載均衡下session共享的實現方式-持久化連線負載Session持久化
- Linux CentOs叢集LVS+Keepalived負載均衡的實現LinuxCentOS負載
- GRPC 負載均衡實現RPC負載
- HaProxy 實現 MySQL 負載均衡MySql負載
- Ribbon實現負載均衡負載
- Oracle負載均衡實現方式Oracle負載
- Nginx + IIS 實現負載均衡Nginx負載
- 基於 LVS 的 AAA 負載均衡架構實踐負載架構
- 運維講堂:LVS負載均衡模式與F5負載均衡盤點運維負載模式
- 負載均衡之LVS與Nginx對比負載Nginx
- 伺服器群集LVS負載均衡-NAT伺服器負載
- LVS負載均衡-基礎知識梳理負載