- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- creating new VG with one LVOL
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
12-18-2002 08:56 AM
12-18-2002 08:56 AM
I want to create one new volume group with
one logical volume. The lv is going to be used for a large Oracle DB. would the following be optimal for the volume?
mkdir /dev/vg#1
mknod /dev/vg#1/group c 64 0x010000
pvcreate /dev/rdsk/c#t#d#
pvcreate /dev/rdsk/c#t#d#
pvcreate /dev/rdsk/c#t#d#
vgcreate /dev/vg#1 /dev/rdsk/c#t#d# /dev/rdsk/c#t#d# /dev/rdsk/c#t#d#
lvcreate -L 24000 -i 3 -I 64 -n datavol /dev/vg#1
newfs -F vxfs -o largefiles /dev/vg#1/datavol
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2002 08:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2002 08:59 AM
12-18-2002 08:59 AM
Re: creating new VG with one LVOL
Not knowing what size disks you're using, I would recommend bumping up the PE size in your vgcreate command so that you can use all the space.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2002 09:04 AM
12-18-2002 09:04 AM
Re: creating new VG with one LVOL
they are 9GB IBM Drives
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2002 09:05 AM
12-18-2002 09:05 AM
Re: creating new VG with one LVOL
Syntatically this is fine. You might want to consider using distributed extents instead of true stipes. The former allows you the capability of mirroring and striping while true striping does not.
Make sure, too, that your volume group parameters ('max_pe', 'max_pv', etc.) are adequate to support any growth or addition of disks later.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2002 09:29 AM
12-18-2002 09:29 AM
Re: creating new VG with one LVOL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2002 05:14 AM
12-19-2002 05:14 AM
Re: creating new VG with one LVOL
I would make two changes:
vgcreate -s 64 ...
-> extendsize = 64MB
newfs -F vxfs -b 8192 ..
-> Fragmentsize, this should have the same size as the Oracle-Blocksize
If you plan, to add larger disks in the future, check the max_pe_extends. You can change the amount with the option
vgcreate -e ...
Gruesse
Claus