본문 바로가기
HW Knowledge/Hewlett-Packard Enterprise

iLO5/Manage Cooling setting at Online

by 스쳐가는인연 2020. 10. 27.

Gen10 시스템의 경우, iLO fw 2.30 부터, Online에서 냉각 설정을 변경할 수 있다.

 

HPE iLO 5 2.30 User Guide
https://support.hpe.com/hpesc/public/docDisplay?docId=a00105236en_us

P.219 Configuring and viewing fans
Configuring the minimum fan speed
The minimum fan speed setting overrides the thermal configuration setting if the minimum fan speed is greater than the thermal configuration value

 

Configuring the thermal configuration setting
It might take several minutes before you can re-establish a connection
The thermal configuration setting overrides the minimum fan speed setting if the thermal configuration value is greater than the minimum fan speed value.

 

> 상대적으로 상위 냉각 설정이 우선한다는 ...

 

Cooling configuration on iLO

냉각 구성을 변경 후 적용하면, 자동으로 iLO가 리셋되는데, 한 번 더, iLO를 리셋하는것을 추천...

 

iLO 상에서, Cooling 설정 변경 후 저장하면,

iLO Web UI 및 BIOS 상에는 바로 적용되는데, ilorest로 조회되는 정보는 변경되지 않는다.

ThermalConfig=OptimalCooling

 

iLO5 - set cooling at online

iLO reset을 2회(추가 한 번 더) 수행하면 적용된다.

ThermalConfig=IncreasedCooling

 

충분한(?) 시간을 기다려 본 것 같은데 변화하지 않은 것을 볼 때, 캐싱 정보가 업데이트 되지 않는 것으로 판단되고, 온라인에서, 서비스 영향 없이 수행하는 작업이니, iLO 리셋을 한 번 더 해서, 정확히 설정된 것을 확인하는 것이 좋다고 판단됨. (정신 건강이 ....)

 

RESTful API: ilorest 이용:

 

1. Open RESTful Interface Tool Console

2. execute below syntax command:
C:\> ilorest --nologo login iLO_IP_Address -u Administrative_Account -p Password --selector=Thermal.
C:\> ilorest rawpatch C:\temp\ilorest_cool.json

c.f.) ilorest_cool.json:
-----------------------------------------------------------
{
 "/redfish/v1/chassis/1/thermal":{
               "Oem":{
       "Hpe":{
         "FanPercentMinimum":15,
         "ThermalConfiguration":"OptimalCooling"
     }
   }
 }
}
-----------------------------------------------------------

 

Advisory: RESTful Interface Tool (iLOREST) - Unable To Set the ThermalConfiguration and FanPercentMinimum Setting in iLOREST Version 3.1.1 for Windows Server
https://support.hpe.com/hpesc/public/docDisplay?docId=emr_na-a00112606en_us

 

Note. curl command
curl -ikL -u username:password -X PATCH -H "Content-Type: application/json; charset=utf-8" -d '{"Oem":{"Hpe":{"FanPercentMinimum":"20", "ThermalConfiguration":"EnhancedCooling"}}}' https://iLO_IPadress/redfish/v1/Chassis/1/Thermal

 

 

 

 

반응형