Goal: To have the ability to monitor the RAID status without rebooting.
The setup:
- HP Z400 workstation
- P410 HP Smart Array
- ICY 6-bay cage
- 6 SATA disks
After some troubleshooting, I found that in order to view the raid configuration for the P410 on the HP z400 the utility i needed was ssacli. This replaced the original hpacucli that I was unsuccessful in installing. When running hpacucli I was met with a wonderful message:
1 2 3 |
[root@moo:~] ./opt/hp/hpacucli/bin/hpacucli controller all show config Error: No controllers detected. |
I eventually found that I needed to install ssacli. I searched HP’s website1)https://support.hpe.com/hpesc/public/home/result?qt=hpssacli (hopefully link still works) for ‘hpssacli’. I filtered it for ESXI 6.5 (running 6.5 u2) and landed here. Downloaded the .zip and used winscp to copy the zip file to /tmp/ssacli.
1 2 3 4 5 6 7 |
[root@moo:/tmp/ssacli] esxcli software vib install -d /tmp/ssacli/hpe-HPUtil-esxi6.5-bundle-2.6.2-1.zip Installation Result Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective. Reboot Required: true VIBs Installed: HPE_bootbank_conrep_6.0.0.01-02.00.1.2494585, HPE_bootbank_hpbootcfg_6.0.0.02-02.00.6.2494585, HPE_bootbank_hpe-cru_650.6.5.8.24-1.4240417, HPE_bootbank_hpe-ilo_650.10.0.2-2.4240417, HPE_bootbank_hponcfg_6.0.0.4.4-2.4.2494585, HPE_bootbank_hptestevent_6.0.0.01-01.00.5.2494585, HPE_bootbank_ssacli_2.60.18.0-6.0.0.2494585 VIBs Removed: VIBs Skipped: |
Reboot.
Check for the file and execute:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
[root@tortuga:~] find -name ssacli ./opt/smartstorageadmin/ssacli ./opt/smartstorageadmin/ssacli/bin/ssacli [root@moo:~] ./opt/smartstorageadmin/ssacli/bin/ssacli controller all show config Smart Array P410 in Slot 1 (sn: PACCM001M00VBF) Port Name: 1I Port Name: 2I Array A (SATA, Unused Space: 0 MB) logicaldrive 1 (1.4 TB, RAID 5, OK) physicaldrive 1I:0:1 (port 1I:box 0:bay 1, SATA HDD, 500 GB, OK) physicaldrive 1I:0:2 (port 1I:box 0:bay 2, SATA HDD, 500 GB, OK) physicaldrive 2I:0:5 (port 2I:box 0:bay 5, SATA HDD, 500 GB, OK) physicaldrive 2I:0:6 (port 2I:box 0:bay 6, SATA HDD, 500 GB, OK) Array B (SATA, Unused Space: 0 MB) logicaldrive 2 (465.7 GB, RAID 1, OK) physicaldrive 2I:0:7 (port 2I:box 0:bay 7, SATA HDD, 500 GB, OK) physicaldrive 2I:0:8 (port 2I:box 0:bay 8, SATA HDD, 500 GB, OK) SEP (Vendor ID PMCSIERA, Model SRC 8x6G) 250 (WWID: M0014MO021D543CF) |
Latest posts by Mr-Moo (see all)
- Installing ssacli – view raid ESXI 6.5 - December 6, 2017
- Installing hpacucli on Proxmox - December 5, 2017
- Finding your node name Graylog 2.2.x - May 22, 2017
Notes & References
You are awesome and saved me a ton of time and headache trying to monitor 4 P410 controllers on ESXi 6.5.
Thank you very much bro!!!