ubuntu - rsync 설치 및 설정
2024-01-12 14:54
964
0
1
0
본문
접기
[ ▼ 작성자 참고 Source ]
//rsync 설치 # apt-get -y install rsync //rsync 실행 # systemctl start rsync # vi /etc/rsyncd.conf [web] -> 사용할 rsync 서비스 이름 path = /home/web -> 데이터원본 경로 comment = rsync_test -> 코멘트 uid = root -> 권한 사용자 gid = root -> 권한 그룹 use chroot = yes read only = yes hosts allow = 192.168.10.10 -> rsync 클라이언트IP, localhost일 경우 입력하지 않아도 된다 max connections = 10 timeout = 30 // /etc/rsync.conf 파일 수정 적용 # vi /etc/rsyncd.conf [web] -> 사용할 rsync 서비스 이름 path = /home/web -> 데이터원본 경로 comment = rsync_test -> 코멘트 uid = root -> 권한 사용자 gid = root -> 권한 그룹 use chroot = yes read only = yes hosts allow = 192.168.10.10 -> rsync 클라이언트IP, localhost일 경우 입력하지 않아도 된다 max connections = 10 timeout = 30
본문
rsync 설치 및 설정
1
0
로그인 후 추천 또는 비추천하실 수 있습니다.
댓글목록0