본문 바로가기

Develop/Linux

[Linux] rsync 이용한 데이터 복사

서버간에 데이터 동기화가 필요할경우 rsync를 사용.


/etc/xinietd.d/rsync 를열어 disable 옵션을 no로 바꾼후 xinetd를 재시작해줌.


이후 /etc/rsyncd.conf 파일을 만들어 설정정보를 넣어줌.



[file]
path = [file_path]
comment = File server #1
uid = nobody
gid = nobody
use chroot = yes
read only = yes
host allow = [host ip]
max connection = 1
timeout 300

이후 받는 측에서는

rsync -avz [host_id]::[config id] [dest path]

'Develop > Linux' 카테고리의 다른 글

[Linux] 특정 파일 삭제  (0) 2013.03.12
[Linux] 확장자 변경 쉘스크립트  (0) 2013.01.20
[Linux] Memory 관련  (0) 2012.09.20
[Linux] 하위 특정 폴더/파일들 모두 삭제  (0) 2012.09.10
[Linux] vi 에디터 문자열 바꾸기  (0) 2012.08.27