Proxmox VE 6.2 安装Microserver gen8的MCP(Agentless Management Service、ssacli等)

PVE是基于debian开发的,所以可以参考官方的debian系统的操作方法。参考HPE官方文档http://downloads.linux.hpe.com/SDR/project/mcp/

MCP主要包含以下组件,可以根据需要自行选择

名称 说明
hp-health HPE System Health Application and Command line Utilities (Gen9 and earlier)
hponcfg HPE RILOE II/iLO online configuration utility
amsd HPE Agentless Management Service (Gen10 only)
hp-ams HPE Agentless Management Service (Gen9 and earlier)
hp-snmp-agents Insight Management SNMP Agents for HPE ProLiant Systems (Gen9 and earlier)
hpsmh HPE System Management Homepage (Gen9 and earlier)
hp-smh-templates HPE System Management Homepage Templates (Gen9 and earlier)
ssacli HPE Command Line Smart Storage Administration Utility
ssaducli HPE Command Line Smart Storage Administration Diagnostics
ssa HPE Array Smart Storage Administration Service
  1. 添加MCP源

新建/编辑 /etc/apt/sources.list.d/mcp.list,添加以下内容

# HPE Management Component Pack
deb http://downloads.linux.hpe.com/SDR/repo/mcp dist/project_ver non-free

其中
dist 可以是:focal, buster, bionic, xenial, trusty, precise, stretch, jessie
project_ver可以是:current, 12.05, 12.00, 11.30, 11.21, 11.05

具体内容可以直接浏览http://downloads.linux.hpe.com/SDR/repo/mcp查看

由于Microserver gen8比较老了,最新版本的源里只有hponcfg、ssacli、ssaducli、ssa,已经没有hp-ams等组件。
这里我们选择使用stretch/10.80的源,在/etc/apt/sources.list.d/mcp.list中添加:

# HPE Management Component Pack
deb http://downloads.linux.hpe.com/SDR/repo/mcp stretch/10.80 non-free
  1. 安装 HPE public gpg key

参考官方文档http://downloads.linux.hpe.com/SDR/keys.html

执行以下命令:

curl https://downloads.linux.hpe.com/SDR/hpePublicKey2048_key1.pub | apt-key add -
  1. 安装MCP组件
# 更新apt
apt-get update
# 安装组件(可以根据需要删减)
apt-get install hp-health hponcfg hp-ams hp-snmp-agents hpsmh hp-smh-templates ssacli ssaducli ssa
  1. 更新hponcfg、ssacli、ssaducli、ssa组件(可选)
    将/etc/apt/sources.list.d/mcp.list中的源修改为:
# HPE Management Component Pack
deb http://downloads.linux.hpe.com/SDR/repo/mcp buster/current non-free

更新组件

apt-get update
apt-get upgrade

最终结果
MCP列表

猜你喜欢

转载自blog.csdn.net/kangzeru/article/details/109503270