Problem with backup script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Problem with backup script
# 1  
Old 01-26-2009
Data Problem with backup script

Hi,

Following is the script I made for backing up Cpanel server.

================================================

Code:
#! /bin/bash


rsync -raopguzl  --delete --exclude "*.tar.gz" --progress --delete-excluded root@$hostname:/$otherdir/$i/ /mnt/iscsi/$hostname/home/$i


done

================================================


Script is fine but the Rsync stucks at

md5sum is: cc613b32c467ec0cc7ee0cbd49b8bb2f
cpmove-a2801cen.tar.gz 100% 456KB 456.3KB/s 00:00
receiving file list ...
3350 files to consider

sent 16 bytes received 87767 bytes 58522.00 bytes/sec
total size is 34898318 speedup is 397.55


Rsync is not exiting and going to next user.

Please let me know that where I am wrong.

Thanks in advance

Last edited by mohitmoudgil; 01-27-2009 at 02:31 PM..
# 2  
Old 01-27-2009
Rsync is not exiting, you're sure? Did you just try and put an echo behind the rsync statement? Maybe an echo $? to check what exit code it has. Also maybe add a -v to rsync to see more of it.

Also please use [ code ] tags when posting scripts, data, logs etc. ty.
# 3  
Old 01-27-2009
Hi,

Ok I added one echo statment after rsync

Code:
 echo "rsync complete for user $i"


And got the result

rsync complete for user a2801cen

BUt it hangs after this. One strange thing. As soon as I press ctrl+C it start with another user. For termination of script I have to press ctrl+C thrice

So may be it is not existing properly and going to next user automatically.
# 4  
Old 01-27-2009
Hi,

Problem was with the firewall. It was stopping repeated connections to the server. My bad Smilie
# 5  
Old 04-09-2009
Hi all

I have a backup script which will tar some of folders and scp to the tape drive. Now is i run the script manually it creates a bakup of 2.8 Gb if i crontab the same script every day its creating a back up of just 38 Mb.. most of the dirs are not there at all..
Please help.....

Regards
RG
# 6  
Old 04-09-2009
First, you've hijacked a thread rather than starting your own. Second, you haven't provided enough information for anyone to help.

It's possible that it's related to environment. The cron environment is not the same as a user profile when you are logged in. However, that's just a shot in the dark. Tell us what your script is, what you are trying to back up, what your system is and the remote system (presuming from scp) and tape drive. Provide enough detail and explanation and someone should be able to help. Or you might answer it yourself. Smilie
# 7  
Old 04-09-2009
Iam sorry I shall do that . i shall start new thread adn will explain the issue in detail..
Thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help with Backup Shell Script for Network Device Configuration backup

HI all, im new to shell scripting. need your guidence for my script. i wrote one script and is attached here Im explaining the requirement of script. AIM: Shell script to run automatically as per scheduled and backup few network devices configurations. Script will contain a set of commands... (4 Replies)
Discussion started by: saichand1985
4 Replies

2. Shell Programming and Scripting

rsync backup mode(--backup) Are there any options to remove backup folders on successful deployment?

Hi Everyone, we are running rsync with --backup mode, Are there any rsync options to remove backup folders on successful deployment? Thanks in adv. (0 Replies)
Discussion started by: MVEERA
0 Replies

3. Ubuntu

problem in backup

Hi I am using Ubuntu back up program to the back up automatic. Problem is that recently the app start to fail. I get the following message: Traceback (most recent call last): File "/usr/bin/duplicity", line 1359, in <module> with_tempdir(main) File "/usr/bin/duplicity", line 1342,... (1 Reply)
Discussion started by: programAngel
1 Replies

4. Shell Programming and Scripting

Please : Script Backup Problem

I have script but not work.. ===================================== #!/bin/bash # backup Backup_Dirs="/home/test" Backup_Dest_Dir=/tmp Backup_Date=`date +%b%d%y` #Create Backup tar cvzf $Backup_Date.tar.gz $Backup_Dirs $Backup_Dest_Dir ====================================== What's... (1 Reply)
Discussion started by: mbah_jiman
1 Replies

5. Shell Programming and Scripting

Problem with tar in a backup script

I had an idea of very-very easy bacup script that packs ALL of the files in current dir (including the subfulders and with spaces in name), packs them with tar+gz and moves to a directory. I'm using Cywin under WinXP. But I have a problem with tar. When I do in a single line "tar -rf... (2 Replies)
Discussion started by: TennageWerewolf
2 Replies

6. UNIX for Dummies Questions & Answers

Unix 10.2 Backup Problem

We have an older HP Unix 10.20 system that we rarely ever use anymore. Most of our jobs on it are from 1994 to 2002. Anything after that is on Windows XP. The Unix system was backed up religiously every day. Because of space constraints some of the jobs were removed from the system after a... (3 Replies)
Discussion started by: fozzybear
3 Replies

7. UNIX for Dummies Questions & Answers

Tape Backup Problem?

Hi. Can someone please tell what the following tape error message means: Read end of medium on output If you want to go on, type device/file name when ready This message comes after the terminal displays a few files from the directory I'm trying to backup. The command I'm running is: ... (1 Reply)
Discussion started by: cstovall
1 Replies

8. UNIX for Advanced & Expert Users

Backup problem---Again

I tried backing up my mailserver on my nsrhost using solstice backup 5.5.1 software. After creating the usual custom settings, and starting the backup procedure using the group control button, backup initializes but the group backup becomes suspended. When i click on the details radio button in... (4 Replies)
Discussion started by: lealyz
4 Replies

9. UNIX for Advanced & Expert Users

Backup problem---Again

I am running my solstice backup 5.5.1 server on a solaris 2.6 platform. I have a remote client ; my mailserver also running solaris 2.6. I created a unique pool and group for my mailserver, but when i label to pool, mount and run backup, it doesnt backup my mailserver, rather it gives me error... (10 Replies)
Discussion started by: lealyz
10 Replies

10. UNIX for Dummies Questions & Answers

backup problem

Hi all what may be the cause when i try to restore the backup (TAR) It's giving error tar block size =1 directory checksum error please suggest as soon as possible try n learn praful (4 Replies)
Discussion started by: Prafulla
4 Replies
Login or Register to Ask a Question