- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- RAID 1+0 setup
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
01-26-2007 09:15 PM
01-26-2007 09:15 PM
I have 3 Volume Groups
vg00 - 2 x 72G disks, setup as mirror disks & I can successfully check from SAM that the setup is correct
vg01 - 6+6 72G disks, setup as RAID 0+1, with 6 file systems with 72G (2x72G physical) as a result. But from SAM, it says Mirror copies = 0. Also "lvdisplay" shows each file system is with Stripe = 0.
vg02 - 1+1 72G disks, setup as RAID 0, with 1 file system & both SAM & "bdf" both show the setup is correct
My doubt is: from SAM, /etc/fstab & "lvdisplay", I compared the file systems for vg01 & vg02 where they all show me the same setings. How can I know that the vg01 is really setup as RAID 0+1 that it should?
Rita
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2007 03:23 AM
01-27-2007 03:23 AM
Re: RAID 1+0 setup
So ask the engineer to describe what has been set up?
>> My doubt is: from SAM, /etc/fstab & "lvdisplay", I compared the file systems for vg01 & vg02 where they all show me the same setings. How can I know that the vg01 is really setup as RAID 0+1 that it should?
Are you sure it is software stripe+mirror or perhaps in hardware for example by using a raid controller like a SmartArray.
I think you need to go a step up (down) from
lvdisplay to 'vgdisplay' and look for PVGs and such.
A whie ago i made a littel perl script to help present vgdisplay information. You'll find it attached. Give that a whirl?
If further help is needed then please provide more details, notably on the disk controllers involved. You may want to attach a .TXT file with output from relevant commands (vgdisplay, ioscan -funC disk, fcmsutil,... )
hth,
Hein van den heuvel
HvdH Performance Consulting
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2007 03:41 AM
01-27-2007 03:41 AM
Re: RAID 1+0 setup
Running your perl script provides an output as:
Type Name Stripes Allocated Total Free
---- ------------------------------ -- -------- -------- --------
VG /vg00 138176 138176 0
LV /vg00/lvol1 2 800 0 0
LV /vg00/lvol2 2 32000 0 0
LV /vg00/lvol3 2 1024 0 0
LV /vg00/lvol4 2 49312 0 0
LV /vg00/lvol5 2 20000 0 0
LV /vg00/lvol6 2 12000 0 0
LV /vg00/lvol7 2 1024 0 0
LV /vg00/lvol8 2 12000 0 0
LV /vg00/lvol9 2 10016 0 0
PV /dsk/c2t1d0s2 0 69088 0
PV /dsk/c2t0d0s2 0 69088 0
VG /vg01 416704 416704 0
LV /vg01/mfgpro2 1 70000 0 0
LV /vg01/mfgdata1 1 70000 0 0
LV /vg01/mfgdata2 1 70000 0 0
LV /vg01/mfgdata3 1 70000 0 0
LV /vg01/develop 1 70000 0 0
LV /vg01/develop2 1 66704 0 0
PV /dsk/c10t0d0 0 416704 0
VG /vg02 138896 138896 0
LV /vg02/develop3 1 138896 0 0
PV /dsk/c10t0d1 0 138896 0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2007 03:51 AM
01-27-2007 03:51 AM
Solutionyour vg01 is sitting on this device:
disk 3 0/5/1/0/4/0.0.0 sdisk CLAIMED DEVICE HP LOGICA
L VOLUME
/dev/dsk/c10t0d0 /dev/rdsk/c10t0d0
"HP LOGICAL VOLUME" means this is a hardware RAID (smartarray), so the LVM mirroring is not used, but the array controller will mirror the data across the disks.
Have a look at "man sautil" to get more information.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2007 04:01 AM
01-27-2007 04:01 AM
Re: RAID 1+0 setup
The other volumess are behing an array controller where hardware is doing the mirroring (and striping) but that is entirely transparant to Hpux.
Btw ... the 'nice round number' of 70000 on the LV size is always a dead give-away for a logical device behind a controller. It is hand picked number, not a device imposed odd number. The last LV clearly was assigned 'the slop'.
Trust but verify! You did, and all is well.
hth,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2007 06:14 PM
01-27-2007 06:14 PM
Re: RAID 1+0 setup
Thanks for all the answers
Rita