- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HPUX 11.23 IA 64 error when mirroring
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 02:36 AM
09-09-2004 02:36 AM
i am going thru the mirroring process for this OS and although it says the process was successful;
root@hostname:/>lvextend -m 1 /dev/vg00/lvol7 /dev/dsk/c2t0d0s2
The newly allocated mirrors are now being synchronized. This operation will
take some time. Please wait ....
Logical volume "/dev/vg00/lvol7" has been successfully extended.
vgcfgbackup: Invalid LVMREC on Physical Volume /dev/rdsk/c2t0d0
i am getting this comment... any ideas on what this means?
vgcfgbackup: Invalid LVMREC on Physical
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 02:54 AM
09-09-2004 02:54 AM
Re: HPUX 11.23 IA 64 error when mirroring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 02:55 AM
09-09-2004 02:55 AM
Re: HPUX 11.23 IA 64 error when mirroring
I am not an itanium guy. But I believe the functionality of LVM should be the same.
Invalid LVMREC indicates a problem with the PV c2t0d0. You should be getting PV errors when you run commands like 'vgdisplay', 'lvlnboot' etc., To verify do
pvdisplay -v /dev/dsk/c2t0d0
If it cannot recognize c2t0d0, then you will have to fix it. Check if the disk is physically there with 'ioscan -f;ioscan -fnC disk' commands. Run
dd if=/dev/rdsk/c2t0d0 of=/dev/null bs=1024k
It should complete successfully without IO errors else you have to replace the disk.
After that, run 'vgcfgrestore' to recover the LVM structures. If it is a mirror disk, then do
1 pvcreate -B -f /dev/rdsk/c2t0d0
2 vgcfgrestore -n vg00 /dev/rdsk/c2t0d0
3 vgchange -a y vg00
4 mkboot -l /dev/rdsk/c2t0d0
5 mkboot -a "hpux -lq" /dev/rdsk/c2t0d0
6 vgsync vg00
7 lvlnboot -R
IF it is not a boot mirror disk but an ordinary mirror, then follow steps 2,3 and 6. If it not a mirror at all, then follow 2,3 but you may have to restore the data.
-Sri
mkboot -l
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 02:57 AM
09-09-2004 02:57 AM
Re: HPUX 11.23 IA 64 error when mirroring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 03:00 AM
09-09-2004 03:00 AM
Re: HPUX 11.23 IA 64 error when mirroring
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 03:03 AM
09-09-2004 03:03 AM
Solutiondid you pvcreate the disk before you started ?
Europe
http://www4.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000072837833
US
http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000072837833
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 03:53 AM
09-09-2004 03:53 AM
Re: HPUX 11.23 IA 64 error when mirroring
I thought that going thru the new process would get rid of everything on that disk but i may not have. There is a pvcreate -fB command on the IA64 instructions so i thought that would get rid of any info from before.
i think i have to do a vgreduce /dev/vg00 /dev/dsk/c2t0d0
and then do another PVCREATE -f and then start the procedure again.. right?????
in addition, i don't understand was the "s1" "s2" designations are on the drives in IA64 systems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2004 04:15 AM
09-09-2004 04:15 AM
Re: HPUX 11.23 IA 64 error when mirroring
I suggest if you already established the mirrors, then reduce them and take the disk out of vg00 and start the process again fresh.
From my understanding s1 partition is for EFI and s2 is for HP-UX.
-Sri