- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- vgcfgbackup command fails
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
04-22-2003 07:25 PM
04-22-2003 07:25 PM
I have a volume group vg03 and
there are 4 physical volumes .
( ie 4 disk )
When i do vgcfgbackup on vg03 ,
it prompted
kernel is updated to have 5 disk . /etc/lvmtab has 4 disk .
All i need is to update vg03 to have 4 physical volumes since i have 4 disk .
I think it is the VGRA on pv's that needs to be update since
a vgdisplay on vg03 indicates
Cur Pv 5
Act Pv 4
So if i correct the Cur_Pv attribute , then vgcfgbackup on vg03 will be successful .
Any ideas ??
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2003 07:34 PM
04-22-2003 07:34 PM
Re: vgcfgbackup command fails
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2003 07:48 PM
04-22-2003 07:48 PM
Re: vgcfgbackup command fails
There is only 4 disk in the cabinet. 100% sure .
A vgdisplay -v /dev/vg03 indicates 4 physical volumes
( last entries have 4 list of /dev/dsk/cXtXdX )
strings of /etc/lvmtab shows
again the same 4 entries of /dev/dsk/cXtXdX.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2003 07:56 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2003 08:01 PM
04-22-2003 08:01 PM
Re: vgcfgbackup command fails
1) Rebuild /etc/lvmtab.
# cd /etc
# mv lvmtab lvmtab.old
# vgscan -v
2) Force reduction of missing PV.
# vgremove -f /dev/vg03
3) Export and import the VG.
==> After umounting all the FS on vg03..
# vgchange -a n /dev/vg03
==> Deactivate vg03
# vgexport -m /tmp/vg03map /dev/vg03
# mkdir /dev/vg03
# mknod /dev/vg03/group c 64 0x030000
==> minor number has to be unique
# vgimport -m /tmp/vg03map /dev/vg03 /dev/dsk/cXtXdX /dev/dsk/cYtYdY ....
Since you're sure it 4 disks, 1) is out of the question. You should try 2) and see if that helps. 3) will surely be able to update the correct LVM information onto the kernel.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2003 08:34 PM
04-22-2003 08:34 PM
Re: vgcfgbackup command fails
The vgreduce -f vg03 works .
After the vgreduce , the vgdisplay shows
Cur Pv 4
Act Pv 4 .
Now the VGRA for all pv's are updated .
Now my vgcfgbackup on vg03 works
perfectly with no errors !
Thanks alot
Thnaks also goes to K C chan for the effort & time .
rgds,
omari