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模式篇
相關文章
- LVS負載均衡群集概念、NAT模式LVS負載均衡實戰部署負載模式
- LVS 負載均衡負載
- nginx實現兩臺服務負載均衡Nginx負載
- LVS+Keepalived 實現高可用負載均衡負載
- Linux LVS 負載均衡Linux負載
- LVS負載均衡群集負載
- LVS+KEEPALIVED負載均衡實驗負載
- 負載均衡LVS+NAT負載
- LVS和Nginx實現負載均衡功能的比較Nginx負載
- LVS+Keepalive 實現負載均衡高可用叢集負載
- 負載均衡之--Nginx、LVS、HAProxy負載Nginx
- LVS負載均衡群集--NAT模式負載模式
- 使用LVS實現負載均衡原理及安裝配置詳解負載
- LVS 負載均衡之 VS/NAT 模式負載模式
- LVS 負載均衡之 VS/TUN 模式負載模式
- LVS 負載均衡之 VS/DR 模式負載模式
- lvs+keepAlived→效率最高的負載均衡負載
- LVS#MySQL+Keepalived四層負載均衡MySql負載
- 伺服器群集LVS負載均衡-NAT伺服器負載
- 負載均衡之LVS與Nginx對比負載Nginx
- 伺服器群集—LVS負載均衡群集(LVS-NAT部署)伺服器負載
- Ribbon實現負載均衡負載
- GRPC 負載均衡實現RPC負載
- nginx實現負載均衡Nginx負載
- 運維講堂:LVS負載均衡模式與F5負載均衡盤點運維負載模式
- Nginx 兩臺伺服器配置負載均衡!!!Nginx伺服器負載
- LVS負載均衡配置與keepalive服務配置負載
- HaProxy 實現 MySQL 負載均衡MySql負載
- 叢集,lvs負載均衡的四種工作模式負載模式
- nginx+tomcat實現負載均衡NginxTomcat負載
- dubbo(三):負載均衡實現解析負載
- 使用YARP來實現負載均衡負載
- Python實現簡單負載均衡Python負載
- linux搭建LVS+keepalive+nginx實現叢集高效能負載均衡配置詳解LinuxNginx負載
- SpringCloud微服務中使用RestTemplate+Ribbon實現負載均衡(實現方法+實現原理+替換負載均衡策略)SpringGCCloud微服務REST負載
- Nginx實現簡單的負載均衡Nginx負載
- Haproxy搭建 Web 群集實現負載均衡Web負載
- 在Linux中,如何實現負載均衡?Linux負載