- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Hi All I am unable to extend the logical volum...
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-23-2006 09:59 PM
02-23-2006 09:59 PM
I am unable to allocate space in lv.Is allocation=Stricct option causing the problem.If that is the problem how can i proceed to extend LV>
--- Logical volumes ---
LV Name /dev/vg01_apps/lvbilink
VG Name /dev/vg01_apps
LV Permission read/write
LV Status available/syncd
Mirror copies 0
Consistency Recovery MWC
Schedule parallel
LV Size (Mbytes) 81500
Current LE 20375
Allocated PE 20375
Stripes 0
Stripe Size (Kbytes) 0
Bad block NONE
Allocation strict
IO Timeout (Seconds) default
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2006 10:19 PM
02-23-2006 10:19 PM
Re: Hi All I am unable to extend the logical volume?
if your PE size is 4Mb then you have allocated and used all your space (20375 * 4 = 81500Mb).
If you want to extend the LV do you have space available in the VG to allocate?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2006 10:25 PM
02-23-2006 10:25 PM
Re: Hi All I am unable to extend the logical volume?
Please check it and give the syntax to extend the LV?
--- Volume groups ---
VG Name /dev/vg01_apps
VG Write Access read/write
VG Status available
Max LV 255
Cur LV 4
Open LV 4
Max PV 16
Cur PV 6
Act PV 6
Max PE per PV 8631
VGDA 12
PE Size (Mbytes) 4
Total PE 32361
Alloc PE 32314
Free PE 47
Total PVG 0
Total Spare PVs 0
Total Spare PVs in use 0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2006 10:33 PM
02-23-2006 10:33 PM
Re: Hi All I am unable to extend the logical volume?
As Peter said you don't have any free disk space.
Free PE is 47...
PE size 4meg
total free space on disk = 4 * 47 = 188 meg
regards
/T
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2006 10:54 PM
02-23-2006 10:54 PM
Re: Hi All I am unable to extend the logical volume?
How much are you trying to increase.
you can't increase the space more than 188MB, unless you add a new disk to ur VG.
Please provide us the command syntax you tried to use in this thread so that we can confirm you why you received the error. Also paste the error message exactly over here.
Regards,
Senthil.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2006 01:46 AM
02-24-2006 01:46 AM
SolutionAs others have stated - you need to add another disk to the volume group - or only extend by 188 MB...
Example, you could increase /dev/vg01_apps/lvbilink like so:
lvextend -L 81688 /dev/vg01_apps/lvbilink
fsadm -b 81688M /yourmountpointforthelvol
Course, that is if you have online jfs...
Otherwise, you have to un mount, and use extendfs....
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2006 04:28 AM
02-24-2006 04:28 AM
Re: Hi All I am unable to extend the logical volume?
rgds...Ashish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2006 12:49 AM
02-27-2006 12:49 AM
Re: Hi All I am unable to extend the logical volume?
Thanks for the great support.