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
04-14-2008 01:48 AM
04-14-2008 01:48 AM
LVM
Erorr Message is as follows -
lvreduce: "LogicalExtentNumber" is not smaller than current setting;
therefore no logical extents are removed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2008 02:04 AM
04-14-2008 02:04 AM
Re: LVM
And how big is the LV currently?
Looks like you have told it to reduce to a number that is larger than it currently is.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2008 02:04 AM
04-14-2008 02:04 AM
Re: LVM
poste lvdisplay and your lvreduce command
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2008 02:36 AM
04-14-2008 02:36 AM
Re: LVM
then only peoples will get sound idea regardign u thread
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2008 10:40 PM
04-14-2008 10:40 PM
Re: LVM
What options of lvreduce you used. Please note sometimes (-l and -L) confuse some people. So, make sure you are using the correct options.
Always, make backup when you do lvreduce. There is a good chance you will lose the data if you do not plan it well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2008 01:08 AM
04-15-2008 01:08 AM
Re: LVM
We are not using onlineJFS
# lvdisplay /dev/vg00/lvol9
--- Logical volumes ---
LV Name /dev/vg00/lvol9
VG Name /dev/vg00
LV Permission read/write
LV Status available/syncd
Mirror copies 0
Consistency Recovery MWC
Schedule parallel
LV Size (Mbytes) 4000
Current LE 125
Allocated PE 125
Stripes 0
Stripe Size (Kbytes) 0
Bad block on
Allocation strict
IO Timeout (Seconds) default
#
# lvreduce -l 3200 /dev/vg00/lvol9
lvreduce: "LogicalExtentNumber" is not smaller than current setting;
therefore no logical extents are removed.
#
#
#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2008 01:11 AM
04-15-2008 01:11 AM
Re: LVM
lvreduce -L 3200 /dev/vg00/lvol9
-L MB
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2008 01:13 AM
04-15-2008 01:13 AM
Re: LVM
Current LE 125 <-- -l
with -l 3200 you would say 3200 Mbytes? for this you must use -L. with -l you choose the logicalextentnumber and this is 125.
this should work:
$lvreduce -L 3200 /dev/vg00/lvol9
for more infos check lvreduce manpage
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2008 01:26 AM
04-15-2008 01:26 AM
Re: LVM
but L u have to give then it will
work.
l means logical extends
L means size of the logical volume in MB
lvreduce -L 3200 /dev/vg00/lvol9
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2008 01:55 AM
04-15-2008 01:55 AM
Re: LVM
4000MB
LV Size (Mbytes) 4000
If you want to reduce it to 3200MB
then
you have to use
lvreduce -L 3200 /dev/vg00/lvol9
By using (-l small el) you are saying make the new size to 3200 logical extents. Note that your Current LE is 125 (lvdisplay). So you actually is saying increase from 125 to 3200 LEs instead of reducing.
Your current size 4000MB
Current LE 125
(4000/125 = 32)
how do u see the actual size?
vgdisplay vg00|grep "PE Size"
If you multiply 3200 with your logical extent size which is 32.
3200 * 32 = 102400 MB - which is not correct and possible - that is why you get the error message.