- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Extending Logical Volume
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
05-09-2002 06:50 AM
05-09-2002 06:50 AM
Extending Logical Volume
lvextend: Not enough free physical extents available.
Logicalvolume "/dev/vg.." could not be extended.
Failure possibly caused by PVG-Strict or Distributed allocation policies.
I get the folowing with vgdisplay
Max LV 255
Cur LV 14
Open LV 14
Max PV 16
Cur PV 5
Act PV 5
Max PE per PV 3328
VGDA 10
PE Size (Mbytes) 4
Total PE 16635
Alloc PE 13308
Free PE 3327
The logical volume I am trying to extend is only 2GB.
Any help? Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2002 06:58 AM
05-09-2002 06:58 AM
Re: Extending Logical Volume
What is the allocation policy ? Are you using -l or -L with lvextend ? What is the new value of the LV you giving ?
If you have 2Gb file system now and wants to extend it to 4GB, then:
# lvextend -L 4000 /dev/vg02/lvol1
what is the output of lvdisplay ?
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2002 06:58 AM
05-09-2002 06:58 AM
Re: Extending Logical Volume
More information required...
Please post:
vgdisplay -v
lvdisplay -v /dev/
and the exact lvextenf command that is failing.
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2002 07:00 AM
05-09-2002 07:00 AM
Re: Extending Logical Volume
# vgdisplay -v
# lvdisplay -v
so that explaination can be made more specific.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2002 07:01 AM
05-09-2002 07:01 AM
Re: Extending Logical Volume
use lvextend -L 2000 /dev/vg02/lvol1 , ther should not be any problems .
You can use SAM too if you want too.
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2002 07:06 AM
05-09-2002 07:06 AM
Re: Extending Logical Volume
I found my problem to be
Allocation
PVG-strict/distributed
which is from lvdisplay. I just need to figure out the lvchange commands to allow me to extend it.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2002 07:22 AM
05-09-2002 07:22 AM
Re: Extending Logical Volume
We need:
vgdisplay -v
lvdisplay -v
and by how much you are trying to extend it to confirm.
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2002 07:29 AM
05-09-2002 07:29 AM
Re: Extending Logical Volume
That will change it to "strict"
Try lvextend again afterwards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2002 07:34 AM
05-09-2002 07:34 AM
Re: Extending Logical Volume
lvchange -s n /dev/vgxxx/lvxxxx
If you do this your mirrors will not be forced to seperate phyiscal drives. That means you would probably have to rebuild the volume group and restore from tape if you loose a drive.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2002 08:01 AM
05-09-2002 08:01 AM
Re: Extending Logical Volume
lvchange -s y command to change the logical volume to strict and that should do it for me. I am using the VA7100 where I define luns and add luns to my volume group. I don't have any control over mirroring as the VA mirrors data or uses raid 5 depending on usage.
Thanks