- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- moving lvols
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-22-2009 01:09 PM
09-22-2009 01:09 PM
moving lvols
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2009 01:17 PM
09-22-2009 01:17 PM
Re: moving lvols
A vg00 comprised of four physical disks sounds like a poorly configured system; certainly so if (1) all of the logical volumes within vg00 aren't mirrored (or you use hardware mirroring); or if (2) you have non-standard operating system logical volumes (application data).
You don't indicate if anything is mirrored or not. If not, you may be able to 'pvmove' extents off the failing member.
You should look at this:
http://docs.hp.com/en/5991-1236/When_Good_Disks_Go_Bad_WP.pdf
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2009 04:35 PM
09-22-2009 04:35 PM
Re: moving lvols
Yeah, bad design.
Best solution is to reinstall the system from an ignite tape, properly defining each lvol and file system to avoid this kind of mess.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2009 03:52 AM
09-23-2009 03:52 AM
Re: moving lvols
Is there any mirroring in vg00?
Pls paste vgdisplay -v vg00 and lvdisplay -v /dev/vg00/lvolX o/p.
You can use pvmove -n /dev/vg00/lvolX source disk target disk.
Regards,
Awadhesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2009 03:59 AM
09-23-2009 03:59 AM
Re: moving lvols
The best option is take a Ignite backup replace the faulty disk and restore it in intractive mode.
Suraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2009 07:17 PM
09-23-2009 07:17 PM
Re: moving lvols
kindly run the command
#ioscan -fC disk to see which disk as failed
If S/W State is "NO_HW" or other than "claimed" means that disk as got failed.
Another way to check the status of failed disk
>pvdisplay /dev/dsk/c1t2d3 |grep "PVStatus"
PV Status unavailable
status available --> Working
unavailable --> Not Working
If you want to replace the fault disk. Shutdown your system and connect the new one
once the disk as been connected boot the system to single user mode. Check whether the disk as been detected
#ioscan -f -n -N -C disk
intialize the New disk
#pvcreate "New disk Name"
#vgextend vgname "New disk Name"
#pvmove faileddisk "New disk Name"
At last you can remove the physical disk from the volume group once the data as been transfered
#vgreduce "Fault Disk"
Hope this information will help you