If you run your R710 in a dedicated server room noise won't be an issue for you. If you have a R710 in your flat the situation is a bit different as per default the fans ramp up pretty fast and the noise level goes up with them. Mine actually never goes below 3.6k RPM which is still acceptable but the slightest increase in load will get at least some fans up to 6k RPM and that is very noticeable.
While searching for a solution to this problem i stumbled across some scripts by @NoLooseEnds that set the speed to a defined value: R710-IPMI-TEMP
Based on that i started playing around with the ipmitool and wrote this tool in Ruby that can be used to set a specific value but as well to actually monitor the cpu core temperature and ramp up the fans accordingly. To do that you can configure which fan speed should be applied at which temperature and just let it run. If the cpu temperature goes above the defined max temperature it will switch back to Dell's automatic mode. This will bring the temperature back down to a reasonable value and after a configurable cool down period we start again with our fan speeds.
In IDRAC In order to read and set fan speeds idrac needs to be enabled and ipmi needs to be reachable.
In the OS This tool is written in Ruby so Ruby and some gems are needed:
- thor for the cli
- colorize as I like color output
ipmitool needs to be installed and on the PATH
lm_sensors needs to be installed and configured
Check out the sample config file
---
# configuration file for sulaweyo/r710-fan-control
:user: 'your user' # idrac user
:pass: 'your password' # idrac password
:host: 'your idrac ip' # idrac ip
:interval: 5 # time between checks in control loop
:max_manual_temp: 66 # switch back to automatic fan control at this temp
:cool_down_time: 120 # after switch to automatic wait that long before checking again
# the following hash defines fan speed values and the temp rang that is ok for that speed
:speed_steps:
!ruby/range 0..40: 15 # run at 15% speed up to 30°C
!ruby/range 41..50: 20 # run at 20% speed up to 40°C
!ruby/range 51..55: 30 # run at 30% speed up to 50°C
!ruby/range 56..60: 35 # run at 35% speed up to 60°C
!ruby/range 61..65: 40 # run at 40% speed up to 65°C
Obviously you can adjust all these values to your liking or add/remove speed steps. Just make sure to really test how the temperatures develop along with these values!
Check out the script to wherever you like and run 'bundler install' in that directory to get the required gems. After that run './Fan-Control-CLI.rb' to see available commands.
./Fan-Control-CLI.rb
Commands:
Fan-Control-CLI.rb fanspeed # Get the current fan speed
Fan-Control-CLI.rb help [COMMAND] # Describe available commands or one specific command
Fan-Control-CLI.rb reset # Switch back to automatic fan control
Fan-Control-CLI.rb setspeed [value] # Set fan speed to given percent of max speed
Fan-Control-CLI.rb start # Start fan control loop
Fan-Control-CLI.rb temp # Get current cpu core temperature
To run it as a service a systemd unit is included but you need to update location and user before starting it. Copy or link it to '/etc/systemd/system/', run 'systemctl daemon-reload' to make systemd aware of the new service and then start/enable it.
The sample values seem to work fine for me but I cannot emphasise enough that you need to test what works for you. The script disables the built in fan control and that can lead to damage!
I take NO responsibility if you mess up anything.