Operating System - HP-UX
1753853 Members
7455 Online
108808 Solutions
New Discussion юеВ

Ignite restoration problem...

 
SOLVED
Go to solution
piyush mathiya
Trusted Contributor

Ignite restoration problem...

Hi Gurus,

I have taken Ignite backup with the command "make_tape_recovery -x inc_entire=vg00 -a /dev/rmt/0mn -v -n 5" which got completed successfully. Now while restoring it to some other server I am getting below error.

======================================
The pre-installation analysis detected one or more ERRORS. The installation may not proceed until these errors are resolved.

ERROR: The mount point for "lvol11backup" is either NULL or the NULL string. This is not a valid mount point.

======================================
ON THE SERVER...
======================================
# bdf /dev/vg00/lvol1backup
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol1backup
298928 67536 201496 25%

# lvdisplay /dev/vg00/lvol1backup
--- Logical volumes ---
LV Name /dev/vg00/lvol1backup
VG Name /dev/vg00
LV Permission read/write
LV Status available/syncd
Mirror copies 0
Consistency Recovery MWC
Schedule parallel
LV Size (Mbytes) 304
Current LE 38
Allocated PE 38
Stripes 0
Stripe Size (Kbytes) 0
Bad block off
Allocation strict/contiguous
IO Timeout (Seconds) default

# uname -a
HP-UX XXXXXXX B.11.11 U 9000/800 3739200431 unlimited-user license

======================================
Seems "lvol1backup" is exist but not mounted anywhere, may be not in use. Please suggest me how to proceed.
======================================

5 REPLIES 5
Steven E. Protter
Exalted Contributor
Solution

Re: Ignite restoration problem...

Shalom,

You need to do one of two things:

1) Fix the source system and exclude the mount point lvol1backup form the image.

2) Manually intevervene at the Ignite interface and make changes to get past this error. You will have to see what logical volumes are present and you may wish to delete this one.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
piyush mathiya
Trusted Contributor

Re: Ignite restoration problem...

Steaven,

Yeah, I guess this can help me. In this below output all lvol with the name of backup is not in use. how to exclude it in ignite backup...?


=================================
# vgdisplay -v /dev/vg00 | grep "LV Name" | sort -k 2
LV Name /dev/vg00/lvol1
LV Name /dev/vg00/lvol10
LV Name /dev/vg00/lvol10backup
LV Name /dev/vg00/lvol11
LV Name /dev/vg00/lvol11backup
LV Name /dev/vg00/lvol13
LV Name /dev/vg00/lvol13backup
LV Name /dev/vg00/lvol17
LV Name /dev/vg00/lvol17backup
LV Name /dev/vg00/lvol1backup
LV Name /dev/vg00/lvol2
LV Name /dev/vg00/lvol2backup
LV Name /dev/vg00/lvol3
LV Name /dev/vg00/lvol3backup
LV Name /dev/vg00/lvol4
LV Name /dev/vg00/lvol4backup
LV Name /dev/vg00/lvol5
LV Name /dev/vg00/lvol5backup
LV Name /dev/vg00/lvol6
LV Name /dev/vg00/lvol6backup
LV Name /dev/vg00/lvol7
LV Name /dev/vg00/lvol7backup
LV Name /dev/vg00/lvol8
LV Name /dev/vg00/lvol8backup
LV Name /dev/vg00/lvol9
LV Name /dev/vg00/lvol9backup
=========================================

Regards,
Piyush Mathiya
piyush mathiya
Trusted Contributor

Re: Ignite restoration problem...

Gone through some old Threads & found the below steps to do so. Just want to confirm before implement on my production box.

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

-x exclude=/dev/vg00/lvol1backup

OR

-f /tmp/filename
Where file name contains below information.

exclude /dev/vg00/lvol8backup
exclude /dev/vg00/lvol10backup
exclude /dev/vg00/lvol7backup
exclude /dev/vg00/lvol4backup
exclude /dev/vg00/lvol9backup
exclude /dev/vg00/lvol6backup
exclude /dev/vg00/lvol17backup
exclude /dev/vg00/lvol13backup
exclude /dev/vg00/lvol5backup
exclude /dev/vg00/lvol11backup
exclude /dev/vg00/lvol2backup
exclude /dev/vg00/lvol1backup
exclude /dev/vg00/lvol3backup

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

Regards,
Piyush Mathiya
Pete Randall
Outstanding Contributor

Re: Ignite restoration problem...

If you truly have all those "backup" lvols, I would definitely go with your second method - it's simpler and accomplishes what you need.


Pete

Pete
piyush mathiya
Trusted Contributor

Re: Ignite restoration problem...

Thanks Pete...:)