- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Move JBOD to another system
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
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
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
тАО04-15-2005 02:52 AM
тАО04-15-2005 02:52 AM
I have a system that died with a bunch of disks attached (JBOD) with a SCSI cable. The system has died (hardware error) and I need to move the JBOD to another system. Can someone tell me the steps or point me to a document that will guide me through bringing up these disks (vgs, lvols, etc) on another system?
Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-15-2005 03:00 AM
тАО04-15-2005 03:00 AM
SolutionIt's really just a matter of running vgimport. Hopefully, you've got some kind of map of what VG's and LV's existed - that will make it easier.
mkdir /dev/vg01
mknod /dev/vg01/group c 64 0x010000 (the minor number (01) has to be unique)
vgimport -s -m /tmp/vg01map /dev/vg01
vgchange -a y /dev/vg01
Now, the vgimport command may well not work with the -s option and you'll have to specify which disks belong to the VG and you probably don't have a map file so you can leave off the -m option. The -m is only really useful if you had non-standard logical volume names (other than lvol1, lvol2, etc).
So, probably in your case, it will be:
vgimport -v /dev/vg01 /dev/dsk/c0t1d0 /dev/dsk/c0t3d0
or something similar.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-15-2005 04:04 AM
тАО04-15-2005 04:04 AM
Re: Move JBOD to another system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-15-2005 05:39 AM
тАО04-15-2005 05:39 AM
Re: Move JBOD to another system
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-15-2005 05:45 AM
тАО04-15-2005 05:45 AM
Re: Move JBOD to another system
vgimport -s /dev/vg01
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-17-2005 09:33 PM
тАО04-17-2005 09:33 PM
Re: Move JBOD to another system
Is it resolved ? If not you can try the SAM options to import VG , it will automatically scan all the disks and will provide the nos. of VGs to be imported under Importable VG's Column. It is a very good practice when you do not know about the past configuration. But beware disk ID's should not be changed and all the disk should be accessible.
Full Path is
SAM->Disks and File Systems->Volumes Groups->Action->Import
HTH,
Devender