Operating System - HP-UX
1753515 Members
5339 Online
108795 Solutions
New Discussion юеВ

Re: ignite Backup: Listing all backups

 
SOLVED
Go to solution
Sanjay Verma
Super Advisor

ignite Backup: Listing all backups

Friends, I've the following line in my crontab - /opt/ignite/bin/make_recovery -Ai -d /dev/rmt/0m 2>&1.

Can you tell me the way I can get a list of all the backups being done?? Which file systems / folders etc. etc.?? or How can I identify what's being backed up?
Co-operation - The biggest chain reaction
11 REPLIES 11
Naveej.K.A
Honored Contributor

Re: ignite Backup: Listing all backups

hi,

/var/opt/ignite/recovery/date,time/flist,
this file will give you the list of files which have been backed up.

the date and time is the instant when the backup was created...

With best wishes
naveej

practice makes a man perfect!!!
Suresh Patoria
Super Advisor

Re: ignite Backup: Listing all backups

Hi,

check the following command

forward the media 1 track

#mt -t /dev/rmt/Xmn fsf 1

verify the files backedup

#tar -tvf /dev/rmt/Xmn

(Note: X is stand for ur device files like 0mn )

Thanx
Sanjay Verma
Super Advisor

Re: ignite Backup: Listing all backups

Naveej, I don't have any files with the name specified by you in the /var/opt/ignite/recovery folder.

Suresh, the following err. msg. is recd. when executing the tar command:
# tar -tvf /dev/rmt/0m
Tar: blocksize = 4
directory checksum error
Co-operation - The biggest chain reaction
Patrick Wallek
Honored Contributor

Re: ignite Backup: Listing all backups

Sanjay,

You must first space forward on the tape to bypass the boot portion.

# mt -f /dev/rmt/0mn rew
# mt -f /dev/rmt/0mn fsf 1
# tar -tvf /dev/rmt/0mn > /tmp/file_list 2>&1

Sundar_7
Honored Contributor
Solution

Re: ignite Backup: Listing all backups

With the -A option, everything in VG00 is included in the recovery tape.
Learn What to do ,How to do and more importantly When to do ?
Wilfred Chau_1
Respected Contributor

Re: ignite Backup: Listing all backups

/var/opt/ignite/logs/makerec.log2 should list all the files in the make recovery tape.
Sanjiv Sharma_1
Honored Contributor

Re: ignite Backup: Listing all backups

Hi Sanjay,

List of all the files backed up can be found in /var/opt/ignite/logs/makrec.log2

Everything is possible
Naveej.K.A
Honored Contributor

Re: ignite Backup: Listing all backups

Hi,
I execute
make_tape_recovery -a -p /dev/rmt/0mn -x inc_entire=vg00
to archive my entire vg00 and the file list are stored in /var/opt/ignite/recovery/Time_stamp/flist.

I think you need to use the preview option to get the list of files in flist file

Thanks and Regards
Naveej
practice makes a man perfect!!!
Sanjay Verma
Super Advisor

Re: ignite Backup: Listing all backups

Naveej, Can you tell me how the "Time_Stamp" directory gets created. I could not find that directory in my system.
Co-operation - The biggest chain reaction