Hp Array Configuration Utility Download

Review information on all SERVERS: Smart Array Controllers and Smart Host Bus Adapters by Hewlett Packard Enterprise, compare and find the right product for your business.

For sure you already used, or at least heard about, the HP Smartstart Kit. This especially includes the storage management part ACU: Array Configuration Utility. This tool is pretty straightforward to configure the storage and RAID volumes before installing an HP server.

However did you know that these features are also available in command line? This is what hpacucli does…

hpacucli is usally automatically installed as part of a standard Linux installation.
[[email protected] ~]# rpm -qa |grep hpacuhpacucli-9.10-22.0

Hp Array Configuration Utility Download Free

2003

If it is missing you easily download it from the HP web site:

It provides several features for Smart Array and Raid Array controller configuration:

  • Show the current status
  • Create new logical drives
  • Add physical drives (disks) or spare drive to an array or logical drive
  • Change settings for either physical or logical drives as well as arrays
  • Remove drives
  • Extend a logical drive
  • Rescan for new controllers
  • Generate a nice diagnostic report

The principle is to run these operations on so called targets. The tool supports several target’s types which are hierarchically classified:

  • Controller
  • Slot
  • Enclosure
  • Logical Drive
  • Physical Drive

To start working with hpacucli, simply log in as root and run the command hpacucli:

Then the best way to get starting with the CLI interface is to run the command help, which provides detailed information on available options and commands.

=> helpCLI SyntaxA typical ACU CLI command line consists of three parts: a target device,a command, and a parameter with values if necessary. Using angle brackets to denote a required variable and plain brackets to denote an optionalvariable, the structure of a typical ACU CLI command line is as follows:

<target> <command> [parameter=value] <target> is of format:
[controller all|slot=#|wwn=#|chassisname=”AAA”|
serialnumber=#|chassisserialnumber=#|ctrlpath=#:# ][array all|<id>][physicaldrive all|allunassigned|[#:]#:#|[#:]#:#-[#:]#:#][logicaldrive all|#][enclosure all|#:#|serialnumber=#|chassisname=#][licensekey all|<key>]

I won’t provide here a complete description of all possible features, the help does it pretty well, but I’m going to show you some useful commands to illustrate how to use hpacucli.

Checking the status and configuration

The first interesting part is to get a status and display the configuration information for the different elements. This works through the command show.

As shown above, we can see that through show status, we even get customers’ recommendations (for instance: FIRMWARE UPGRADE REQUIRED).
Now we could have specifically a look to the configuration of the P600 controller in slot 2

We see here that we have 3 logical drives configured on this controller:

  • Logical drive 1 (ld1) in RAID1+0
  • Logical drive 2 (ld2) in RAID 1
  • Logical drive 3 (ld3) in RAID 1+0

Hp Array Configuration Utility Cli Download

In addition the command provides the list of physical drives (disks) assigned to each logical drive and their current state.
In case you just want to get a brief status of a particular logical drive, without getting all details, you could easily address it directly:

Note that the config command can only be used on controller level. You can’t specify a logical drive.

Diagnostic report

When facing I/O errors or volume corruption, a good practice is to request a diagnostic report for all controllers and drives. This is pretty easy to get using hpacucli. Give a try to the following command: ctrl all diag file=/tmp/ACU_report.zip

By default the report is generated in a compressed format. Therefore the given file extension must be .zip. This can be deactivated by setting the option zip=off in the command.
Once you have extracted the zip file, you will get a folder containing an HTML report with all the belonging files.

Simply open the HTM file and you will get a detailed report on the state and configuration settings of you controllers going down to every single physical drive.

We can see in the example above that my logical drive 1 on my second controller (P600) has failed. In fact the disks 4 & 9 seem to be broken.

Using the integrated hypertext links, I can have a look in more details on what the issue is and its impact. I can for instance check the mirror setup of my logical drive.

Arrgh….. Looking to position 11 and 16, shows that I have lost the two pieces of a mirror…

So I hope that this small introduction to hpacucli will help you to manage your Array controllers easily through the command lines.
Enjoy! 😀