- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- LVM disk replace
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
10-23-2003 02:58 PM
10-23-2003 02:58 PM
The rp5470 server have two disks mirrored!
The rp4530 server have only one disk contain user data and OS.
Yesterday rp5430 server down(mother board bad). I want to put the disk to rp5470 to get userdata.
How can I do?
For I'm an begeiner, a detail progress is high appreciated!
Thanks a lot!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2003 03:08 PM
10-23-2003 03:08 PM
Re: LVM disk replace
Shut down server, move the disk(no shut down for hot swap). If you don't shut it down ioscan to get the disk recognized.
Be careful about mixing SE and LVD disks. Check the specs at http://partsurfer.hp.com
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2003 03:17 PM
10-23-2003 03:17 PM
Re: LVM disk replace
Are you adding a disk or replacing it.
to add a disk to a volume group in the rp5470 server:
# pvcreate /dev/rdsk/cxtxdx
# vgextend /dev/vg00 /dev/dsk/cxtxdx
mount the file system!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2003 03:17 PM
10-23-2003 03:17 PM
SolutionConnect the disk to rp5470 and vgimport the disk into a new volume group and mount the lv if they are file systems.
1. Use ioscan and locate the new disk, say /dev/dsk/cxdxtx
2. mkdir /dev/vgrp5430
check for a free minor number, say "0x050000" is free
3. mknod /dev/vgrp5430/group c 64 0x050000
4. vgimport /dev/vgrp5430 /dev/dsk/cxdxtx(new disk connected from rp54300)
5. You'll see it will import all the lvols created on that disk(the only difference is you'll have to locate which one is which as names will change and all of them will be in the sequence of lvol1, lvol2 lvol3 etc...)
6. activate the vg using vgchange -a y /dev/vgrp5430
6. create a direcory say /rp5430 and under it create all the directories that were in the old system and mount all lvols you'll see you'r data.
I think you'll have to do fsck as well.
That should give you you'r old data.
Cheers
Rajeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2003 03:27 PM
10-23-2003 03:27 PM
Re: LVM disk replace
congrats Rajeev for the crown!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2003 03:37 PM
10-23-2003 03:37 PM
Re: LVM disk replace
Thank you, thank you very much