rsync 설정 경험
1,
http://www.howtocn.org/rsync
tar 포장 재 scp 방법 으로 데 이 터 를 백업 하 는 것 은 너무 간단 하고 거 칠 기 때문에 rsync 로 바 꾸 고 싶 습 니 다.
처음으로 rsync 를 설정 하고 위 에서 준 이 블 로 그 를 연 구 했 습 니 다.시작...
먼저 서버 쪽:
먼저 파일/etc/rsyncd.conf 를 추가 합 니 다.
왜 이 경로 에 프로필 을 쓰 는 지,rsync 가 시 작 될 때 왜 이 파일 을 자동 으로 불 러 옵 니까?사실 어떤 서비스 가 시 작 될 때 든 프로필 을 선택 할 수 있 는 거 잖 아 요.상식 이 잖 아 요!)
그래도'man rsyncd.conf'라 는 몇 마디 정 보 를 봤 으 니 충분 하 다.
configuration file for rsync in daemon mode.
The rsync daemon is launched by specifying the --daemon option to rsync.
DESCRIPTION
The rsyncd.conf file is the runtime configuration file for rsync when run as an rsync daemon. The rsyncd.conf file controls authentication, access, logging and available modules.
FILES
/etc/rsyncd.conf or rsyncd.conf
그래서 이 파일 경로 가/etc/rsyncd.conf 라면
rsync 서 비 스 를 시작 할 때--config=FILE 옵션 을 지정 하지 않 아 도 됩 니 다.
( )
uid = root
gid = root
use chroot = no
max connections = 4
strict modes =yes
port = 873
address = 10.1.2.12
motd file = /etc/rsyncd.motd
pid file = /var/run/rsyncd.pid
log file = /var/log/rsyncd.log
lock file = /var/run/rsync.lock
[backuo] path = /home/tt/www/ comment = This is a test ignore errors read only = yes list = true auth users = tx secrets file = /etc/rsync.pas
,
, 。
@ERROR: auth failed on module backup
, ,bing , google “ ”
。。 sed 's/ *$//'
!
, , ,rsync 。
4.567914.이것 은 더욱 정리 하기 어렵다.
,
man rsyncd.conf
Any line beginning with a hash (#) is ignored, as are lines containing only whitespace. Note that a hash in the middle of a line is used as-is, hence it is not possible to put a comment at the
end of a parameter; the hash and following text becomes part of the parameter.
!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
ZSH에서 물고기까지ZSH는 수년 동안 내 기본 셸이었습니다. 이제 몇 달 동안 사용하면서 ZSH 구성에 대해 몇 가지 사항을 발견했습니다. 우리는 을 제공하는 시스템과 더 빨리 상호 작용하는 경향이 있습니다. 내.zshrc 구성에는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.