search for: rsync_backup

Displaying 10 results from an estimated 10 matches for "rsync_backup".

2003 Feb 24
2
Rsync between HPUX11.11 and Redhat7.3
...: Im running an rsync server on Redhat7.3. The rsync server configuration file looks as follows: #### rsyncd.conf log file = /var/log/rsyncd.log pid file = /var/run/rsyncd.pid lock file = /var/run/rsyncd.lock max connections = 5 use chroot = true list = true read only = true auth users = rsync_backup secrets file = /etc/rsyncd.secrets strict modes = true transfer logging = true uid = 0 gid = 0 [server_config] path = /opt/config comment = Server configuration files [home_dirs] path = /home comment = User home directories ## end rsyncd.conf I then use the HPUX machine as an...
2003 Mar 24
1
Rsync snapshots problem.
From: http://lists.samba.org/pipermail/rsync/2002-December/009101.html >Well, I followed this link: http://www.mikerubel.org/computers/rsync_snapshots/ > >and implemented it (with a bit of tweaking) on my home network. It is >used to make snapshots of two Windows PC's over samba. On one of the >machines (and not the other, from what I can tell) it deletes files from >the
2004 Nov 15
2
Problem with --backup and deleting a directory: Two directories created
Hello everyone, Im kinda new to rsync and this list, so if there are any errors in my reqest, please tell me. I want to use rsync to make a backup of a diretory, and use the --backup option. My script looks like this: rsync -ab --suffix=-`date -Iminutes` --backup-dir=rsync_backup --delete --rsh=ssh directoryA directoryB If I run it once, then delete the file directoryA/test/test.file, the directorys directoryB/rsync_backup/test is created, and the file test.file-204-11-15.... is created. So everything works fine. When I delete or rename a directory (e.g. directoryA/t...
2004 Jun 18
1
Rsync, Cygwin, & SSH: ntsec OR nontsec?
...er Info: Debian Sarge using rsync 2.6 (no daemon mode) Backup .bat file: rem ------------------- These change for each client. set USER=<Server_Login_Name> set USER_IP=<SourceIP> set BKUP_SRC=/cygdrive/c/foo-dir rem ------------------- These should not change-usually. set INST_DIR=rsync_backup set INST_LOC=C:\%INST_DIR% set CYGWIN=binmode tty set TERM=ansi set HOME=%INST_LOC% set REMOTE=<serverIP> set BKUP_DEST=data/ set LOG_DEST=backup_stats/ set LOG_FILE=/cygdrive/c/%INST_DIR%/home_rsync.log set BKUP_BKUP_DIR=backup_backups/ rem ------------------- The commands. date /T > c...
2006 Aug 22
1
rsync performance
We're using rsync 2.6.3 to sync two DELL PowerEdge servers with both Redhat-EL4 and otherwise nearly identical hardware (2.8/3GHz, 1GB RAM each). The source machine has a SCSI-RAID1, the destination a SATA-RAID1 disk attached. There are 5 filesystems which are rsynced via ssh. On the smaller filesystems with ~200.000 files/7GB, rsync takes 1-3 minutes: lion:/atg/ ========= Tue Aug 22
2004 May 18
1
error in rsync protocol data stream
I am doing this to rsync a file: rsync -avz /usr/local/websphere/appserver/hosts/default_host/jsp/servers/includes/file1 .txt backup.domain.com:jspfsp >> /var/log/rsync_backup.log I get these error: @ERROR: chroot failed rsync: connection unexpectedly closed (34 bytes read so far) rsync error: error in rsync protocol data stream (code 12) at io.c(165) I am rsyncing several folders between these two servers with no problem. But now I keep getting this rsyncing a single...
2004 Oct 28
1
rsync copy syntax error?
I'm doing a recurring copy from one server to another from the crontab in this fashion: rsync -av -e ssh --delete 10.0.1.18:/dir1/ /dir1 --progress &> /var/log/rsync_backup.log However, rsync is creating the dir /dir1/dir1 on the machine running this job instead of updating the /dir1 folder. According to the rsync man page, this is the correct syntax: rsync -avz foo:src/bar/ /data/tmp A trailing slash on the source changes this behavior to avoid creating an...
2006 Apr 09
1
how safe is it to rsync databases?
...ons on the net muddy the issue. Tridge's PHD thesis mentions that people use rsync for replicating their databases to backup servers. i would have thought that that was OK if the DBM was shutdown during the backup...... But some people on the net like this: http://www.sanitarium.net/golug/rsync_backups.html Say: Why/When wouldn't you want to use rsync for backups? Databases: Rsync is a file level backup so it is not suitable for databases. If your primary data is databases then you should look somewhere else. If you have databases but they are not your primary data then there is a proced...
2003 Apr 05
2
WARNING: rsync mirror is erased when remote HD-dies
Hello, I faced a problem with rsync-ing like this server blue 3-HD's as Linux Sofware-RAID 0 (striping) - Webserver EXT3 server green 3-HD's as Linux Sofware-RAID 0 (striping) - Backupserver EXT3 During the rsync-2.4.6-13 process one of the HD's on blue died. Though rsync decided to remove the mirrored directories from green (the backup-server). This process resulted in a partial
2004 Jun 11
1
rsync through ssh tunnel
...sync://localhost:2020/share .. everything works as expected. But when I want to use rsync for the real work ... + rsync --rsh=/usr/local/bin/ssh --recursive \ --hard-links --perms --times --links \ --safe-links --one-file-system --relative \ --backup --backup-dir=/home/adv/rsync_backup \ '--suffix="-11.06.04"' --compress --timeout=180 \ --dry-run --verbose --stats \ /sourcedir rsync://127.0.0.1:2020/share FATAL: Connecting to rsync failed: No address associated to the name rsync: connection unexpectedly closed (0 bytes read so far) rsync...