Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux站群rsync同步基礎教程

Linux站群rsync同步基礎教程

日期:2017/2/7 14:33:25      編輯:Linux教程
 

目標:主服務器程序向多個子服務器同步程序

1. 配置同步源

安裝rsync:yum -y install rsync xinetd

開啟rsync:vim /etc/xinetd.d/rsync 把disable = yes 改為disable = no

配置:vim /etc/rsyncd.conf

#同步源標識,可隨意更改
[site]
#程序路徑
path = /home/backup
#允許同步的主機
hosts allow = 192.168.1.14
hosts deny = *
list = true
uid = root
gid = root
read only = false

2.配置同步服務器

同樣安裝rsync,並可以設置過濾列表,然後執行:

rsync -avz --delete --exclude-from=/etc/rsync_exclude.lst /var/www/html/ server_ip ::site

這裡的server_ip即為服務器IP或域名,site是同步源標識

另外再設置定時腳本。這樣同步服務器的站群便能及時從主服務器rsync同步。

Copyright © Windows教程網 All Rights Reserved