How can I backup my data to backup server? Print

  • 0

If you have purchased our backup service (http://www.jaguarpc.com/services/backups.php) you can use any of the following methods to backup your data:

1. SCP

Execute this command from your account shell:

scp -Cp file_to_backup USER@backupserver.nocdirect.com:backups

RECURSIVE COPY
scp -r directory USER@backupserver.nocdirect.com:backups

** NOTE ** You must use "backups" as the last part of this command since that is the default scp chrooted directory. USER is the username of the backup account. backupserver.nocdirect.com is the host name of the backup machine.

2. Rsync over SSH

rsync -zaHlv --safe-links --progress -e /usr/bin/ssh file_or_folder_to_backup USER@backupserver.nocdirect.com:backups

** NOTE ** Same note as #1

3. Or you can use FTP/SFTP directly from shell to interactively upload/download files.

Was this answer helpful?

« Back