Backup Script


 
Thread Tools Search this Thread
Operating Systems AIX Backup Script
# 1  
Old 05-23-2005
Backup Script

I'm not sure if this is the place to ask this question but I have a script on an IBM RS6000 that has quit working. I can manually run a backup using SMIT and it appears okay, but not sure about the script.

----------code------------
#!/bin/ksh
#set -x
echo backup beginning
date
find /home -print | backup -i -f /dev/rmt0.1 -q
echo backup finished
date
----------------------------

it had several other directories included as well but I figured I would start with one and see if I could narrow down the problem of not backing up

Any help on this one would be greatly appreciated. I just kind of inherited this problem and this server because the person that maintained it quit.

TIA,
cami
# 2  
Old 05-23-2005
"quit working" is not much to go on. Precisely what happens? I don't know AIX, but looking atthe backup man page, the only thing I notice is "/dev/rmt0.1" which looks odd. That man page says /dev/rmt0-1 would refer to two devices but I don't see any indication that a dot is acceptable. But since I don't know AIX, I suppose it might be legal.
# 3  
Old 05-23-2005
Backup Script

The script is executed from the crontab or I can run it manually and I see no error as it runs, but when I run SMIT to view the contents of the tape backup I get the following error:

restore: 0511-160 Cannot read the backup media
/dev/rmt0: There is an input or output error.

The backups have been running for a couple of years and when I started randomly checking them after the network person left a month or so later I would get the error every so often until I was finally getting it every day. Not exactly sure where to go next.

Smilie
# 4  
Old 05-23-2005
Backup Script

I removed the .1 altogether and it appears to be working. Not sure how the script got modified or by whom but thanks for the hint.

Smilie
# 5  
Old 05-23-2005
Check your /dev directory. You may have a large file called /dev/rmt0.1.
# 6  
Old 05-24-2005
I am not an expert, but I believe the ".1" after rmt0 tells the system not to rewind the tape so that another backup can be placed on the tape or allows a second backup on the same tape without writing over the first one. We have a backup that is similar. Here it is:
find /law1/DB/PROD -print | backup -iqvf /dev/rmt0.1
find /law1/lawson/ccsprod -print | backup -iqvf /dev/rmt0
# 7  
Old 05-24-2005
JYoung - hmm, maybe you are an expert - good call. Found the same info here

Of course, now we know this is okay to use, what is messing up the script??? It should work with the 0.1.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Backup Script

I don't know how to repair this script :/ My OS: Ubuntu Server 18.04 "Bionic Beaver" LTS (64bits) #!/bin/bash # ### Ustawienia - sciezki do plików ### DIRS="/home/ts/ /home/mc/" BACKUP=/home/backup.$$ NOW=$(date +"%d-%m-%Y") DELDATE=$(date -d "-7 days" +"%d-%m-%Y") DAY=$(date +"%a") #... (4 Replies)
Discussion started by: xCraftRayX
4 Replies

2. Shell Programming and Scripting

Backup Script

I have write the following script, its execution i got following error: !/bin/sh # # dy='date +%d%b%y' hn="ECTMPROD12" bk='/home/backup' sb=$bk'/'$hn # # cm_d01='tar -czf /home/backup/'$hn'_'$dy'_ofhome.tar.gz /home/oracle/ofhome' # # echo "***** start time of ECTMPROD12 backup full"... (3 Replies)
Discussion started by: rizwan.shaukat
3 Replies

3. Shell Programming and Scripting

Shell script to call Oracle archive backup script when file system reaches threshold value

Hello All, I need immediate help in creating shell script to call archivebkup.ksh script when archive file system capacity reaches threshold value or 60% Need to identify the unique file system that reaches threshold value. ex: capacity ... (4 Replies)
Discussion started by: sasikanthdba
4 Replies

4. 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

5. Shell Programming and Scripting

Backup script / Test if script is already running

Hello everyone, I have 2 questions : 1) I have a backup shell script, let's call it backup.sh, that is called every hour as a cron job. As a matter of fact a backup could last more than one hour. It mounts a NAS and then do some rsync on important directories, so really I don't want to... (2 Replies)
Discussion started by: freddie50
2 Replies

6. Shell Programming and Scripting

Need help in creating file restoration script from a backup script.

Hi all i am struggling in creating a restore of env files while doing applications clone. the first file i created for copying the important configurations file which is running perfect now for reverting the changes i mean when i am restoring these files to its original places i have to do... (7 Replies)
Discussion started by: javeedkaleem
7 Replies

7. 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

8. Shell Programming and Scripting

backup script

Hi, I need to write a script that will capture the 8th character on each line (alphanumeric /meta chars) to the 16th character and send to an output file. Any ideas? R, D. (3 Replies)
Discussion started by: Duffs22
3 Replies

9. Shell Programming and Scripting

help in backup script

Hello folks. Good Day! i want to backup /var/www directory backup to another system daily basis incremental backup and weekly full backup. Directory name where it should automatically created like 2010-04-20 i mean via script. Can some one help? (7 Replies)
Discussion started by: learnbash
7 Replies

10. UNIX for Dummies Questions & Answers

Backup Script

Hi, My SCO Unixware 7.1.1 box is setup to run an EOD backup script, which is as follows: ---------------------------------------------------------------------- start End-of-day compress $BASE TO /home/compdir write /home/compdir to DATTAPE end ... (0 Replies)
Discussion started by: tayyabq8
0 Replies
Login or Register to Ask a Question