하드 코어로 가고 싶다면 * nix staff와 같이 OsX 에서 기본적으로 rsync 명령을 사용할 수 있습니다 .
무엇보다 먼저 ssh로 원격 호스트에 액세스 할 수있는 권한이 있어야합니다. OpenSSH 서버 는 Mac OsX에 사전 설치되어 있으므로 추가 패키지를 설치할 필요가 없습니다. 일부 시스템 설정 만하면됩니다. Mac OS X에서 OpenSSH 서버를 활성화하려면 시스템 환경 설정 을 열고 공유를 클릭하십시오. 그리고, 원격 로그인 상자를 체크하여 SSH를 활성화 한 다음 액세스 허용 섹션 에서 모든 사용자 라고 표시된 라디오 버튼을 선택 하십시오.
이제 ssh를 통해 원격 호스트에 액세스 할 수 있습니다.
이제 ssh를 통해 로컬 게스트 시스템에서 원격 호스트로 암호없이 액세스 할 수있는 공개 액세스 키를 작성해야합니다. 이를 위해서는 손이 약간 더러워 져야합니다. :)
먼저 인증 키가 있는지 확인하십시오. 에서 터미널 을 실행합니다 :
sudo ls -la /var/root/.ssh
"id_dsa"및 id_dsa.pub가 표시 되면이 섹션의 나머지 부분을 건너 뛸 수 있습니다.
클라이언트 시스템의 터미널에서 다음을 실행하십시오.
sudo ssh-keygen -t dsa -f /private/var/root/.ssh/id_dsa -C "comment about this key"
로컬 게스트 컴퓨터에서 액세스 키를 만든 후에는 게스트의 공개 키를 호스트의 authorized_keys 파일로 복사해야합니다. 인증 된 키 목록에 공개 키를 추가하는 간단한 터미널 명령으로이를 수행 할 수 있습니다.
sudo cat /private/var/root/.ssh/id_dsa.pub | ssh root@remote_host_address 'cat - >> ~/.ssh/authorized_keys'
아래 명령은 로컬 게스트 시스템의 루트 파일 시스템을 원격 호스트에 증분 백업합니다.
/usr/local/bin/rsync -aNHAXx --protect-args --fileflags --force-change --rsync-path="/usr/local/bin/rsync" / root@remote_host_address:/Volumes/Backup/GuestMachine
변경 동기화 동작을 위해 rsync의 매개 변수를 변경할 수 있습니다. 이 명령을 crontab에 추가하면 모든 시간주기에서 동기화를 실행할 수 있습니다. 예를 들면 다음과 같습니다.
sudo crontab -e
crontab에 아래 행을 추가하십시오.
*/30 * * * * /usr/local/bin/rsync -aNHAXx --protect-args --fileflags --force-change --rsync-path="/usr/local/bin/rsync" / root@remote_host_address:/Volumes/Backup/GuestMachine
30 분마다 동기화가 실행됩니다.
다음은 샘플 Python 스크립트입니다.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Cron automated synchronization script.
Desc: Synchronize remote folder into local machine. Duplicate processes
are disallowed until running process finished.
Usage:
:: Change required variables as _user, _password, _domain etc.
:: Edit crontab
# crontab -e
:: Append line below.
*/30 * * * * python synchronizator.py 2>&1 &
Author: Sencer HAMARAT (RecNes)
E-Mail: sencerhamarat@gmail.com
"""
import shlex
from subprocess import Popen, PIPE
import logging as log
import sys
__author__ = "Sencer HAMARAT"
_user = 'username'
_password = 'password'
_domain = 'example.com'
_expectation = "Enter passphrase for key \'/home/%s/.ssh/id_rsa\':" % _user
_rsync = '/usr/bin/rsync --partial --progress -avvz -e'
_pub_key = '/home/%s/.ssh/id_rsa.pub' % _user
_ssh = '/usr/bin/ssh -i %s' % _pub_key
_remoteDir = '/home/%s/backup/' % _user
_localDir = '/home/%s/backup/' % _user
_command = '%s %s %s@%s:%s %s' % (_rsync, _ssh, _user, _domain, _remoteDir, _localDir)
run_command = shlex.split(_command)
_logFile = "logfile.log"
_logFormat = "%(asctime)s %(levelname)s %(name)s %(process)d %(threadName)s %(module)s:%(lineno)d %(funcName)s() " \
"%(message)s\n"
log.basicConfig(filename=_logFile, level=log.DEBUG, format=_logFormat)
log.debug(u'Command will run: %s' % _command)
try:
running_command = Popen(run_command, stdin=PIPE, stdout=PIPE, stderr=PIPE)
if running_command.poll():
log.debug(repr(running_command.poll()))
sys.exit()
if _expectation in running_command.communicate():
running_command.communicate(_password)
print running_command.communicate()
except Exception as e:
log.debug(repr(e))
finally:
sys.exit()