浪潮服務器系統下重置IPIM/BMC密碼(浪潮服務器修改bmc密碼)
當浪潮服務器IPIM管理口的密碼忘記了怎么辦?重啟服務器進入BIOS重置?
以下是浪潮服務器在系統下重置IPIM管理口的密碼的操作方式:
Windows系統
1、重置密碼之前,請先安裝IPMI驅動(如已安裝請跳過此步),點擊下載并解壓:ipmitool_win.rar,下載鏈接:
http://www.4008600011.com/wordpress/wp-content/uploads/2018/01/ipmitool_win.rar,
解壓后雙擊getlog.bat自動安裝。
2、打開cmd命令行,進入附件工具下的ipmitool目錄,執行如下命令,確認需要重置密碼的用戶ID。
ipmitool user list 1
例如:需要重置admin帳號的密碼,如下可以確認admin帳號的ID是1。
ID Name Callin Link Auth IPMI Msg Channel Priv Limit
a) admin false true true ADMINISTRATOR
b) default true false false NO ACCESS
3、修改用戶密碼:
ipmitool user set password 1 newpassword(1表示ID1,newpassword表示新密碼)
Linux系統
1、重置密碼之前,請先安裝ipmitool工具(如已安裝請跳過此步),點擊下載并解壓:ipmitool-1.8.18.zip
安裝方法:
wget http://www.4008600011.com/wordpress/wp-content/uploads/2018/01/ipmitool-1.8.18.zip
cd ipmitool
chmod 777 configure
./configure
make
make install
2、執行如下命令,確認需要重置密碼的用戶ID。
modprobe ipmi_devintf
modprobe ipmi_si
ipmitool user list 1
例如:需要重置admin帳號的密碼,如下結果可確認admin帳號的ID是1。
ID Name Callin Link Auth IPMI Msg Channel Priv Limit
1 admin false true true ADMINISTRATOR
2 default true false false NO ACCESS
3、修改用戶密碼:
ipmitool user set password 1 newpassword(1表示ID1,newpassword表示新密碼)