rsync 첫 만 남
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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
VPS의 데이터를 가정용 PC에 백업(rsync, OpenVPN)나중에 조사해 보면 상당한 힘 기술 같다. 복원시에는 주의를. 글쎄, 긴급시의 설비용으로. 공통 우분투 15.04 OpenVPN 2.3.2 rsync 3.1.1 백업 소스. VPN 서버. 백업 대상. VPN 클라이언...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.