- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Mirror with intrnal controller
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-31-2007 02:54 AM
01-31-2007 02:54 AM
On a proliant DL585 AMD/64 I have to create a RAID 1 (mirror) for my boot disk. This disk lays on a internal Raid controller.
This box is in poduction and run under RH 4.
How to proceed ?
Roland
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2007 03:16 AM
01-31-2007 03:16 AM
Re: Mirror with intrnal controller
If the server has hardware raid, set up raid 1 in the bios. This will present one disk to the system.
This will require you to boot the system but otherwise will be transparent to the system. I/O and performance will be horrible while the system builds the mirror.
Depending on the bios the mirror build may be before boot time which will lengthen the downtime.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2007 03:10 AM
02-01-2007 03:10 AM
Re: Mirror with intrnal controller
Thanks for your quick answer.
This box has a build in raid controller.
I am afraid to construct the raid in the wrong way, mirror the new one on the actual at the moment I will include de new disk.
It a payroll unit !!!
How can identify the new disk in the Bios ?
Could you point me on a documentation ?
Roland
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2007 06:07 AM
02-01-2007 06:07 AM
Re: Mirror with intrnal controller
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2007 11:34 PM
02-05-2007 11:34 PM
Re: Mirror with intrnal controller
Until today, I didn't get the opportunity to boot the server to find out the type of the raid controller.
I am waiting the green light to stop it. I would like to be ready at this moment to bild up the mirror.
Regards,
Roland
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2007 12:59 AM
02-06-2007 12:59 AM
Re: Mirror with intrnal controller
Those packages and documentation for them are available from:
http://www.hp.com/go/support
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2007 03:16 AM
02-06-2007 03:16 AM
Re: Mirror with intrnal controller
I already download the cpqcuaxe package and also the hpsmh package. At the istallation I have an error on dependency. Need libstdc++-libc6.2-2.so.3.
I don't know where I can find this library.
My distribution is RH Entreprise 4 for 64bits AMD.
Thanks in advance,
Roland
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2007 08:01 PM
02-07-2007 08:01 PM
SolutionIt is available on the RedHat ES4 installation CDs, just not installed by default.
If you have your system registered in the RedHat Network, just type "up2date --install compat-libstdc++-296" and it should be able to install the library with no further ado.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2007 08:54 PM
02-12-2007 08:54 PM
Re: Mirror with intrnal controller
Your advice solves my installation problem.
Up to now I don't see any Raid controller (internal & external) in my browser. For this I use a Nautilus browser (not supported) wich was install by default. I can understand that for some important detail this one is not supported but is it normal that no controller at all is displayed in this browser ?
Futher helps will be appréciate !
Roland
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2007 12:27 PM
02-14-2007 12:27 PM
Re: Mirror with intrnal controller
hpaculi ctrl slot=0 array A ld 1 show
will show your onboard controller, first array and first logical drive. The output should be something like:
# hpacucli ctrl slot=0 array A ld 1 show
Smart Array 6i in Slot 0
array A
Logical Drive: 1
Size: 33.9 GB
Fault Tolerance: 1+0
Heads: 255
Sectors Per Track: 32
Cylinders: 8716
Stripe Size: 128 KB
Status: OK
Array Accelerator: Enabled
Unique Identifier: 600508B1001FFFFFA000045B30210000
Disk Name: /dev/cciss/c0d0
Mount Points: /boot 99 MB, /usr 10.0 GB, swap 2.0 GB, /var 1023 MB, / 513 MB, /home 20.3 GB
As you can see this was done on a server with a pair of 36GB drives running in RAID1+0. If you have a single drive right now, the Fault Tolerance should show "0". To convert this to a RAID 1+0, add another drive, it should be the same size and speed as the existing drive. Then you can run
hpacucli ctrl slot=0 array A add drives=allunassigned
And then run
hpacucli ctrl slot=0 ld 1 modify raid=1
This should convert it to a RAID1+0.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2007 07:49 PM
02-18-2007 07:49 PM
Re: Mirror with intrnal controller
My problem is resolved, thanks to all.
I finally install System Management Homepage witch is included in the HP Proliant Essentiels Foundation Pack after installation of many rpm needed and available on my distribution RH CD's.
I discover also that cpqacuxe has to be launch independly before the brower can take the array configuration utility in account (see in the menu).
Thanks again for your help.
Roland