- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- configuration problem
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
06-15-2005 10:02 PM
06-15-2005 10:02 PM
I have aproblem since I restore my hp server with my latest tape make_recovery. some of the volum groups are missing. When I try to reconfigure them I meet some problems.
For insteace when using to create a vg the same vg non problem but when I try create the Lv on the error messeage cameout. see the attached document.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2005 10:13 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2005 12:59 AM
06-16-2005 12:59 AM
Re: configuration problem
As Pete stated, if all your disks containing these VG's are intact & only OS disk caused the recovery then you can do a vgimport on all these VG's. These can be done through SAM also as you are allready doing creation through that. If data on the volumes is not required then you can go for creation for that you should vgexport current VG's & create new from scratch.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2005 11:36 AM
06-16-2005 11:36 AM
Re: configuration problem
#strings /etc/lvmtab
Check the ioscan output to make sure all the disks are claimed.
If all the volumegroups are listed in the lvmtab, you might have to clear the entries for the ones that are not coming up by exporting them and reimport them provided you have the map files of the details of the disks that went to each one of them.
thanks
Devesh
thanks
Devesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2005 01:31 PM
06-16-2005 01:31 PM
Re: configuration problem
As you have restored from tape the device files fo the volume group has been restored. So system is not allowing you to make lvols with the same name. Check for PVs listed in /etc/lvmtab and confirm by ioscan that they are available. Then you can simply run vgscan -v (make a copy of /etc/lvmtab). or use vgimport you will get all your data. Remember if you create LV again you will loose data..
Cheers!!!
eknath
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2005 04:28 PM
06-16-2005 04:28 PM
Re: configuration problem
The mechanism of restoring server from make_recovery is it will restore all data in vg00 (root disk) and information about other VGs so that VGs is storing in /etc/lvmtab file. I suppose you should do following:
- backup file /etc/lvmtab by mv /etc/lvmtab /etc/lvmtab.org
- vgexport /dev/vg0* if you have created them (all VGs except vg00)
- vgscan -v to create a new /etc/lvmtab file
- using SAM or commands to create new VGs as:
mkdir /dev/vg*
mknod /dev/vg*/group c 64 0x0*0000
vgcreate and then lvcreate
Thanks and hope this help
HMT