- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: substituting vg00 with another system disk
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
08-31-2003 03:36 AM
08-31-2003 03:36 AM
substituting vg00 with another system disk
what i planned to do is to boot in lvm maintanance mode and do vgexport to vg00 and vgimport to the new disk. The problem is that the computer doesn't boot in lvm maintanance mode, it does a crash. It boots perfectly to single user mode and to run level 3, but not in lvm maintanance mode.
Does anybody know why ? or knows how to do it ?
thanx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2003 04:02 AM
08-31-2003 04:02 AM
Re: substituting vg00 with another system disk
What messages are you receiving when the server fails to boot into lvm maintenance mode ?
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2003 04:19 AM
08-31-2003 04:19 AM
Re: substituting vg00 with another system disk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2003 04:39 AM
08-31-2003 04:39 AM
Re: substituting vg00 with another system disk
Most indications point to a problem with special files that are regular files
Here are a couple of DocId's for you to look at
http://www4.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000064209257
http://www4.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000066026060
HTH
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2003 10:09 AM
09-03-2003 10:09 AM
Re: substituting vg00 with another system disk
Most likely the problem is with /stand/rootconf file which is used by lvm to locate root and mount it as /dev/root without activative VG00.
boot in multi user mode and recreate /stand/rootconf using
# lvlnboot -c
This will recreate /stand/rootconf.
Thanks,
Sundar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2003 11:19 AM
09-10-2003 11:19 AM
Re: substituting vg00 with another system disk
if c1t6d0 is new disk
and c0t6d0 is old
pvcreate -B /dev/rdsk/c1t6d0
vgextend /dev/vg00 /dev/dsk/c1t6d0
mkboot /dev/rdsk/c1t6d0
mkboot -a "hpux (;0) /stand/vmunix" /dev/rdsk/c1t6d0
lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c1t6d0
... lvextend -m 1 /dev/vg00/lvol2, lvol3 etc.
lvlnboot -R /dev/vg00
setboot -p
reboot
now unmirror from first drive
lvreduce -m 0 /dev/vg00/lvol1 /dev/dsk/c0t6d0
do same for lvol2 through n
do vgdisplay to ensure no extents are left on /dev/dsk/c0t6d0 and then vgreduce /dev/vg00 /dev/dsk/c0t6d0