rsync 서버 가설

1069 단어
1.서버 측, 설정 (또는 추가) 파일:/etc/rsyncd.conf, 내용은 다음과 같습니다.
uid = nobody gid = nobody use chroot = no max connections = 10 strict modes = yes pid file =/var/run/rsyncd.pid lock file =/var/run/rsync.lock log file =/var/log/rsyncd.log #yang은 모듈 이름입니다. [yang]
#path는 백업할 경로입니다. path =/home/linux/PDF comment = linux home data ignore errors read only = no write only = no
# 서버에 연결할 수 있는 주소 hosts allow = *
# 서버 연결 거부 클라이언트 주소hosts deny = 172.16.16.11
list = false uid = root gid = root
# 가상 사용자 이름 auth users = backup
# 암호 파일 secrets file =/etc/server.pass
2. 암호 파일/etc/server.패스 내용:
backup:yang123

3. 권한 변경: sudochmod 600/etc/server.pass'주: 이 단계는 빠질 수 없습니다'
4. 백그라운드 서비스 방식으로 rsync:rsync--daemon 시작
2. 클라이언트 구성:
(1) 명령을 직접 실행합니다.
rsync -vzrtopg --delete --progress --exclude "*fileToExclude*" --exclude "*.log" backup@server_ip::yang /home/to/save/serverFile --password-file=/etc/server.pass

(2)/etc/server.패스 내용:
yang123

좋은 웹페이지 즐겨찾기