HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Removing Second disk from Mirror VG00
Operating System - HP-UX
1837939
Members
2570
Online
110124
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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
06-24-2004 09:37 PM
06-24-2004 09:37 PM
Hi peeps
See attached
Can anyone help please.
uname -a
HP-UX homer B.11.00 A 9000/867 1401385272 two-user license
getconf KERNEL_BITS
32
Originally I was extending VG00 from one 4GB (c4t5d0) disk to another 2X2GB (c2t0d0) & (c2t5d0) disk equating to 8GB in total, just to outline and simplify things.
I was about to setup a mirror, but the second 2Gb disk complained while extending /dev/vg00/lvol2 over to the two disks. So I first thought to shutdown and try and fix the disk prob, then rebooted and though just back the whole thing out.
I wish I never started now ;-)
So Peeps B 4 I Ignite the box. "Bit drastic mind. Anyone got any Ideas
Cheers
Rich
See attached
Can anyone help please.
uname -a
HP-UX homer B.11.00 A 9000/867 1401385272 two-user license
getconf KERNEL_BITS
32
Originally I was extending VG00 from one 4GB (c4t5d0) disk to another 2X2GB (c2t0d0) & (c2t5d0) disk equating to 8GB in total, just to outline and simplify things.
I was about to setup a mirror, but the second 2Gb disk complained while extending /dev/vg00/lvol2 over to the two disks. So I first thought to shutdown and try and fix the disk prob, then rebooted and though just back the whole thing out.
I wish I never started now ;-)
So Peeps B 4 I Ignite the box. "Bit drastic mind. Anyone got any Ideas
Cheers
Rich
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2004 09:43 PM
06-24-2004 09:43 PM
Solution
boot,swap and root needs to be contegious hence u can not mirror those lv's to two disks.
Instead,
mirror them to one of the disk and then opt,usr,tmp can be mirrored to other two disks.
diskinfo needs a charecter special file hence use /dev/rdsk/.....
vgreduce -f can be used to remove t5 as it seems to be offline (h/w error)...
Why not mirror to one single 4 GB disk ?.
Kaps
Instead,
mirror them to one of the disk and then opt,usr,tmp can be mirrored to other two disks.
diskinfo needs a charecter special file hence use /dev/rdsk/.....
vgreduce -f can be used to remove t5 as it seems to be offline (h/w error)...
Why not mirror to one single 4 GB disk ?.
Kaps
Nothing is impossible
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2004 09:52 PM
06-24-2004 09:52 PM
Re: Removing Second disk from Mirror VG00
It should hv been ..
pvcreate â B /dev/rdsk/c2t0d0 # This will be used to boot incase the master fails..
vgextend /dev/vg00 /dev/dsk/c2t0d0 /dev/dsk/c2t5d0
mkboot /dev/rdsk/c2t0d0
Mkboot â a â hpux â lq (;0)/stand/vmunixâ /dev/rdsk/c2t0d0
lvextend â m 1 /dev/vg00/lvol3 /dev/rdsk/c2t0d0
lvextend â m 1 /dev/vg00/lvol1 /dev/rdsk/c2t0d0
lvextend â m 1 /dev/vg00/lvol2 /dev/rdsk/c2t0d0
Provided lvol1+2+3 not more than 2 GB
Backout should hv been ..
lvreduce â m 0 /dev/vg00/lvol1
lvreduce â m 0 /dev/vg00/lvol2
lvreduce â m 0 /dev/vg00/lvol3
vgreduce /dev/vg00 /dev/dsk/c2t0d0
vgreduce -f /dev/vg00
check the last two commands ("try man vgreduce
pvcreate â B /dev/rdsk/c2t0d0 # This will be used to boot incase the master fails..
vgextend /dev/vg00 /dev/dsk/c2t0d0 /dev/dsk/c2t5d0
mkboot /dev/rdsk/c2t0d0
Mkboot â a â hpux â lq (;0)/stand/vmunixâ /dev/rdsk/c2t0d0
lvextend â m 1 /dev/vg00/lvol3 /dev/rdsk/c2t0d0
lvextend â m 1 /dev/vg00/lvol1 /dev/rdsk/c2t0d0
lvextend â m 1 /dev/vg00/lvol2 /dev/rdsk/c2t0d0
Provided lvol1+2+3 not more than 2 GB
Backout should hv been ..
lvreduce â m 0 /dev/vg00/lvol1
lvreduce â m 0 /dev/vg00/lvol2
lvreduce â m 0 /dev/vg00/lvol3
vgreduce /dev/vg00 /dev/dsk/c2t0d0
vgreduce -f /dev/vg00
check the last two commands ("try man vgreduce
Nothing is impossible
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2004 09:59 PM
06-24-2004 09:59 PM
Re: Removing Second disk from Mirror VG00
diskinfo is a type i cut and pasted yep I know it should be a Rw divice file cheers for spotting that.
I pressumed by specifying both disks it would have managed the mirroring its self and then carried on to the second disk?
I did put / /stand & swap on to the first disk I pressume by doing it this way ?
Just want to get rid of it now.
vgreduce -f did work cheers
I can manage now ta
ten point I pressume
I pressumed by specifying both disks it would have managed the mirroring its self and then carried on to the second disk?
I did put / /stand & swap on to the first disk I pressume by doing it this way ?
Just want to get rid of it now.
vgreduce -f did work cheers
I can manage now ta
ten point I pressume
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP