Skip to main content

ubuntu - RAID 1+0 vs RAID 0+1




I went with some advice I was given from someone I know to go with a RAID setup for this server I ordered. The specs are below. I plan on using this server to host multiple sites in a PHP/MySQL environment and an SVN repository in Ubuntu Server. I'd like to have a setup where the primary drive is mirrored so that in the event of failure on a drive the server could just use the other pair of drives.



I'm reading on wikipedia about raid setups and I see RAID 0-5, but don't see a 10 listed on wikipedia. Perhaps I'm just not sure what I'm looking for, to be honest I've never used anything RAID.



On-Board Intel ESB2 RAID controller - 0,1,5,10 SATA RAID



Manufacturer: SuperMicro
Model / Part Number: 6015P-TR
Processor(s): Dual (2x) Intel Xeon 2GHz 5130 Dual Core 64-Bit Processors - 4MB Cache, 1333MHz FSB
Memory: 4GB RAM (4x 1GB PC2-5300) - 8 slots on motherboard

Hard Drive(s): Four (4) Hitachi 500GB 7200RPM SATA Hard Drives
Optical Drive: DVD-ROM
Floppy Drive: Included
Network Interface: Dual 10/100/1000 Gigabit Ethernet
RAID: On-Board Intel ESB2 RAID controller - 0,1,5,10 SATA RAID
Power Supplies: 2 (Redundant) - 700W each
Form Factor: Rack Mount - 1U


I'm not sure the best route to take with RAID for what I'm looking for as I'm totally new to it.







update



At this point, when I select RAID10 from the raid controller and go into Ubuntu server installation it shows 2 separate 500GB drives instead of a single 1 TB drive. Ubuntu is not giving me any RAID options duration installation.



I'm thinking I'm just going to install everything on one of those 500 GB drives for the server, then have all my site's data on the other drive.



I need to get moving on this server, I can't spend weeks working out RAID issues.



Answer



The idea of most RAID levels is to provide better reliability or speed for arrays of disks using a combination of the below methods:




  • striping - splits data speed-efficiently across two or more disks +speed

  • mirroring - copies the data onto two or more disks -capacity +reliability

  • parity - a separate disk(s) to verify the data on the other disks is correct +reliability



You have to decide what's most important for you, capacity, reliability, or speed.




Raid 1+0



The official name for RAID 10 is RAID 1+0. Raid 1+0 is a good compromise between speed and reliability as it combines striping and mirroring. Using Raid 1+0, you will have 1TB of space.



How a RAID 1+0 hardware controller works:



+-----------------------------------------------------+
| | :
| 500GB 500GB 500GB 500GB | :

| | | | | | :
| +-500GB-MIRROR-+ +-500GB-MIRROR-+ | : RAID Controller
| | | | :
| +---------1TB-STRIPE--------+ | :
| | | :
+-------------------------|---------------------------+
|
+-------------------------|---------------------------+
| | | :
| OPERATING SYSTEM | :

| | | : Software
| APPLICATION | :
| | :
+-----------------------------------------------------+


It is important to understand that, with a RAID controller, the operating system knows nothing about RAID or multiple disks, it will merely see a plain, single hard drive. All hardware-controlled RAID configuration must be done through the BIOS.



Redundancy: RAID 1+0 vs RAID 0+1




RAID 0+1 is effectively the same thing as RAID 1+0, just the other way round:



                 RAID 1+0              ¡             RAID 0+1              
|
[#] [#] [#] [#] | [#] [#] [#] [#]
| | | | | | | | |
+-MIRROR-+ +-MIRROR-+ | +-STRIPE-+ +-STRIPE-+
| | | | |
+----STRIPE----+ | +----MIRROR----+
| ! |



RAID 1+0 is far more commonly used, however, because it has better redundancy (smaller chance of array failure because of multiple drive failures). The probability of array failure for each RAID level is:




  • RAID 1+0: 1 drive fails: 0 (0%), 2 drives fail: ⅓ (33%), 3 drives fail: 1 (100%)

  • RAID 0+1: 1 drive fails: 0 (0%), 2 drives fail: ⅔ (66%), 3 drives fail: 1 (100%)


Comments

Popular posts from this blog

iLO 3 Firmware Update (HP Proliant DL380 G7)

The iLO web interface allows me to upload a .bin file ( Obtain the firmware image (.bin) file from the Online ROM Flash Component for HP Integrated Lights-Out. ) The iLO web interface redirects me to a page in the HP support website ( http://www.hp.com/go/iLO ) where I am supposed to find this .bin firmware, but no luck for me. The support website is a mess and very slow, badly categorized and generally unusable. Where can I find this .bin file? The only related link I am able to find asks me about my server operating system (what does this have to do with the iLO?!) and lets me download an .iso with no .bin file And also a related question: what is the latest iLO 3 version? (for Proliant DL380 G7, not sure if the iLO is tied to the server model)

linux - Awstats - outputting stats for merged Access_logs only producing stats for one server's log

I've been attempting this for two weeks and I've accessed countless number of sites on this issue and it seems there is something I'm not getting here and I'm at a lost. I manged to figure out how to merge logs from two servers together. (Taking care to only merge the matching domains together) The logs from the first server span from 15 Dec 2012 to 8 April 2014 The logs from the second server span from 2 Mar 2014 to 9 April 2014 I was able to successfully merge them using the logresolvemerge.pl script simply enermerating each log and > out_putting_it_to_file Looking at the two logs from each server the format seems exactly the same. The problem I'm having is producing the stats page for the logs. The command I've boiled it down to is /usr/share/awstats/tools/awstats_buildstaticpages.pl -configdir=/home/User/Documents/conf/ -config=example.com awstatsprog=/usr/share/awstats/wwwroot/cgi-bin/awstats.pl dir=/home/User/Documents/parced -month=all -year=all...

linux - How can I get my mediawiki to stop thinking I have cookies disabled?

I've searched half a day for how to resolve this issue, and can't figure it out. Shortly after I made my wiki a simple private wiki according to the instructions at Mediawiki's website, it started giving me this weird login error message: Wiki uses cookies to log in users. You have cookies disabled. Please enable them and try again. If I remove those private wiki settings, the error disappears, even if I try logging in. But I need it to be a private wiki for only my team. So what do I do? Here's what I've done so far. Just to be safe, after ever change, I try rebooting Apache using: sudo /etc/init.d/apache2 restart In my php.ini file, I have the following set: session.save_path = "/var/lib/php5" session.cookie_secure = secure session.cookie_path = /tmp session.cookie_domain = my server's internal URL (should I even set this? this field was blank before, but not commented out) session.referer_check = Off I ran the following to ensure that the fold...