IPMI结合conman维护服务器¶
私有云架构 是我采用 HPE ProLiant DL360 Gen9服务器 二手服务器构建的云计算模拟环境。对于服务器系统, 使用IPMI(智能平台管理接口) 结合 conman串口管理 ,可以构建出大规模集群物理服务器带外管理系统。
IPMI配置¶
首先,物理服务器要开启IPMI并进行基础配置:
带外管理IP:
ipmitool lan set 2 ipsrc static
ipmitool lan set 2 ipaddr 192.168.6.254
ipmitool lan set 2 netmask 255.255.255.0
ipmitool lan set 2 defgw ipaddr 192.168.6.200
ipmitool lan set 2 defgw macaddr 00:0e:0c:aa:8e:13
ipmitool lan set 2 arp respond on
ipmitool lan set 2 auth ADMIN MD5
ipmitool lan set 2 access on
创建admin管理账号:
ipmitool user set name 1 admin
ipmitool user set password 1 ADMIN_PASSWORD
ipmitool channel setaccess 2 1 link=on ipmi=on callin=on privilege=4
现在可以验证通过网络访问IPMI控制台:
ipmitool -I lanplus -H IP -U username -P password sol activate
获取系统日志:
ipmitool -I lanplus -H IP -U username -P password sel list
重BMC:
ipmitool -I lanplus -H IP -U username -P password mc reset cold
重启服务器:
ipmitool -I lanplus -H IP -U username -P password power reset