1753856 Members
7254 Online
108809 Solutions
New Discussion юеВ

Re: HP-UX Ignite Error

 
SOLVED
Go to solution
Rootberry
Advisor

HP-UX Ignite Error

I am trying to create an ignite tape, for some reason it is bombing out now. I've had no problem in the past creating one. Attached is my log from from attempting to create it. Any advice would be very helpful as I don't feel safe not having a current ignite.

make_tape_recovery -x inc_entire=vg00

Thank You in Advance for Any Help!
9 REPLIES 9
Victor Fridyev
Honored Contributor

Re: HP-UX Ignite Error

Hi,

It looks like you have a problem with one of the disks, which are included in vg00 (/dev/dsk/c1t2d0). Either you have included it int vg00 or have excluded from it wrongly.

Answer with:
lvlnboot -v
strings /etc/lvmtab and
ioscan -fnCdisk


HTH
Entities are not to be multiplied beyond necessity - RTFM
Rootberry
Advisor

Re: HP-UX Ignite Error

Here is what I get, thanks again!

root[/] >lvlnboot -v
lvlnboot: Couldn't query physical volume "/dev/dsk/c1t2d0":
The specified path does not correspond to physical volume attached to
this volume group

/dev/vg00
/dev/dsk/c1t2d0
/dev/dsk/c2t0d0
/dev/vg01
/dev/dsk/c1t0d0
/dev/dsk/c2t2d0
/dev/vg02
/dev/dsk/c18t0d
/dev/dsk/c18t0d
/dev/dsk/c18t0d
/dev/dsk/c18t0d
/dev/dsk/c18t0d
/dev/dsk/c18t0d
/dev/dsk/c18t0d
/dev/dsk/c18t1d
/dev/dsk/c6t0d1
/dev/dsk/c6t0d2
/dev/dsk/c6t0d3
/dev/dsk/c6t0d4
/dev/dsk/c6t0d5
/dev/dsk/c6t0d6
/dev/dsk/c6t0d7
/dev/dsk/c6t1d0
/dev/dsk/c14t0d1
/dev/dsk/c14t0d2
/dev/dsk/c14t0d3
/dev/dsk/c14t0d4
/dev/dsk/c14t0d5
/dev/dsk/c14t0d6
/dev/dsk/c14t0d7
/dev/dsk/c14t1d0
/dev/dsk/c16t0d1
/dev/dsk/c16t0d2
/dev/dsk/c16t0d3
/dev/dsk/c16t0d4
/dev/dsk/c16t0d5
/dev/dsk/c16t0d6
/dev/dsk/c16t0d7
/dev/dsk/c16t1d0

ioscan -fnCdisk
Attached to log file
Victor Fridyev
Honored Contributor
Solution

Re: HP-UX Ignite Error

Hi,

You have a problem with /dev/dsk/c1t2d0 disk, it can not be found in the ioscan output. Try to eject/insert the disk, may be it will help, i.e you will see it in ioscan output.
If this disk is one of vg00 mirror couple, exclude it from vg00 and create ignite backup:
lvextend -m 0 /ev/vg00/lvolN /dev/dsk/c1t2d0 for each logical volume and lvreduce /dev/vg00 /dev/dsk/c1t2d0

HTH
Entities are not to be multiplied beyond necessity - RTFM
Victor Fridyev
Honored Contributor

Re: HP-UX Ignite Error

Hi,

You have a problem with /dev/dsk/c1t2d0 disk, it can not be found in the ioscan output. Try to eject/insert the disk, may be it will help, i.e you will see it in ioscan output.
If this disk is one of vg00 mirror couple, exclude it from vg00 and create ignite backup:
lvextend -m 0 /ev/vg00/lvolN /dev/dsk/c1t2d0 for each logical volume and vgreduce /dev/vg00 /dev/dsk/c1t2d0

HTH
Entities are not to be multiplied beyond necessity - RTFM
Victor Fridyev
Honored Contributor

Re: HP-UX Ignite Error

Rootberry, sorry for the mess:
The commands must be like that:

lvreduce -m 0 /dev/vg00/lvolname /dev/dsk/c1t2d0 for each logical volume

and vgreduce /dev/dsk/c1t2d0 for vg

Entities are not to be multiplied beyond necessity - RTFM
IT_2007
Honored Contributor

Re: HP-UX Ignite Error

Before you reduce disk off from vg00. Make sure to check which disk has been booted off.

echo "boot_string/S" |adb /stand/vmunix /dev/mem

If it is a vpar then use /dev/kmem

If server booted off from other disk then you can reduce all logical volumes
lvreduce -m 0 /dev/vg00/lvol$i /dev/dsk/c1t2d0

vgreduce /dev/vg00 /dev/dsk/c1t2d0
Rootberry
Advisor

Re: HP-UX Ignite Error

Rebooted the system and is not coming up, I am going to try a Bo Alt disk
Rootberry
Advisor

Re: HP-UX Ignite Error

System is coming back up on the mirror, before I rebooted i did that command you said
echo "boot_string/S" |adb /stand/vmunix /dev/mem it was saying /dev/dsk/c1t0d0 which is the mirror. I will try those vgreduce commands now so that i can get an ignite tape in case of the other disk failing.
IT_2007
Honored Contributor

Re: HP-UX Ignite Error

ok. It is always to good to check with which disk has been booted off before you do lvreduce and vgreduce commands on vg00.