用rsync对网站进行镜像备份(四)

日期: 2007-12-16 作者:fiery 来源:TechTarget中国

  Q:绑定端口873失败是怎么回事?

     A:如果你不是以root权限运行这一守护进程的话,因为1024端口以下是特权端口,会出现这样的错误。你可以用–port参数来改变。

     Q:为什么我认证失败?

     A:从你的命令行看来:

     你用的是:

     > bash$ rsync -a 144.16.251.213::test test

     > Password:

     > @ERROR: auth failed on module test

     >

     > I dont understand this. Can somebody explain as to how to acomplish this.

     > All suggestions are welcome.

     应该是没有以你的用户名登陆导致的问题,试试rsync -a max@144.16.251.213::test test

     四、一些可借鉴的脚本

     这里这些脚本都是rsync网站上的例子:

     1、每隔七天将数据往中心服务器做增量备份

     #!/bin/sh

     # This script does personal backups to a rsync backup server. You will end up

     # with a 7 day rotating incremental backup. The incrementals will go

     # into subdirectories named after the day of the week, and the current

     # full backup goes into a directory called "current"

     # tridge@linuxcare.com

     # directory to backup

     BDIR=/home/$USER

     # excludes file – this contains a wildcard pattern per line of files to exclude

     EXCLUDES=$HOME/cron/excludes

     # the name of the backup machine

     BSERVER=owl

     # your password on the backup server

     export RSYNC_PASSWORD=XXXXXX

 ########################################################################

     BACKUPDIR=`date +%A`

     OPTS="–force –ignore-errors –delete-excluded –exclude-from=$EXCLUDES

     –delete –backup –backup-dir=/$BACKUPDIR -a"

     export PATH=$PATH:/bin:/usr/bin:/usr/local/bin

     # the following line clears the last weeks incremental directory

     [ -d $HOME/emptydir ] || mkdir $HOME/emptydir

     rsync –delete -a $HOME/emptydir/ $BSERVER::$USER/$BACKUPDIR/

     rmdir $HOME/emptydir

     # now the actual transfer

     rsync $OPTS $BDIR $BSERVER::$USER/current 

我们一直都在努力坚持原创.......请不要一声不吭,就悄悄拿走。

我原创,你原创,我们的内容世界才会更加精彩!

【所有原创内容版权均属TechTarget,欢迎大家转发分享。但未经授权,严禁任何媒体(平面媒体、网络媒体、自媒体等)以及微信公众号复制、转载、摘编或以其他方式进行使用。】

微信公众号

TechTarget微信公众号二维码

TechTarget

官方微博

TechTarget中国官方微博二维码

TechTarget中国

电子邮件地址不会被公开。 必填项已用*标注

敬请读者发表评论,本站保留删除与本文无关和不雅评论的权力。

作者

fiery
fiery

相关推荐