- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- problem with lvextend
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
11-23-2005 07:23 PM
11-23-2005 07:23 PM
problem with lvextend
We are dealing with a strange problem.
We want to extend de size of a logical volume (lvol1)
Problem is that we dont have any space left in the volume group.
there for we reduce the size of lvol4
fsadm -F vxfs -b $((1024 * 13000)) /u03/oracle/export/pivp
lvreduce -L 13000 /dev/vgpivp/lvol4
vgdisplay -v vgpivp now results in
VG Name /dev/vgpivp
VG Write Access read/write
VG Status available, exclusive
Max LV 255
Cur LV 4
Open LV 4
Max PV 16
Cur PV 4
Act PV 4
Max PE per PV 6000
VGDA 8
PE Size (Mbytes) 8
Total PE 3068
Alloc PE 2785
Free PE 283
Total PVG 0
Total Spare PVs 0
Total Spare PVs in use 0
there are 283 pe (2264 mb) free so now we do a
lvextend -L 1200 /dev/vgpivp/lvol1
then is says:
lvextend: Not enough free physical extents available.
Logical volume "/dev/vgpivp/lvol1" could not be extended.
Can anyone help us with this problem?
Jeroen Zonneveld
The Netherlands
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 07:41 PM
11-23-2005 07:41 PM
Re: problem with lvextend
This happened because you didnt re-organize the directory / file system on /dev/vgpivp. Try to run below command first before you run the lvextend :
# fsadm -F vxfs -d -D -e -E /u03/oracle/export/pivp
Check the url below (docID : LVMKBRC00005082) about 'Changing the size of a data logical volume with OnlineJFS' :
http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000080047697
Hope this information can help you.
Cheers,
AW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 07:51 PM
11-23-2005 07:51 PM
Re: problem with lvextend
good Luck,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 07:57 PM
11-23-2005 07:57 PM
Re: problem with lvextend
Could be a problem with strict allocation or contiguous access on /dev/vgpivp/lvol1
Maybe this:
lvchange -C n /dev/vgpivp/lvol1
Then try to extend.
Could be you need to specify the physical disk in the lvextend command.
lvextend -L 1200 /dev/vgpivp/lvol1 /dev/dsk/c1t1d0
change c1t1d0 to something real.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2005 06:34 AM
11-24-2005 06:34 AM
Re: problem with lvextend
I think it's problem with allocation policy only. what is No of stripes in the LVs. Use the lvdisplay -v lvname to find on which disks the lvs have been stripped. If the stripes are not been specified, better give lvextend lv name with one of the disk name.
Regards,
Sunil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2005 07:37 PM
11-29-2005 07:37 PM
Re: problem with lvextend
We started a support call at HP and
they said we missed a entry in the
/etc/lvmpvg file.
We added the entry and the lvexend worked!!!!