- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Hardware Raid on Proliant Server DL380G4 (Producti...
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-16-2004 01:01 PM
12-16-2004 01:01 PM
Currently there was 2x72GB Harddisks install in DL380 G4 with hardware raid. The Linux OS was Red Hat Enterprise Linux ES release 2.1. Now I want install another 2x36GB Hardisk in DL380 G4 do Raid 1. I have few questions to ask.
1. Does Red Hat Enterprise Linux 2.1 have LVM to do Software Raid? need confirm
2. If I use Compaq Proliant SmartStart Kit do Hardware Raid on 2x36GB Harddisk, is any impact on the os level?
3. Once I did the hardware raid on 2x36GB, I need create the file system for the 36GB Harddisk. The following command is correct or not.
#fdisk -l
suppose will see 2 logical volume something like /dev/cciss/c0d0p somthing and it will see 2 logial volume
#mkfs.ext2 /dev/cciss/c0p1 <--- second logical volume
#tune2fs -j /dev/cciss/c0p1
#mkdir /data1
#edit /etc/fstab
LABLE=/data1 /data1 ext3 defaults 1 2
best regards
Leon
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2004 07:29 PM
12-16-2004 07:29 PM
SolutionBUT do not use it :) you have hardware RAID
Use it instead soft RAID. Soft RAID is slow nad hard for recovery.
Use your ACU and create new LUN with RAID 1
2. No there aren't any problem with OS. You can use online tools from smart start ACU for linux to create new RADI 1 lun.
Note: Some time you my be need to restart
server before kernel see new RAID 1.
3. Your first LUN0
/dev/cciss/c0d0 Controller 0, disk 0, whole device
your first partition
/dev/cciss/c0d0p1 Controller 0, disk 0, partition 1
Your secound LUN1
/dev/cciss/c0d1 Controller 0, disk 1, whole device
your first partition
/dev/cciss/c0d1p1 Controller 0, disk 1, partition 1
#fdisk /dev/cciss/c0d1
and create your partiton
mkfs.ext2 -j /dev/cciss/c0d1p1
mkdir /data1
edit /etc/fstab
/dev/cciss/c0d1p1 /data1 for your first partition
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2004 01:18 PM
12-19-2004 01:18 PM
Re: Hardware Raid on Proliant Server DL380G4 (Production Server)
Thanks for the replay. Do you have any document for linux mirror ???
regads
Leon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2004 06:38 PM
12-19-2004 06:38 PM
Re: Hardware Raid on Proliant Server DL380G4 (Production Server)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2004 08:33 PM
12-19-2004 08:33 PM
Re: Hardware Raid on Proliant Server DL380G4 (Production Server)
do not use software raid! as i understand you use a mirror on your 2x72GB Harddisk. you should also use a mirror on the 2x36GB Harddisks.
After that you can add a new mountpoint. but you could write the following line to your /etc/fstab:
/dev/cciss/c0p1 /data1 ext3 defaults 1 2
if you using lvm on your box you could also add the second logical volume to your partition and you don't have to mount it in a new directory.
best regards,
johannes