目的:客戶機B(/data/tongbuB) 《=====》 伺服器主機A(/data/tongbuA)
1、配置伺服器主機A [192.168.0.10]
[1]、安裝xinetd (用于管理rsync服務)
[root@www ~]# yum -y install xinetd
[root@www ~]# vi /etc/xinetd.d/rsync
# default: off
# description: The rsync server is a good addition to an ftp server, as it /
# allows crc checksumming etc.
service rsync
{
disable = no// change
socket_type = stream
wait = no
user = root
server = /usr/bin/rsync
server_args = --daemon
log_on_failure += USERID
[root@www ~]# vi /etc/rsyncd.conf [site] // name path = /var/www/html // copied directory hosts allow = 192.168.0.20 hosts deny = * list = true uid = root gid = root |
[3] 配置主機B
[root@lan ~]# rsync -avz --delete --exclude-from=/etc/rsync_exclude.lst 192.168.0.18::site /home/backup
// add in cron if you'd like to run rsync.
[root@lan ~]# crontab -e
00 02 * * * rsync -avz --delete --exclude-from=/etc/rsync_exclude.lst 192.168.0.18::site /home/backup