- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Devices have changed, how to reconfigure vg
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
03-24-2004 06:36 PM
03-24-2004 06:36 PM
I've a got a HP-UX 11i server connected to a disk cabinet. After some hardware change, my devices (cxtydz) which was correlated to the disk cabinet have changed.
Now I've a got a problem with my VGs on the disk cabinet.
How to redefine the VG (which still exist on the disk cabinet) to the new device ?
Thanks for your advice.
Lorenzo.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 06:44 PM
03-24-2004 06:44 PM
Re: Devices have changed, how to reconfigure vg
vgexport if possible.
vgimport if possible
If not, create a new volume group and vgextend to the new disks.
You hopefully have the data backed up, thought the export/import route doesn't require it.
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
03-24-2004 06:45 PM
03-24-2004 06:45 PM
Re: Devices have changed, how to reconfigure vg
SuSE Linux does this automatically u know !
Regds,
Kaps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 06:57 PM
03-24-2004 06:57 PM
Solutioninsf -e -C disk
mv /etc/lvmtab /etc/lvmtab.old
vgscan
(automatically picks up the new devices and updates lvmtab)
If that doesn't work stick on to vgexport/import.
-Karthik S S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 07:02 PM
03-24-2004 07:02 PM
Re: Devices have changed, how to reconfigure vg
and then run vgscan...
Your VGs with new address will be recreated.
With best wishes
naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 07:02 PM
03-24-2004 07:02 PM
Re: Devices have changed, how to reconfigure vg
vgscan is the best way.
move old lvmtab file and run vgscan -v it will automatically correct it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 07:19 PM
03-24-2004 07:19 PM
Re: Devices have changed, how to reconfigure vg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2004 10:38 PM
03-24-2004 10:38 PM
Re: Devices have changed, how to reconfigure vg
Thanks all.