- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Not enough free 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
02-20-2001 06:48 AM
02-20-2001 06:48 AM
"lvextend: Not enough free physical extents available.
Logical volume "/dev/vg00/lvol6" could not be extended.
Failure possibly caused by strict allocation policy"
I have 1024MB available on this disk and am only trying to extend the vol by 500MB
Any ideas why this is not working?
Thanks,
Colin.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2001 06:52 AM
02-20-2001 06:52 AM
Re: Not enough free physical extents
So let me give you a little tip...if your extending vg00 I would be willing to bet your entering the /dev/dsk/c_t_d_ at the end of your lvextend statement...don't...just enter it without this ..
lvextend -l _ _ _ /dev/vg00/lvol7
Regards,
/rcw
rcw
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2001 07:18 AM
02-20-2001 07:18 AM
Re: Not enough free physical extents
# lvextend -L 1500 /dev/vg00/lvol6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2001 07:28 AM
02-20-2001 07:28 AM
Re: Not enough free physical extents
lvextend -l 125
(4)*(125)=500
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2001 07:51 AM
02-20-2001 07:51 AM
Re: Not enough free physical extents
If you have mirrored this logical volume, it is also possible to obtain the failure in the 'lvextend' you are getting, if there is insufficient space on one of the physical disks to allocate extents and keep the primary and mirrored extents separate.
In this case, an 'lvdisplay' will show "stict" (the default) for the allocation policy. This insures that mirror copies and primary copies of the same logical volume cannot exist on the same physical volume.
If this is the case, look at the output of 'lvdisplay -v /dev/vg00/lvolX' and 'vgdisplay -v /dev/vg00' to find the number and distribution of free extents on each of the disks.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2001 08:03 AM
02-20-2001 08:03 AM
SolutionSay /usr is currently 352 MB. With 4MB extents, that would be 88 extents. If you want to increase by 500 MB, to make it 852 MB or 213 extents (213 extents * 4 MB = 852 MB), then your lvextend would be: 'lvextend -l 213 /dev/vg00/lvol7'
If you wanted to use the upper case L option, then you would do an 'lvextend -L 852 /dev/vg00/lvol7'
I also agree with James, in that there may not be enough extents available on one of the disks in your mirror. That is a definite possibility as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2001 10:10 AM
02-20-2001 10:10 AM
Re: Not enough free physical extents
How full is the filesystem at this point? If it is at 100% in a bdf output it will probably be helpfull to increase a little bit at a time. Or you could delete some files in the filesystem, but of course this is usally not recommended or a preferd solution.
(Just make sure you have a valid backup!!!)
Here is a Document (KBAN00000084) which you should be able to find in the ITRC under knowledge tree.
Short is that when you perform a lvextend the command needs some space on the logical volume to perform some operations.
Hope this is of help to you.
Best Regards
Johan Carlsson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2001 01:59 AM
02-21-2001 01:59 AM
Re: Not enough free physical extents
Best regards,
Colin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2001 03:41 AM
02-21-2001 03:41 AM
Re: Not enough free physical extents
lvchange -C n # no contigous allocation policy.