- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- lvextend generating error not enough free space
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
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
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-2007 04:43 AM
тАО01-08-2007 04:43 AM
lvextend generating error not enough free space
vgdisplay -v /dev/vgdata
As noted in the vgdisplay, there are 26,142 free physical extents for this volume group; however, when I attempt to extend the /dev/vgdata/sbdata volume from 6000 LE to 7800 LE I get the error 'lvextend: Not enough free physical extents available'. I've also attempted to extend with 6600 LE and still get the same error. It's as though the system isn't recognizing the available free space.
This volume group is allocated over a mirrored 6 disk set and I've run diagnostics on all of the disks with success. Back in July we moved the SCSI cards for these disk trays from the Turbo slots to non-turbo slots, so I'm thinking maybe we have a configuration file that is still looking for the old disk addresses???
Any suggestions on how to solve this dilemma is greatly appreciated.
Thanks,
Staci
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-08-2007 04:54 AM
тАО01-08-2007 04:54 AM
Re: lvextend generating error not enough free space
Please see the following thread:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1067945
Your "allocation" is strict/distributed and I believe doing an lvchange and then lvextend (as per the last entry in the thread) might fix your problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-08-2007 05:08 AM
тАО01-08-2007 05:08 AM
Re: lvextend generating error not enough free space
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-08-2007 05:09 AM
тАО01-08-2007 05:09 AM
Re: lvextend generating error not enough free space
lvextend -m 1 /dev/vgdata/sbdata /dev/dsk/c#t#d# for the mirror disk.
Cheers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-08-2007 05:32 AM
тАО01-08-2007 05:32 AM
Re: lvextend generating error not enough free space
Your allocation of PVG-strict/distributed means that consecutive logical extents must reside on different physical volumes, *and* that no mirror copies can reside on the same physical volume.
Thus, you do not have free physical extents that satisfy this constraint.
An 'lvdisplay -v' will reveal the actual extent mappings. Your '/etc/lvmpvg' configuration file is designed to assist in mirror copy creation. See the manpages for 'lvmpvg(4)'. When properly setup, use this file with 'lvextend' instead of specifying the pv_path.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-08-2007 06:18 AM
тАО01-08-2007 06:18 AM
Re: lvextend generating error not enough free space
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-08-2007 09:02 AM
тАО01-08-2007 09:02 AM
Re: lvextend generating error not enough free space
I'm afraid to ask, but...could my problem be resolved by simply adding the PVG information to the /etc/lvmpvg file as follows:
VG /dev/vgdata
PVG PV1
/dev/dsk/c6t8d0
/dev/dsk/c6t9d0
/dev/dsk/c6t10d0
/dev/dsk/c6t11d0
/dev/dsk/c6t12d0
/dev/dsk/c6t14d0
PVG PV2
/dev/dsk/c7t8d0
/dev/dsk/c7t9d0
/dev/dsk/c7t10d0
/dev/dsk/c7t11d0
/dev/dsk/c7t12d0
/dev/dsk/c7t14d0
...or is this going to screw up my mirroring?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-08-2007 10:15 AM
тАО01-08-2007 10:15 AM
Re: lvextend generating error not enough free space
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-08-2007 10:16 AM
тАО01-08-2007 10:16 AM
Re: lvextend generating error not enough free space
> I'm afraid to ask, but...could my problem be resolved by simply adding the PVG information to the /etc/lvmpvg file as follows:
Assuming the your 'lvmpvg' file matches the physical extent distribution of the mirrored extents, yes, specifying the pvg_name instead of the pv_path(es) in your 'lvextend -m ' mirror operation may be all that is needed to accomodate your needs.
Once again, a 'lvdisplay -v' for the logical volume in question will show you the distribution of physical extents among their various physical volumes.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-09-2007 04:59 AM
тАО01-09-2007 04:59 AM
Re: lvextend generating error not enough free space
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-09-2007 05:03 AM
тАО01-09-2007 05:03 AM