- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- vg changing controlers
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
04-11-2001 05:40 AM
04-11-2001 05:40 AM
Whats going on:
K460 with 3 Jamacia boxs. The Jamacia boxes have about 6 Drives in each. We are upgrading the K460 to a K580. The hardware path of one of the jamacia boxes is going to change. What is the easiest, most painless, way to get the vg ported over to the new controler?
NO MIRRORS. HFS filesystems.
...jcd...
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2001 05:48 AM
04-11-2001 05:48 AM
Re: vg changing controlers
use the ioinit command. See man page for it, in the examples section is how to reassign an instance number to a card, this way you can retain your c1,c2,c3... instance numbers for your drives when you change hardware. Very handy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2001 05:50 AM
04-11-2001 05:50 AM
Re: vg changing controlers
check vgexport/vgimport.
-vgexport the VG
-move the drive(s)
-create device files for VG
-vgimport the VG
good luck,
Thierry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2001 05:52 AM
04-11-2001 05:52 AM
SolutionUse vgexport/vgimport. See the man pages for both for more information.
On the "outgoing side":
# vgexport -p -v -s -m /tmp/vgXY.mapfile /dev/vgXY
...and on the "incoming side"...
# mkdir /dev/vgXY
# mknod /dev/vgXY/group c 64 0xXY0000
# vgimport -s -m /tmp/vgXY.mapfile vgXY
# vgchange -a y vgXY
# vgcfgbackup vgXY
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2001 06:14 AM
04-11-2001 06:14 AM
Re: vg changing controlers
...jcd...