- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- re: LVM on RP3440
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-26-2005 04:27 AM
05-26-2005 04:27 AM
re: LVM on RP3440
root@bduat:/dev/dsk> vgcreate -f /dev/vg01 /dev/dsk/c6t0d2
Increased the number of physical extents per physical volume to 35002.
vgcreate: Volume group "/dev/vg01" could not be created:
VGRA for the disk is too big for the specified parameters. Increase the
extent size or decrease max_PVs/max_LVs and try again.
I have run a pvcreate to create the disk, and created the group file. My question is, why am I getting this error and what does it mean.
root@bduat:/dev/dsk> ioscan -fnC disk
disk 6 0/4/1/0.100.0.0.0.0.2 sdisk CLAIMED DEVICE COMPAQ MS
A1000 VOLUME
/dev/dsk/c6t0d2 /dev/rdsk/c6t0d2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2005 04:42 AM
05-26-2005 04:42 AM
Re: re: LVM on RP3440
vgcreate -s 8 -f /dev/vg01 /dev/dsk/c6t0d2.
As the man page for "vgcreate" says - be careful with the "-f" flag. You probably don't need it, and can leave it off.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2005 04:43 AM
05-26-2005 04:43 AM
Re: re: LVM on RP3440
Hope this helps
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2005 04:44 AM
05-26-2005 04:44 AM
Re: re: LVM on RP3440
Regards,
Eric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2005 04:47 AM
05-26-2005 04:47 AM
Re: re: LVM on RP3440
Regards,
Eric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2005 04:53 AM
05-26-2005 04:53 AM
Re: re: LVM on RP3440
-n number of physical volumes.
If you set that to a realistic number under 255 you get more units to spread on your disks.
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
05-26-2005 04:27 PM
05-26-2005 04:27 PM
Re: re: LVM on RP3440
vgcreate -e number_of_extents -s pe_size
and the size of your disk is the multiple of
number_of_extents * pe_size(MB)
If the disk size is big enough go with a 16 or 32 MB of pe_size
thanks
Devesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2005 11:16 PM
05-30-2005 11:16 PM
Re: re: LVM on RP3440
the OS is HPUX 11i
and the size of the disks in question are 146Gb.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2005 07:46 AM
05-31-2005 07:46 AM
Re: re: LVM on RP3440
The error is coming because for large PV's/more than a few PV's in a VG, we need to alter PE SIze parameter to a higher value. The attached doc clarifies it.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2005 11:10 PM
05-31-2005 11:10 PM
Re: re: LVM on RP3440
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2005 02:13 PM
06-01-2005 02:13 PM
Re: re: LVM on RP3440
vgcreate -s 16 /dev/vg01 /dev/dsk/c6t0d2
will work for you.. it will create vg01 with 16MB PE size.
Regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2005 05:28 PM
06-01-2005 05:28 PM
Re: re: LVM on RP3440
The same problem has been faced by me...you can try this
# mkdir /dev/vg01
# mknod /dev/vg01/group c 64 0x010000
# pvcreate -f /dev/rdsk/c6t0d2
Physical volume "/dev/rdsk/c6t0d2" has been
successfully created.
# vgcreate -s 32 /dev/vg01 /dev/dsk/c3t2d0
the (-s) option will change the PE Size to 32 and now it will create the vg.
note: if you are adding another disk and extending the vg, no need to give -s option.
just give...
#vgextend /dev/vg01 /dev/dsk/c3t3d0.
hope this should solve your problem...eventhough try for installing the patch also...
regds,
Venkatesan.