- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- JBOD Raid 0,1
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-05-2001 11:24 AM
11-05-2001 11:24 AM
I am trying to make sure that I configure my 10 disks in a raid 0,1 fashion.
It was supposed to be pre-configured by HP, but I would like to confirm.
Any ideas would be greatly appreciated.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 11:27 AM
11-05-2001 11:27 AM
Re: JBOD Raid 0,1
software raid:
lvdisplay /dev/vg??/lvol??
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 11:31 AM
11-05-2001 11:31 AM
Re: JBOD Raid 0,1
For each LVOL, do an lvdisplay -v /dev/vg0x/lvolx. The stripping patterns should be obvious as well as the existence of the mirror for each logical extent.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 11:32 AM
11-05-2001 11:32 AM
Re: JBOD Raid 0,1
How can I stripe them? I see that they are mirrored.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 11:38 AM
11-05-2001 11:38 AM
SolutionHere is a pretty good recipe:
SYS ADM: How to pseudo-stripe all copies of a mirrored lvol
Date : 2001 May 10
Description : SYS ADM: How to pseudo-stripe all copies of a mirrored lvol
Document Id : A4922912
Search String :
You may provide feedback on this document
View the printer friendly version of this document
--------------------------------------------------------------------------------
PROBLEM
I have a large Oracle database with approximately 100 disks in a 3-way
mirror, currently not manually striped. Each disk is either 4 GB or 2 GB,
with multiple 1 GB DB files. The disks are grouped in trays of threes,
three 2 GB or three 4 GB.
Can you assist me in striping and mirroring a large number of disks?
CONFIGURATION
Operating System - HP-UX
Version - 10.20
Hardware System - HP9000
Series - T500
RESOLUTION
Experimentation on the following example showed that pseudo-stripe
of a mirrored lvol (logical volume) when multiple disks are specified
on the lvextend command line indeed does stripe both the original and
the mirror. The example is from an S800 on 10.10.
1. vgdisplay -v /dev/vg00 | grep dsk
PV Name /dev/dsk/c0t5d0
PV Name /dev/dsk/c0t6d0
PV Name /dev/dsk/c0t1d0
PV Name /dev/dsk/c0t2d0
2. lvcreate -l 1 /dev/vg00 ---> lvol20
3. lvextend -m 1 /dev/vg00/lvol20 ; lvdisplay -v /dev/vg00/lvol20 --->
...
--- Logical extents ---
LE PV1 PE1 Status 1 PV2 PE2 Status 2
0000 /dev/dsk/c0t5d0 0441 current /dev/dsk/c0t6d0 0492 current
4. lvextend -l 2 /dev/vg00/lvol20 /dev/dsk/c0t1d0 /dev/dsk/c0t2d0
5. lvdisplay -v /dev/vg00/lvol20 --->
--- Logical extents ---
LE PV1 PE1 Status 1 PV2 PE2 Status 2
0000 /dev/dsk/c0t5d0 0441 current /dev/dsk/c0t6d0 0492 current
0001 /dev/dsk/c0t1d0 0068 current /dev/dsk/c0t2d0 0500 current
So, if you want to pseudo-stripe and mirror, and want both mirrors to
be pseudo-striped, then use these steps:
1. lvcreate -l 1 ---> to disk_1
2. lvextend -m 1 ---> to disk_2
3. lvextend -l 2 disk_3 disk_4 ---> now pseudo-stripe to disks 1 & 3,
with mirror on 2 & 4
4. lvextend -l 3 disk_1 disk_2 ; lvextend -l 4 disk_3 disk_4
and so forth.
In your situation with a 2-way mirror, striping across three disks,
you need nine disks total, and the lvextend should have
"disk_n disk_n+1 disk_n+2"; otherwise, it is identical to the
above example.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 11:41 AM
11-05-2001 11:41 AM
Re: JBOD Raid 0,1
take a look at this URL:
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90742/B2355-90742_top.html&con=/hpux/onlinedocs/B2355-90742/00/00/48-con.html&toc=/hpux/onlinedocs/B2355-90742/00/00/48-toc.html&searchterms=lvm%20stripe&queryid=20011010-061305
hope this wilL help.
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 11:44 AM
11-05-2001 11:44 AM
Re: JBOD Raid 0,1
Thanks, that looks like the ticket. I will attempt to complete this tomorrow.
Thanks to all.
Nickd