두 rsync 명령의 차이점

두 rsync 명령의 차이점

나는 후속 조치를 취하고 있다클러스터 업그레이드를 위한 postgresql 설명서2대의 머신 - 하나는 기본, 하나는 보조(복사 기능 포함). 설명서에 따르면 기본 서버만 업그레이드하면 기본 서버에서 rsync를 실행하여 보조 서버를 동기화할 수 있습니다. 문서에 언급된 명령:

rsync --archive --delete --hard-links --size-only --no-inc-recursive primary_parent_of_old_data_dir primary__parent_of_new_data_dir secondary_remote_parent_of_old_data_dir

보조 장치에서 rsync 명령을 실행하고 싶었기 때문에 다음을 사용했습니다.

rsync --archive --hard-links --size-only --verbose --human-readable --no-inc-recursive --delete  root@primaryIP:primary_parent_of_new_data_dir secondary_parent_of_old_data_dir

이 명령들의 차이점이 무엇인지 묻고 싶습니다. 첫 번째 명령에서 두 개가 아닌 세 개의 디렉터리를 지정해야 하는 이유는 무엇입니까?

관련 정보