Transfer your Windows Backups to an rsync server over SSH

rsync.net provides cloud storage for offsite backups. If you run Windows systems, you can point them to us to secure your data.

Our cloud storage is better than AWS, Google or Azure because we give you an empty filesystem to do anything you want with.

Click here for Simple Pricing - Or call 619-819-9156 or email info@rsync.net for more information.

One thing you might choose to do is point your Windows backups to us using rsync over SSH.

Below is a tutorial that will work with any Linux/UNIX/SSH server - not just rsync.net.

rsync on Windows - An Overview

We no longer recommend that Windows users of our cloud storage platform use rsync.exe to send their backups to rsync.net.

cwRsync can be difficult to set up, and getting it to run unattended, under the correct Windows account, can be challenging.

Instead, we recommend either our free Windows Backup Agent or pay for a BackupAssist license with the rsync module.

But if you must ...

Installing cwRsync

cwRsync is a free distribution of the rsync utility that is optimized for quick and easy installation in Microsoft Windows.

You can download cwRsync here, however we recommend checking for the newest version here.

Once you have downloaded this installation file, run it. You should select the defaults the installer gives you, including the default installation path of:

C:\Program Files\cwRsync

We STRONGLY recommend installing the program in the default location.

Setting Up Your Private/Public Keypair

You need to create, and upload, an SSH public key so that your rsync backups can occur without your being prompted for a password.

It is VERY IMPORTANT that the user who creates the key is the SAME user as the one who runs the automated backup. The easiest way to ensure this is to log in as the local "administrator" to perform the following steps:

Click the start button, and choose "run". In the run dialog box, type "cmd" and hit enter. The command prompt window (DOS prompt) will open.

In this command prompt, type:

cd "c:\program files\cwrsync\bin"

and hit enter. Then type:

ssh-keygen -t rsa -N ''

and hit enter.

(Note that the line ends with TWO single quote characters, one after another)

You will be asked to "enter file in which to save the key" - just hit enter to accept the default that is given.

Now, upload the newly created key to your rsync.net filesystem with this command:

rsync -av "/cygdrive/c/documents and settings/administrator/.ssh/id_rsa.pub" 1234@usw-s001.rsync.net:.ssh/authorized_keys

(Insert your own user ID in place of "1234" as well and the correct hostname in place of "s001")

When you run this rsync command, you will be asked to confirm the first connection - enter "yes", and when prompted for your password, enter the password that was given to you in your welcome email.

Your RSA public key is now uploaded to your rsync.net filesystem, and any further logins over ssh that this Windows user (in this case, administrator) performs will not require a password.

Choosing What To Back Up

Now you need to decide what to back up. Generally, installed programs, like the ones installed in C:\Program Files are not important to back up, nor is your primary C:\Windows folder. Generally you are only interested in backing up your data, often times limited to c:\My Documents, or c:\Documents and Settings.

In this example we are choosing to back up the following directory:

C:\Documents and Settings\administrator

Open the rsync script by going to the start menu, choosing Programs, then choosing cwRsync, then choosing "1. Batch Example". When you select this, the script will open in a text editor.

Leave the file exactly as it is - the settings in place are very important. You are simply going to add one or more rsync commands to the end of it, one for each folder or file you want to back up.

In this example we are adding a single line to the end of the file:

rsync -av --chmod u+rwx
-e "ssh -i c:\docume~1\administrator\.ssh\id_rsa"
"/cygdrive/c/Documents and Settings/administrator"
1234@usw-s001.rsync.net:

You can see how the source directory:

C:\Documents and Settings\administrator

is entered as

/cygdrive/c/Documents and Settings/administrator

this transformation is required for all Windows source folders.

You can add as many rsync lines to the end of this script as you like - one for each folder you wish to back up.

Once the rsync lines have been added to the script, you should save the file and exit the editor.

Scheduling the Backup

All that is left now is to schedule the backup, which is done through Task Scheduler, which is included in Windows.

Open Task Scheduler by choosing: Start Menu, Programs, Accessories, System Tools, Scheduled Tasks.

The Scheduled Tasks explorer will open. Double click the item named "Add Scheduled Task".

In the first Window, simply click "Next".

In the second Window, you are asked to "click the program you want windows to run". Do not choose a program from the list. Instead, click the "browse" button.

Choose the program c:\program files\cwrsync\cwrsync.cmd

In the third window, you are asked to "type a name for this task" - you can name it whatever you like. Perhaps "rsync.net Automated Backup".

You are also asked, in this third window, how often to perform the task. In this example we will choose to perform the backup weekly.

In the fourth window, you are asked to choose a start time. We suggest sometime between 10pm and 6am. You should not perform these backups during the business day, as the network traffic they consume could affect your work.

In the fifth window, you are asked to "Enter the name and password of a user" - this is the Windows login that the backup will run under, and it is important that you choose the same Windows login that you used to create your RSA key, above. The username is entered in the form computername\username ... for instance: server01\administrator The password should be entered as well.

In the sixth and final window, click "finish".

Testing Your Backup

It is extremely important that you test your backup. You are testing not only that the backup works properly and transfers the files you think it will, but also that it will properly log into your rsync.net filesystem without prompting you for a password.

The first test, making sure the automated backup is not prompted for a password, is performed simply by running the backup yourself. From the start menu, choose Run, and type in the location of your backup script:

c:\progra~1\cwrsync\cwrsync.cmd

You should see the backup run in the command prompt that appears, and it should complete without asking you for a password.

After you have completed a successful backup, and periodically as time goes on, you should then log into your rsync.net account and browse your filesystem.

The different methods of browsing your rsync.net filesystem in Windows are detailed here:

Windows Integration Overview

Additional Notes

- When testing your backup, be sure that Administrator is NOT logged onto the system twice - otherwise the DOS window that appears when your backup runs automatically from the Windows scheduler may appear in the other session (perhaps a remote access login). Having the administrator account logged into the system more than once can cause you not to see error messages that will help you diagnose the batch file if it is not running properly from the Windows scheduler.

- The sample rsync command above has a setting: --chmod u+rwx that ensures that all files you upload to rsync.net, in addition to whatever other permissions they have, are given read/write/execute permission for the files owner. This setting is highly recommended and should only be altered if you know exactly what you are doing. It should be noted, however, that this may result in files on the remote side with more permissive permissions than the source files.

More Information

rsync.net publishes a wide array of support documents as well as a FAQ

You, or your CEO, may find our CEO Page useful.

Please see our HIPAA and Sarbanes-Oxley complianc e statements.

Contact info@rsync.net for more information, and answers to your questions.

http://www.rsync.net/resources/howto/windows_rsync.html

rsync Backups for Windows的更多相关文章

  1. Windows和Linux之间 rsync数据同步

    转载于   https://www.linuxidc.com/Linux/2014-01/95722p2.htm rsync是类unix系统下的数据镜像备份工具,从软件的命名上就可以看出来了——rem ...

  2. 使用rsync在linux(服务端)与windows(客户端)之间同步

    说明: 1.RsyncServer服务端 系统:CentOS 6.8 IP地址:192.168.247.141 2.Rsync客户端 系统:Windows10 实现目的: Rsync客户端同步服务端/ ...

  3. 烂泥:Linux系统与windows系统文件同步

    本文由秀依林枫提供友情赞助,首发于烂泥行天下. 上篇文章中,我们介绍了有关Linux系统之间的文件同步,这篇文章我们来介绍下,有关Linux系统与windows系统,以及windows系统与windo ...

  4. Windows下cwRsync搭建步骤

    文章(一) CwRsync是基于cygwin平台的rsync软件包,支持windows对windows.windows对Linux.Linux对windows高效文件同步.由于CwRsync已经集成了 ...

  5. rsync用于数据迁移/备份的几个细节

    上周我们的一个GitLab服务频繁出现web页面卡死问题,得重启虚拟机才可恢复,但重启之后没多久又会卡死.后来发现是虚拟机的磁盘大小超过了2T,而虚拟机管理那层的文件系统是ext3,最大单文件只能支持 ...

  6. Rsync的配置与使用

    一.介绍 (不想看直接可以跳过) Rsync是一个远程数据同步工具,可通过LAN/WAN快速同步多台主机间的文件.Rsync本来是用以取代rcp的一个工具,它当前由 rsync.samba.org维护 ...

  7. rsync 3.1.3

    rsyncd.conf 2018年1月28日 rsyncd配置(5) 2018年1月28日 姓名 rsyncd.conf配置rsync守护进程的方式在file for 概要 rsyncd.conf 描 ...

  8. rsync全网备份

    rsync备份企业方案 企业有Linux服务器又有windows服务器,备份用rsync(服务端),Linux(客户端),Windows(客户端,cwrsync,旧版本有免费版)打包压缩数据往服务器上 ...

  9. 配置rsync同步文件到nas

    windows下以前的做法是安装一个cygwin包,现在不需要了,直接安装一个linux子系统用linux命令就行了. start cmd /k "c:\cygwin64\bin\rsync ...

随机推荐

  1. 海量数据处理算法—Bloom Filter

    海量数据处理算法—Bloom Filter 1. Bloom-Filter算法简介 Bloom-Filter,即布隆过滤器,1970年由Bloom中提出.它可以用于检索一个元素是否在一个集合中. Bl ...

  2. uva - Broken Keyboard (a.k.a. Beiju Text)(链表)

    11988 - Broken Keyboard (a.k.a. Beiju Text) You’re typing a long text with a broken keyboard. Well i ...

  3. Codeforces 435B. Pasha Maximizes

    简单贪心.... B. Pasha Maximizes time limit per test 1 second memory limit per test 256 megabytes input s ...

  4. Win8.1应用开发之异步编程

    在win8应用商店开发时,我们会遇到很多异步方法.它们存在的目的就是为了确保你的应用在运行须要大量时间的任务时仍能保持良好的响应,也就是说调用异步API是为了响应用户的操作.设想一下我们点击一个But ...

  5. PopupWindow的使用以及ArrayAdatper.notifyDataSetChanged()无效详解

    Android的对话框有两种:PopupWindow和AlertDialog.它们的不同点在于: AlertDialog的位置固定,而PopupWindow的位置可以随意 AlertDialog是非阻 ...

  6. 用eclipse编写Android程序时怎样生成apk文件

    转载请注明出处:http://blog.csdn.net/ns_code/article/details/16828449 APK是Android Package的缩写,即Android安装包.通过将 ...

  7. android开发之Intent.setFlags()_让Android点击通知栏信息后返回正在运行的程序

    android开发之Intent.setFlags()_让Android点击通知栏信息后返回正在运行的程序     在应用里使用了后台服务,并且在通知栏推送了消息,希望点击这个消息回到activity ...

  8. android之wifi开发

    WIFI就是一种无线联网技术,常见的是使用无线路由器.那么在这个无线路由器的信号覆盖的范围内都可以采用WIFI连接的方式进行联网.如果无线路由器连接了一个ADSL线路或其他的联网线路,则又被称为“热点 ...

  9. docker学习笔记4:利用docker hub上的mysql镜像创建mysql容器

    docker hub上有官方的mysql镜像,我们可以利用它来创建mysql容器,作为一个服务容器使用. 1.下载mysql镜像 docker pull mysql 2.创建镜像 docker run ...

  10. JavaScript提高:005:ASP.NET使用easyUI TABS标签显示问题

    前面使用easy ui来实现了一个tabs标签(http://blog.csdn.net/yysyangyangyangshan/article/details/38307477),只是在ASP.NE ...