- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- pvextend - Too many physical extents
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-14-2002 08:09 AM
06-14-2002 08:09 AM
Today, the EMC showed the LUN as having trespassed over to the other service processor.
Checked the VG on the server... it shows only a single device (which WAS the alt path) and the primary device is gone.
Tried adding it back in using vgextend, but got the following error:
#vgextend /dev/vgemcdbf04 /dev/dsk/c17t0d1 /dev/dsk/c16t0d1
vgextend: Too many physical extents for volume group.
Cannot add physical volume to volume group.
LVM_MAXPXS: 65535
It is a huge VG (300GB+).... bdf -
/dev/vgemcdbf04/dbf04
338944000 158610696 178924488 47% /dbfiles04
How can I add the alt path back in?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2002 08:24 AM
06-14-2002 08:24 AM
SolutionCheck the /etc/lvmtab has both paths present, and if yes then:
# vgchange -a y /dev/vg_name
This you can do online while system works, and while the VG is already active. Once executed, this will check the missing links/alternate paths and will re-create it. If you need confirmation, check:
# man vgchange
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2002 08:31 AM
06-14-2002 08:31 AM
Re: pvextend - Too many physical extents
The MAXPXS message also indicates that LVM is not recognizing the 2 disks that you are tryinfg to add as shadows to physical devices already in the VG.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2002 08:31 AM
06-14-2002 08:31 AM
Re: pvextend - Too many physical extents
This document tells about the same error, but it's on version 10.20 (TKB #1100364494):
http://support1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000053080181
If you suspect the same issue in your case, then apply the same solution for 11.00, patch number - PHCO_24645 (s700_800 11.00 LVM commands cumulative patch).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2002 08:39 AM
06-14-2002 08:39 AM
Re: pvextend - Too many physical extents
Even doing the extend with just the alt device will also produce the same error.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2002 08:52 AM
06-14-2002 08:52 AM
Re: pvextend - Too many physical extents
Thanks.