- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- vgcfgbackup error
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
01-08-2004 03:30 AM
01-08-2004 03:30 AM
take some time. Please wait ....
Logical volume "/dev/vg00/lvol1" has been successfully extended.
vgcfgbackup: /etc/lvmtab is out of date with the running kernel:Kernel indicates 3 disks for "/dev/vg00"; /etc/lvmtab has 2 disks.
Cannot proceed with backup.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 03:36 AM
01-08-2004 03:36 AM
Re: vgcfgbackup error
usually this error is due to some differenices between /etc/lvmtab and /etc/lvmconf/vgXX.conf (in this instance vg00.conf).
In order to solve this problem
# mv /etc/lvmtab /etc/lvmtab.old
# vgscan -v
and re-try the backup.
I hope this helps you.
Best regards,
Ettore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 03:38 AM
01-08-2004 03:38 AM
Re: vgcfgbackup error
strings /etc/lvmtab: how many disk does it show for vg00?
mv /etc/lvmtab /etc/lvmtab.old
vgscan -a
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 03:43 AM
01-08-2004 03:43 AM
Re: vgcfgbackup error
vgreduce -f /dev/vg00
would that solv the prob?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 03:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 03:47 AM
01-08-2004 03:47 AM
Re: vgcfgbackup error
PV with key 1 sucessfully deleted from vg /dev/vg00
Repair done, please do the following steps.....:
1. save /etc/lvmtab to another file
2. remove /etc/lvmtab
3. use vgscan(1m) -v to re-create /etc/lvmtab
4. NOW use vgcfgbackup(1m) to save the LVM setup
root@tm012[/] # mv /etc/lvmtab /etc/lvmtab.old
root@tm012[/] # rm /etc/lvmtab
rm: /etc/lvmtab non-existent
root@tm012[/] # vgscan -v
Creating "/etc/lvmtab".
vgscan: Couldn't access the list of physical volumes for volume group "/dev/vg00".
Couldn't stat physical volume "/dev/dsk/c3t2d0":
Invalid argument
/dev/vg00
/dev/dsk/c1t2d0
/dev/dsk/c2t2d0
Scan of Physical Volumes Complete.
root@tm012[/] # vgcfgbackup -u /dev/vg00
vgcfgbackup: Configuration file "/etc/lvmconf/vg00.conf" not found or is corrupted
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 03:53 AM
01-08-2004 03:53 AM
Re: vgcfgbackup error
If your all PVs are connected and online, try
#vgdisplay -v /dev/vg00 verify CUR PVs and ACT PVs. If CUR PV is more than ACT PV, then you can give a try with vgreduce -f /dev/vg00. This will remove any missing PVs.
Keep a copy of /etc/lvmtab before doing all these.
Good luck
Shahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 03:54 AM
01-08-2004 03:54 AM
Re: vgcfgbackup error
To solve this problem try
# insf -e
and then
# vgscan -v
Best regards,
Ettore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 03:57 AM
01-08-2004 03:57 AM
Re: vgcfgbackup error
root@tm012[/] # vgcfgbackup -u /dev/vg00
vgcfgbackup: Configuration file "/etc/lvmconf/vg00.conf" not found or is corrupted
root@tm012[/] #
root@tm012[/] # ll "/etc/lvmconf/vg00.conf"
/etc/lvmconf/vg00.conf not found
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 04:04 AM
01-08-2004 04:04 AM
Re: vgcfgbackup error
The -u switch says to update the existing file. Try it without the -u.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 04:11 AM
01-08-2004 04:11 AM
Re: vgcfgbackup error
Volume Group configuration for /dev/vg00 has been saved in /etc/lvmconf/vg00.conf
TNX All