- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- System recovery and lvmtab
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
08-12-2002 04:14 PM
08-12-2002 04:14 PM
We had to recover a system with make_recovery. Everything came back okay except a complete /etc/lvmtab. It contained the information for the local disks, but none for those connected to an EMC symmetrix. We had to rebuild this.
Is there any reason why this happened? I thought that the purpose of a make_recovery was to provide a copy of vg00, yet we only got a partial lvmtab back.
Regards,
Jo
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2002 04:34 PM
08-12-2002 04:34 PM
Re: System recovery and lvmtab
Are you using the soon to be obsolete make_recovery or the newer make_tape_recovery?
What options did you use?
To recreate lvmtab use "vgscan". Do a man on it, as you need an option "-a" I believe??
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2002 04:59 PM
08-12-2002 04:59 PM
Re: System recovery and lvmtab
We're using the obselete make_recovery (we are testing the new version). We use the options -CA.
Jo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2002 05:10 PM
08-12-2002 05:10 PM
Re: System recovery and lvmtab
Check to see what is on your tape (including the /etc/lvmtab) and assuming you tape drive is /dev/rmt/0m
# mt -t /dev/rmt/0m rew
# mt -t /dev/rmt/0mn fsf1
# tar tvf /dev/rmt/0m >/tmp/tape.out
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2002 05:30 PM
08-12-2002 05:30 PM
Re: System recovery and lvmtab
This is what I use to create ignite tapes. The one big advantage is that it is fully interactive so that you have total control during a recovery.
# /opt/ignite/bin/make_tape_recovery -x inc_entire=vg00 -I -v -a /dev/rmt/0mn
(note the use of the no-rewind device.)
Cheers
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 03:24 AM
08-13-2002 03:24 AM
SolutionI would expect this behavior. Ignite tape recovery (the old 'make_recovery' aswell as the newer 'make_tape_recovery') is designed to recover vg00 and 'vgimport' other volume groups. If the 'vgimport' fails, usually for reason of pv_paths that are different from those seen when the recovery tape was made, then the 'etc/lvmtab' is *not* updated with the volume groups reresented by the unmatched pv_paths.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 03:39 AM
08-13-2002 03:39 AM
Re: System recovery and lvmtab
As it was exactly the same hardware ( the same box) the recovery included a vgimport of all defined vgs, at the end of the recovery :
post_config_cmd="
/usr/sbin/vgimport -v -m /etc/lvmconf/vg......
"
The -A option will include ALL vgs.
HTH