Fixed a typo in "threshold" word
This commit is contained in:
parent
916d454c6d
commit
0a5430d65e
3 changed files with 11 additions and 11 deletions
12
README.md
12
README.md
|
|
@ -66,7 +66,7 @@ docker run -d \
|
|||
--restart=unless-stopped \
|
||||
-e IDRAC_HOST=local \
|
||||
-e FAN_SPEED=<decimal or hexadecimal fan speed> \
|
||||
-e CPU_TEMPERATURE_TRESHOLD=<decimal temperature treshold> \
|
||||
-e CPU_TEMPERATURE_THRESHOLD=<decimal temperature threshold> \
|
||||
-e CHECK_INTERVAL=<seconds between each check> \
|
||||
-e DISABLE_THIRD_PARTY_PCIE_CARD_DELL_DEFAULT_COOLING_RESPONSE=<true or false> \
|
||||
--device=/dev/ipmi0:/dev/ipmi0:rw \
|
||||
|
|
@ -83,7 +83,7 @@ docker run -d \
|
|||
-e IDRAC_USERNAME=<iDRAC username> \
|
||||
-e IDRAC_PASSWORD=<iDRAC password> \
|
||||
-e FAN_SPEED=<decimal or hexadecimal fan speed> \
|
||||
-e CPU_TEMPERATURE_TRESHOLD=<decimal temperature treshold> \
|
||||
-e CPU_TEMPERATURE_THRESHOLD=<decimal temperature threshold> \
|
||||
-e CHECK_INTERVAL=<seconds between each check> \
|
||||
-e DISABLE_THIRD_PARTY_PCIE_CARD_DELL_DEFAULT_COOLING_RESPONSE=<true or false> \
|
||||
tigerblue77/dell_idrac_fan_controller:latest
|
||||
|
|
@ -104,7 +104,7 @@ services:
|
|||
environment:
|
||||
- IDRAC_HOST=local
|
||||
- FAN_SPEED=<decimal or hexadecimal fan speed>
|
||||
- CPU_TEMPERATURE_TRESHOLD=<decimal temperature treshold>
|
||||
- CPU_TEMPERATURE_THRESHOLD=<decimal temperature threshold>
|
||||
- CHECK_INTERVAL=<seconds between each check>
|
||||
- DISABLE_THIRD_PARTY_PCIE_CARD_DELL_DEFAULT_COOLING_RESPONSE=<true or false>
|
||||
devices:
|
||||
|
|
@ -126,7 +126,7 @@ services:
|
|||
- IDRAC_USERNAME=<iDRAC username>
|
||||
- IDRAC_PASSWORD=<iDRAC password>
|
||||
- FAN_SPEED=<decimal or hexadecimal fan speed>
|
||||
- CPU_TEMPERATURE_TRESHOLD=<decimal temperature treshold>
|
||||
- CPU_TEMPERATURE_THRESHOLD=<decimal temperature threshold>
|
||||
- CHECK_INTERVAL=<seconds between each check>
|
||||
- DISABLE_THIRD_PARTY_PCIE_CARD_DELL_DEFAULT_COOLING_RESPONSE=<true or false>
|
||||
```
|
||||
|
|
@ -142,7 +142,7 @@ All parameters are optional as they have default values (including default iDRAC
|
|||
- `IDRAC_USERNAME` parameter is only necessary if you're adressing a distant iDRAC. **Default** value is "root".
|
||||
- `IDRAC_PASSWORD` parameter is only necessary if you're adressing a distant iDRAC. **Default** value is "calvin".
|
||||
- `FAN_SPEED` parameter can be set as a decimal (from 0 to 100%) or hexadecimaladecimal value (from 0x00 to 0x64) you want to set the fans to. **Default** value is 5(%).
|
||||
- `CPU_TEMPERATURE_TRESHOLD` parameter is the T°junction (junction temperature) threshold beyond which the Dell fan mode defined in your BIOS will become active again (to protect the server hardware against overheat). **Default** value is 50(°C).
|
||||
- `CPU_TEMPERATURE_THRESHOLD` parameter is the T°junction (junction temperature) threshold beyond which the Dell fan mode defined in your BIOS will become active again (to protect the server hardware against overheat). **Default** value is 50(°C).
|
||||
- `CHECK_INTERVAL` parameter is the time (in seconds) between each temperature check and potential profile change. **Default** value is 60(s).
|
||||
- `DISABLE_THIRD_PARTY_PCIE_CARD_DELL_DEFAULT_COOLING_RESPONSE` parameter is a boolean that allows to disable third-party PCIe card Dell default cooling response. **Default** value is false.
|
||||
|
||||
|
|
@ -152,7 +152,7 @@ All parameters are optional as they have default values (including default iDRAC
|
|||
## Troubleshooting
|
||||
|
||||
If your server frequently switches back to the default Dell fan mode:
|
||||
1. Check `Tcase` (case temperature) of your CPU on Intel Ark website and then set `CPU_TEMPERATURE_TRESHOLD` to a slightly lower value. Example with my CPUs ([Intel Xeon E5-2630L v2](https://www.intel.com/content/www/us/en/products/sku/75791/intel-xeon-processor-e52630l-v2-15m-cache-2-40-ghz/specifications.html)) : Tcase = 63°C, I set `CPU_TEMPERATURE_TRESHOLD` to 60(°C).
|
||||
1. Check `Tcase` (case temperature) of your CPU on Intel Ark website and then set `CPU_TEMPERATURE_THRESHOLD` to a slightly lower value. Example with my CPUs ([Intel Xeon E5-2630L v2](https://www.intel.com/content/www/us/en/products/sku/75791/intel-xeon-processor-e52630l-v2-15m-cache-2-40-ghz/specifications.html)) : Tcase = 63°C, I set `CPU_TEMPERATURE_THRESHOLD` to 60(°C).
|
||||
2. If it's already good, adapt your `FAN_SPEED` value to increase the airflow and thus further decrease the temperature of your CPU(s)
|
||||
3. If neither increasing the fan speed nor increasing the threshold solves your problem, then it may be time to replace your thermal paste
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue