LINUX下配置 rsync(轉)

BSDLite發表於2007-08-11
LINUX下配置 rsync(轉)[@more@]系統環境
[root@linuxas3 root]# uname -a
Linux linuxas3.9812.net 2.4.21-4.ELsmp #1 SMP Fri Oct 3 17:52:56 EDT 2003 i686 i686 i386 GNU/Linux

安裝rsync
在AS3 第二張CD上找到rsync-2.5.6-20.i386.rpm
[root@linuxas3 root]# cd /mnt
[root@linuxas3 mnt]# mount cdrom
[root@linuxas3 mnt]# cd cdrom/RedHat/RPMS
[root@linuxas3 RPMS]# rpm -ivh rsync-2.5.6-20.i386.rpm

配置/etc/rsyncd.conf
在rh9,as3系統上rsync安裝後,並沒有建立rsyncd.conf文件,筆者是自己建立的rsyncd.conf文件
[root@linuxas3 root]# vi /etc/rsyncd.conf
uid=nobody
gid=nobody
max connections=4
use chroot=no
log file=/var/log/rsyncd.log
pid file=/var/run/rsyncd.pid
lock file=/var/run/rsyncd.lock
#auth users=root
secrets file=/etc/rsyncd.pwd
[postfix]
path=/var/mail
comment = backup mail
ignore errors
read only = yes
list = no
auth users = postfix
[netkiller]
path=/home/netkiller/web
comment = backup 9812.net
ignore errors
read only = yes
list = no
auth users = netkiller
[pgsqldb]
path=/var/lib/pgsql
comment = backup postgresql database
ignore errors
read only = yes
list = no

選擇說明
uid = nobody
gid = nobody
use chroot = no # 不使用chroot
max connections = 4 # 最大連線數為4
pid file = /var/run/rsyncd.pid #程式ID檔案
lock file = /var/run/rsync.lock
log file = /var/log/rsyncd.log # 日誌記錄檔案
secrets file = /etc/rsyncd.pwd # 認證檔名,主要儲存使用者密碼,許可權建議設為600,所有者root
[module] # 這裡是認證的模組名,在client端需要指定
path = /var/mail # 需要做映象的目錄
comment = backup xxxx # 註釋
ignore errors # 可以忽略一些無關的IO錯誤
read only = yes # 只讀
list = no # 不允許列檔案
auth users = postfix # 認證的使用者名稱,如果沒有這行,則表明是匿名
[other]
path = /path/to...
comment = xxxxx

密碼檔案
在server端生成一個密碼檔案/etc/rsyncd.pwd
[root@linuxas3 root]# echo postfix:xxx >>/etc/rsyncd.pwd
[root@linuxas3 root]# echo netkiller:xxx >>/etc/rsyncd.pwd
[root@linuxas3 root]# chmod 600 /etc/rsyncd.pwd

啟動rsync daemon
[root@linuxas3 root]# rsync --daemon

測試
[root@linux docbook]# rsync rsync://
[root@linux tmp]# rsync rsync://netkiller@
Password:
[chen@linux temp]$ rsync -vzrtopg --progress --delete [url=mailto:postfix@]postfix@[/url] /tmp
Password:

rsync rsync://認證使用者@主機/模組
rsync -vzrtopg --progress --delete 認證使用者@主機::模組 /mirror目錄
新增到啟動檔案
echo "rsync --daemon" >> /etc/rc.d/rc.local

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10617542/viewspace-947736/,如需轉載,請註明出處,否則將追究法律責任。

相關文章