- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- ProLiant Servers (ML,DL,SL)
- >
- Re: Detecting RAID status of Proliant servers
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
04-10-2006 02:33 AM
04-10-2006 02:33 AM
Detecting RAID status of Proliant servers
I have looked at using the SNMP mibs from the Insight agents but have not been able to glean much out of them. I already have an existing application that pulls ILO and some mib information through snmp.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2006 05:20 AM
04-10-2006 05:20 AM
Re: Detecting RAID status of Proliant servers
I suggest that you have RAID 1 for OS partition and you can use RAID 5 for data parititon.
Let say you have 7 300GB drives and you can install two raid card controllers. two 300GB drives to be RAID 1 and map as C: total size of 300GB drives. rest of 5 drives can be RAID 5 and map as D: total size of 1.2TB drives.
I hope this helps,
Sung
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2006 05:30 AM
04-10-2006 05:30 AM
Re: Detecting RAID status of Proliant servers
Thanks, Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2006 08:19 AM
04-10-2006 08:19 AM
Re: Detecting RAID status of Proliant servers
I'm not sure if this is what you are looking for but the ACU Command Line Interface (CLI) can give you this information on Windows based systems and many others. The syntax is a bit awkward but you will get used to it. You can run commands from outwith the cli program by providing the paramaters required, say in a batch file.
For example to display all the smart array controllers on a system you would use:-
hpacucli controller all show
This might display the follwing:-
Smart Array 5i in Slot 0 (sn: XXYYZZ)
To display the logical drives on this controller you would use:-
hpacucli controller slot=0 logicaldrive all show
This might display the following:-
Smart Array 5i in Slot 0
array A
logicaldrive 1 (16.9 GB, 1+0, OK)
array B
logicaldrive 2 (135 GB, 5, OK)
Here Array A (The first array created on the first controller) would be the system disk. You can see here that Array A is Raid 1+0. Array B which is a data disk in my case is raid 5.
I'm not a programmer but I don't think it would take too much effort to output the results of these commands to a text file from within the batch file using redirect.
Here is a link to the ACUCLI for Windows.
There are other versions available for Netware /Linux etc.
http://h18023.www1.hp.com/support/files/server/us/download/23026.html
Here is a link to the ACU User Guide which includes a section on the ACU CLI and it's use/syntax etc.
http://h20000.www2.hp.com/bc/docs/support/SupportManual/c00294139/c00294139.pdf
There may be much better solutions which others can suggest but this can give you what you want with a little effort.
I hope this helps.
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2006 07:40 PM
04-10-2006 07:40 PM
Re: Detecting RAID status of Proliant servers
CLI is a good Idea, i think!
Other suggestions:
A)
Is your "existing application" your reporting-tool and you have to use that?
I'm asking, because Systems Insight Manager is a excellent tool to collect Informations like that, and to create, export, etc. Reports. It is on the Management-CD delivered with your ProLiants for free.
There is also a download at: http://h18000.www1.hp.com/products/servers/management/hpsim/download.html
B)
You can have a look at the Systems Management Homepage of your ProLiant via
https://name_or_IP_of_your_server:2381
Hope that helps and sorry, if its nothing new!
Wolfram
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2006 01:46 AM
04-11-2006 01:46 AM
Re: Detecting RAID status of Proliant servers
As far as the HPACUCLI, I am limited in that I have to be able to do this remotely over the network. It appears that it does not provide a way to do this remotely.