访问System x3650 IMM2的几种方式
一、通过web浏览器访问
1、打开浏览器,在地址栏上输入IMM2的IP地址访问,打开登录页面后,输入用户名和密码 登录
PS:第一次登录IMM2时,初始的用户名为USERID,密码为PASSW0RD(零,不是字母O)。在初始配置期间更改此用户名和密码,以增强安全性。
二、通过IPMI 管理工具:IPMItool进行访问
ipmitool 是一种命令行方式的 ipmi 平台管理工具,通过它可以实现获取传感器的信息、显示系统日志内容、网络远程开关机等功能。
一些英文简写:
SDR:传感器数据库 sensor data repository
BMC :基板管理控制器 Baseboard Management Controller
SEL : 系统事件日志 System Evelnt Log
FRU : 可更换部件 Field Replaceable Unit
linux下可以通过包管理工具安装,例如:yum install ipmitool -y
常用命令:
ipmitool -U 用户名 -P 密码 -H IP地址 power off //关机(非正常关机)
ipmitool -U 用户名 -P 密码 -H IP地址 power on //开机
ipmitool -U 用户名 -P 密码 -H IP地址 sdr //打印传感器数据库条目
ipmitool -U 用户名 -P 密码 -H IP地址 sensor // 打印详细的传感器数据
ipmitool -U 用户名 -P 密码 -H IP地址 sensor get "CPU 1 Temp" //打印第1颗CPU的温度
ipmitool -U 用户名 -P 密码 -H IP地址 sensor get "Fan 2A Tach" //打印第2个风扇转速
ipmitool -U 用户名 -P 密码 -H IP地址 sensor get "CPU Utilization" //打印CPU利用率
ipmitool -U 用户名 -P 密码 -H IP地址 sensor get "Mem Utilization" //打印内存利用率
ipmitool -U 用户名 -P 密码 -H IP地址 sensor get "IO Utilization" //打印IO利用率
ipmitool -U 用户名 -P 密码 -H IP地址 sel list //打印系统事件日志
ipmitool -U 用户名 -P 密码 -H IP地址 fru list //打印可更换部件
详细命令参数可查看README文档:https://github.com/ipmitool/ipmitool