- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: controller change on upgrade to 11.11
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
12-02-2002 08:21 AM
12-02-2002 08:21 AM
and used the cold install method, we then tried to import the non-vg00 volume groups and received quorom errors, we found out that the controller id's changed on the upgrade ( ie c1t12d0 now was c2t12d0). We are planning another upgrade of a 370 machine, and wonder if we will run into the same problem, and if it can be avoided.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2002 08:27 AM
12-02-2002 08:27 AM
Re: controller change on upgrade to 11.11
There's an option of vgexport/vgimport that addresses this (the -s option) but I'm pretty sure that it's unavailable in 10.20. Your only recourse is to prepare yourself by documenting your volume groups as they are and matching that to what they become.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2002 08:31 AM
12-02-2002 08:31 AM
Re: controller change on upgrade to 11.11
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2002 08:31 AM
12-02-2002 08:31 AM
Re: controller change on upgrade to 11.11
The is very common. The order in which hardware devices are sensed accounts for their ordering. If you have moved or added devices since the original I/O configuration, a subsequent cold-install may find them at different locations.
An easy way to do the 'vgimport' is to (have) created a mapfile which captured the the VGID of the physical volumes. This is done with the '-s' option during 'vgexport'. Applying this option during 'vgimport' will cause the process to read the VGID from all LVM disks, thus collecting the matched volumes into a volume group as defined in '/etc/lvmtab'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2002 08:36 AM
12-02-2002 08:36 AM
SolutionThe way to do it is:
# vgexport -m mapfilename -p -v -s vg??
This will create a mapfile with the VG-ID as the first line and all the LVs listed below that.
One these are created, copy them to tape or to your PC. When you system is upgraded, copy them back to the system and do:
# mkdir /dev/vg??
# mknod /dev/vg??/group c 64
Do this for all VGs
# vgimport -m mapfilename -s -v vg??
This way you don't have to know the exact devices that each VG is using. With the VG-ID in the mapfile, vgimport will search through all your devices for each disk that contains that particular VG-ID and import it for you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2002 08:38 AM
12-02-2002 08:38 AM
Re: controller change on upgrade to 11.11
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2002 08:54 AM
12-02-2002 08:54 AM