- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- specify the stripe LVM during cold installation
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-06-2003 11:18 PM
05-06-2003 11:18 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2003 12:03 AM
05-07-2003 12:03 AM
Re: specify the stripe LVM during cold installation
Do you mean you want to strippe the lv on vg00 ?
Fr??d??ric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2003 12:08 AM
05-07-2003 12:08 AM
Re: specify the stripe LVM during cold installation
There is no support for striping vg00.
Sorry, you'dd better not try it.
This I thought because of the direct load of /stand/vmunix outside of LVM.
Best Regs David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2003 12:30 AM
05-07-2003 12:30 AM
Re: specify the stripe LVM during cold installation
My thinking is I have to specify lovl1, lovl2,lvol3 in vg00 in the root disk, and these couldn't be stripe LVM. So could I join the 2th. harddisk to vg00, and specify the other LVM to be stripe LVM? Can part of LVM is stripe, and part of LVM is not stripe under the same VG?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2003 12:51 AM
05-07-2003 12:51 AM
Re: specify the stripe LVM during cold installation
You should not strippe the vg00.
The best thing to do is to use the second disk to mirror the vg00.
Create the vg00 on the first disk, then :
#pvcreate -B /dev/rdsk/cxtydz (your second disk)
#mkboot /dev/rdsk/cxtydz
#mkboot -a "hpux -lq" /dev/rdsk/cxtydz
#vgextend vg00 /dev/dsk/cxtydz
then for each lv of vg00 :
# lvextend -m 1 /dev/vg00/lvolx /dev/dsk/cxtydz
Regards,
Fr??d??ric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2003 12:59 AM
05-07-2003 12:59 AM
Re: specify the stripe LVM during cold installation
So is there any better way to do this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2003 01:18 AM
05-07-2003 01:18 AM
Re: specify the stripe LVM during cold installation
Regards,
Fr??d??ric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2003 01:20 AM
05-07-2003 01:20 AM
Re: specify the stripe LVM during cold installation
Striping is required only when,
a. You need better read and write performance
b. Data is not critical
Since you want to improve the performance of IUX server, I think mirror disk alone can do the trick. Because, IUX server is read intensive. Network clients boot from the IUX server and read the install image to install the OS and is not write intensive. Hence, You can plan for Mirroring the Disk. Mirrordisk UX comes built-in with HP-UX 11.11 Mission Critical OE.
Regards,
Karthik S S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2003 01:23 AM
05-07-2003 01:23 AM
Re: specify the stripe LVM during cold installation
Create vg00 and all lv on first disk.
# lvcreate lv_depot vg00
# lvextend -L
# newfs -F vxfs /dev/vg00/rlv_depot
Now the lv_depot is on the second disk.
Regards,
Fr??d??ric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2003 01:40 AM
05-07-2003 01:40 AM
Re: specify the stripe LVM during cold installation
My understanding is since the IUX server is read intensive, so stripping should be able to have better performance. Why have to be both read and write intensive?
if my understanding is wrong, please correct me?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2003 02:18 AM
05-07-2003 02:18 AM
Re: specify the stripe LVM during cold installation
Striping (RAID0) :
a. Better Read Performance ( Data is spread across multiple disks )
b. Better Write Performance ( Data can be written in multiple disks simultaneously )
c. Not fault-tolerant ( One disk fail and the whole volume fails )
Mirroring (RAID1) :
a. Best read performance ( Data can be read from the actual disk and from Mirrored disk as well )
b. Degraded write performance ( As it has to write the same data physically on to 2 disks (2 is minimum but you can have more) )
c. Fault tolerant ( One disk fails but you have the data on mirrored disk)
Now coming back to IUX Server. IUX Server is typically only read intensive. Hence the better option is to go for mirroring as it offers the best read performance and the meantime fault tolerance.
Hope this answers your question
Regards,
Karthik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2003 02:23 AM
05-07-2003 02:23 AM
Re: specify the stripe LVM during cold installation
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2003 02:32 AM
05-07-2003 02:32 AM
SolutionPete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2003 08:41 AM
05-07-2003 08:41 AM
Re: specify the stripe LVM during cold installation
Note that even though you have enough disk space, sometimes you can't stripe a logical volume because the HP-UX installation utilities that configure the logical volumes will process them in alphabetical order based on their mount directory names. If you wanted to stripe /tmp, for instance, it will get built AFTER /, /opt, and /etc, and put them all on the primary (boot) physical volume. When it's time to build /tmp, though, you may not have enough free disk space on your primary disk to put half of /tmp on it.
In any case, LVM striping CAN be done, and while it may not be as performant or safe as Mirror Disk, it is vastly cheaper. :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2003 07:27 PM
05-07-2003 07:27 PM
Re: specify the stripe LVM during cold installation
Thanks for your suggestions.
For my situation, mirror disk is impossible, because I couldn't put everything into one disk, while the other one is purly mirror. Because one disk don't have enough space to contain everything.
So maybe it's the time to upgrade the hardware to archive high performance.