I have just installed my (old) HP Proliant ML350 G5 server with a CentOS minimal install. I couldn’t find a complete guide to installing all the management tools, including HP System Management Homepage. I found bits of information here and there and of course a lot of outdated information. So hopefully to save others a bit of time I thought I’d share how I did it. This article will need some future refinement….
1 | vi etc/yum.repos.d/hp.repo |
And add the following:
1 2 3 4 5 6 7 8 9 10 11 12 13 | [HP-spp] name=HP Service Pack for ProLiant baseurl=http://downloads.linux.hpe.com/SDR/repo/spp/RHEL/7.2/x86_64/current/ enabled=1 gpgcheck=0 gpgkey=file:///etc/pki/rpm-gpg/GPG-KEY-ssp [HP-mcp] name=HP Management Component Pack for ProLiant baseurl=http://downloads.linux.hpe.com/SDR/repo/mcp/centos/7.2/x86_64/current/ enabled=1 gpgcheck=0 gpgkey=file:///etc/pki/rpm-gpg/GPG-KEY-mcp |
1 2 3 4 5 6 7 8 9 10 11 12 | cd /etc/pki/rpm-gpg/ wget http://downloads.linux.hpe.com/SDR/repo/spp/GPG-KEY-spp wget http://downloads.linux.hpe.com/SDR/repo/mcp/GPG-KEY-mcp sudo yum install hp-health hpssacli hp-snmp-agents hpssa hpssacli hp-smh-templates hpsmh hponcfg systemctl enable hp-health systemctl enable snmpd systemctl enable hpsmhd service hp-health start service snmpd start service hpsmhd start firewall-cmd --permanent --new-service=hpsmh firewall-cmd --reload |
Alternatively, here is the RPM direct link: https://support.hpe.com/hpsc/swd/public/detail?swItemId=MTX-efea7ac4b8614772b2070a671f
Direct link for RPM: https://support.hpe.com/hpsc/swd/public/detail?swItemId=MTX-efea7ac4b8614772b2070a671f
Thanks, I’ll update the page with this material!