rsync 첫 만 남

2288 단어 rsync초 면LinuxBase
1. 환경
server:eth0 192.168.4.44
client:eth0 192.168.4.150
[root@master ~]# yum install -y xinetd rsync
[root@master ~]# /etc/init.d/xinetd start
[root@Nodes01 ~]# yum install -y xinetd rsync
[root@Nodes01 ~]# /etc/init.d/xinetd start

2. rsync 서버 설정
/ etc / rsyncd. conf 내용 은 다음 과 같 습 니 다.
uid=root
gid=root
use chroot=no
max connections=10
strict modes=yes
#    
[rsync]
path=/data03/rsync/
ignore errors
read only=no
list=no
#  
auth users=user
#      
secrets file=/etc/rsync.pass
hosts allow=192.168.4.0/255.255.255.0
pid file=/var/run/rsyncd.pid
lock file=/var/run/rsync.lock
log file=/var/log/rsyncd.log

/ etc / rsync. pass 내용 은 다음 과 같 습 니 다.
user:12345678
오픈 프로그램
[root@master ~]# rsync --daemon --config=/etc/rsyncd.conf &

3. 클 라 이언 트 설정 사용
암호 파일 / etc / rsync. pass 내용 은 다음 과 같 습 니 다.
12345678
검증 동기 화 파일
서버 에 있 는 rsync 디 렉 터 리 내용 을 클 라 이언 트 에 동기 화 합 니 다.
[root@Nodes01 ~]# rsync -auzv --progress --delete --password-file=/etc/rsync.pass [email protected]::rsync /opt/nodes01/rsync/
receiving incremental file list
./
rsync.txt
          15 100%   14.65kB/s    0:00:00 (xfer#1, to-check=0/2)
sent 77 bytes  received 173 bytes  500.00 bytes/sec
total size is 15  speedup is 0.06

client / opt / test 내용 을 server 에 동기 화 하 는 rsync
[root@Nodes01 opt]# rsync -auzv --progress --delete --password-file=/etc/rsync.pass /opt/test/ [email protected]::rsync
sending incremental file list
./
deleting tests.txt
deleting rsync.txt
nginx-1.4.2.tar.gz
      767688 100%   12.30MB/s    0:00:00 (xfer#1, to-check=1/3)
rpmforge-release-0.5.2-1.el6.rf.i686.rpm
       12376 100%  177.73kB/s    0:00:00 (xfer#2, to-check=0/3)
sent 780514 bytes  received 49 bytes  1561126.00 bytes/sec
total size is 780064  speedup is 1.00

이상 은 명문 전송 이기 때문에 ssh 기반 방식 을 살 펴 보 겠 습 니 다.
[root@Nodes01 opt]# rsync -av [email protected]:/data03/rsync /opt/nodes01/rsync/
[email protected]'s password:
receiving incremental file list
rsync/
rsync/ip-tun.sh
rsync/ip_forward~
rsync/ipp.txt
rsync/ipvs.sh
rsync/ipvsadm.sh
sent 110 bytes  received 957 bytes  304.86 bytes/sec
total size is 617  speedup is 0.58

좋은 웹페이지 즐겨찾기