scp, rsync를 할때 connect 타임아웃을 주는 방법입니다.

서버가 응답을 하지 않을 때, 지정 시간 후에 종료하게 됩니다.

 

scp

# scp -o ConnectTimeout=10 ....

 

-o 을 주고 ssh 에서 사용되는 옵션들을 사용할 수 있습니다.
아래와 같은 옵션들이 있습니다. 그 중에서 ConnectTimeout 를 사용했습니다.

 

더보기

                   AddressFamily
                   BatchMode
                   BindAddress
                   CanonicalDomains
                   CanonicalizeFallbackLocal
                   CanonicalizeHostname
                   CanonicalizeMaxDots
                   CanonicalizePermittedCNAMEs
                   ChallengeResponseAuthentication
                   CheckHostIP
                   Cipher
                   Ciphers
                   Compression
                   CompressionLevel
                   ConnectionAttempts
                   ConnectTimeout
                   ControlMaster
                   ControlPath
                   ControlPersist
                   GlobalKnownHostsFile
                   GSSAPIAuthentication
                   GSSAPIDelegateCredentials
                   HashKnownHosts
                   Host
                   HostbasedAuthentication
                   HostKeyAlgorithms
                   HostKeyAlias
                   HostName
                   IdentityFile
                   IdentitiesOnly
                   IPQoS
                   KbdInteractiveAuthentication
                   KbdInteractiveDevices
                   KexAlgorithms
                   LogLevel
                   MACs
                   NoHostAuthenticationForLocalhost
                   NumberOfPasswordPrompts
                   PasswordAuthentication
                   PKCS11Provider
                   Port
                   PreferredAuthentications
                   Protocol
                   ProxyCommand
                   PubkeyAuthentication
                   RekeyLimit
                   RhostsRSAAuthentication
                   RSAAuthentication
                   SendEnv
                   ServerAliveInterval
                   ServerAliveCountMax
                   StrictHostKeyChecking
                   TCPKeepAlive
                   UsePrivilegedPort
                   User
                   UserKnownHostsFile
                   VerifyHostKeyDNS

 

rsync

# rsync -avzP -e 'ssh -o ConnectTimeout=10'  ....

 

rsync 도 ssh 옵션을 사용해서 타임아웃을 주었습니다.

 

728x90
반응형

https://www.digitalocean.com/community/tutorials/how-to-use-rsync-to-sync-local-and-remote-directories-on-a-vps


rsync : exclude files and folders


728x90
반응형

'Linux > rsync' 카테고리의 다른 글

rsync : exclude files and folders  (0) 2012.01.10
rsync는 리눅스에서 백업을 할때 유용한 툴입니다.
서버단에서 특정 폴더나 파일을 제외하는 방법입니다.

rsyncd.conf 파일에 아래와 같이 설정 합니다.(ubuntu는 /etc/rsyncd.conf)

[mywork]
path = path_to_source_directory
exclude from = exclude_file
......

path는 백업을 원하는 원본 디렉토리에 대한 절대경로입니다.
exclude_file은 제외할 파일들에 대한 정보가 있는 파일의 위치입니다.

exclude_file은 아래와 같이 path_to_source_directory 에 대한 상대 경로로 파일이나 디렉토리를 줄 단위로 나열합니다.

README.secret
hidden.*
private/*


클라이언트 단에서 하려면 아래 링크를 참조하세요.

http://articles.slicehost.com/2007/10/10/rsync-exclude-files-and-folders
728x90
반응형

'Linux > rsync' 카테고리의 다른 글

[펌] How To Use Rsync to Sync Local and Remote Directories on a VPS  (0) 2015.05.20

+ Recent posts