- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Removing mirrored root 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
02-16-2003 09:53 PM
02-16-2003 09:53 PM
Removing mirrored root disk
I need to remove the mirrored root disk which i had configured. Can any one guide me the steps to remove the mirrored root disk.
Note: Does the mirroring will cause any performance issue. Because i had implemented one month before. After that only the compilation takes long time to complete.
Thanks
K.Rajesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2003 10:14 PM
02-16-2003 10:14 PM
Re: Removing mirrored root disk
To remove the mirror you need to lvreduce each volume from the mirror. you can easily put this into a script as well
Assuming you have only one mirror volume and your disk is /dev/dsk/c2t6d0
for LVOL in /dev/vg00/lv*
> do
> echo $LVOL
> lvreduce -m 0 $LVOL
> vgreduce /dev/vg00 /dev/dsk/c2t6d0
> done
HTH
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2003 10:47 PM
02-16-2003 10:47 PM
Re: Removing mirrored root disk
As far as performance is concerned only writing of data will take long time and dearing wont be effected. But i guess compilation should not have any problem.
Ok now to remove the mirror
First you'll have to reduce all the mirror
lvreduce -m 0 /dev/vg00/lvol1 /dev/dsk/c0...(the disk you want to remove)
do this for lvols mirror on that disk.
and then do vgreduce
vgreduce /dev/vg00 /dev/dsk/c0..(the disk you want to remove)
Cheers
Rajeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2003 10:57 PM
02-16-2003 10:57 PM
Re: Removing mirrored root disk
Regarding the mirroring performance Vg00
mirror across the another controler should not degrade the performance unless the disks
are of different speed.if you are talking about application file systems then Bottleneck could be different disk speed,
pci, disk controler cache, how the disks
has been configured and the no of disk array.
As well depends on whether its read intensive
or write intensive.
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2003 11:04 PM
02-16-2003 11:04 PM
Re: Removing mirrored root disk
Assume /dev/dsk/c1t5d0 and /dev/dsk/c2t5d0 are
mirrored. If you want to remove mirror from
/dev/dsk/c2t5d0
lvreduce -m 0 /dev/vg00/lvol? /dev/dsk/c2t5d0
repeat for all LVs.
vgreduce /dev/vg00 /dev/dsk/c2t5d0
Since you have noticed the slowness, please make sure the mirrored pairs are from different
disk/controller. The recomended way of doing
is to create Contiguous and strict alocation.
You can change it using lvchange command.
Regards
TT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2003 11:06 PM
02-16-2003 11:06 PM
Re: Removing mirrored root disk
to reduce the mirrored root disk.
#lvreduce -m 0 /dev/lvolx (x is the lvol number)
repaer the same for all lvol in that disk.
#vgreduce /dev/vg00 /dev/rdsk/cxtxdx
(cxtxdx is the mirrored disk)
Mirroing doesn't cause any problem, since it's RAID 1, performance slightly reduces as the I/O(r/w to the mirrored disk) increases