PID fan controller Perl script

JackShine

Dabbler
Joined
Nov 13, 2014
Messages
27
Why would you bother with all this code?

Just install an auto PWM controller, about 12 bucks on ebay.

Shove the temp probe in hottest drive and flick a few toggles.

It can handle more than 10 high end fans.



Just asking.
 
Joined
Dec 2, 2015
Messages
730
Why would you bother with all this code?

Just install an auto PWM controller, about 12 bucks on ebay.

Shove the temp probe in hottest drive and flick a few toggles.

It can handle more than 10 high end fans.
This approach would probably work quite nicely, if there was a place to put the temperature probe so it gave a good indication of internal drive temperature. But, I've never seen a drive with a recess in which you could insert the probe. If you stick the probe against the outer surface of the drive, you'll be measuring some mix of outer case temperature and air flow temperature. It would also interfere with hot swapping drives, if your system has that capability (as mine does).

Can you provide a link showing an example of where someone has done this successfully? I'm definitely curious to learn more.
 

JackShine

Dabbler
Joined
Nov 13, 2014
Messages
27
All drives have extra mount holes, just insert the probe in the hottest drive and its pretty accurate, I use velcro to seal the probe.

I checked the temp with a Fluke and the fan did spin up at aprox the right temp 35 C
 

rogerh

Guru
Joined
Apr 18, 2014
Messages
1,111
All drives have extra mount holes, just insert the probe in the hottest drive and its pretty accurate, I use velcro to seal the probe.

I checked the temp with a Fluke and the fan did spin up at aprox the right temp 35 C
It would be interesting to compare what the drive considers to be its temperature (via smartctl) with what the probe is reading.
 
Joined
Dec 2, 2015
Messages
730
Using a script allows to cover certain cases that would be difficult or impossible using a separate PID controller that only knows the temperature of one drive. For example, you could envision that a drive with a failing bearing may run warmer. My script overrides the PID control loop and sets the fans to full speed if any hard drive exceeds a specified temperature. Another scenario is if the single drive being monitored fails (mechanical failure, or power failure). If that drive stops turning, it would likely cool down, and the PID controller would slow the fans down. This may result in the other drives overheating. These two failures are certainly low probability though.

It is certainly up to each individual to decide what method he will use. If you are happy with the hardware PID controller, I'm not going to attempt to change your mind.
 
Joined
Dec 2, 2015
Messages
730

JRD

Dabbler
Joined
Apr 21, 2018
Messages
42
Hi, I tried the script ...... unfortunately, it seems to be getting the speed of my cpu fan very wrong.

My setup:
FreeNAS 11.1 U5
Supermicro X11SSM-F-O
Intel Pentium (G4560) 3.5GHz
2x 8GB DDR4 PC4-19200 2400MHz 288-pin UDIMM ECC Unbuffered Samsung
6 Seagate Iron Wolf 3TB
2 WD Red 3TB
2 SanDisk Ultra Fit 32 GB USB Flash Drive for boot
Seasonic M12-II EVO 520W 80+ Bronze
Fractal Design Node 804 case
Stock Intel fan on CPU connected to header FAN1
3 Corsair ML 120 Pro LED fans on motherboard side of case (FAN 2-4)
3 Fractal Design Silent Series 120 fans on Hard Drive side via a hub (FANA)

The script starts and kicks the fan mode to full speed.
It seems to read the temperatures correctly or at least they look moderate.
However, it reads my cpu fan as running at 3100 or 3200 whereas I believe its maximum speed is 2500.
The script goes round and round, resetting BMC and the fans continue at max.

Can anyone give me some clues, please?
 
Joined
Dec 2, 2015
Messages
730
Hi, I tried the script ...... unfortunately, it seems to be getting the speed of my cpu fan very wrong.

...

The script starts and kicks the fan mode to full speed.
It seems to read the temperatures correctly or at least they look moderate.
However, it reads my cpu fan as running at 3100 or 3200 whereas I believe its maximum speed is 2500.
The script goes round and round, resetting BMC and the fans continue at max.

Can anyone give me some clues, please?
What is the output of ipmitool sensor | grep FAN, and which fan header is the CPU fan connected to?

You can also increase the Debug Level by editing the script, and then looking for clues in the debug log. Look for the line in the ##DEBUG LEVEL section to set that.
 
  • Like
Reactions: JRD

JRD

Dabbler
Joined
Apr 21, 2018
Messages
42
Hello
I had previously run:

root@NAS:/mnt/Storage/Scripts # /usr/local/bin/ipmitool sdr | grep FAN1
FAN1 | 1000 RPM | ok
root@NAS:/mnt/Storage/Scripts #

I'll try your suggestion tonight
The cpu fan is connected to FAN1

Thanks
 

Stux

MVP
Joined
Jun 2, 2016
Messages
4,367
  • Like
Reactions: JRD

JRD

Dabbler
Joined
Apr 21, 2018
Messages
42
What is the output of ipmitool sensor | grep FAN, and which fan header is the CPU fan connected to?

You can also increase the Debug Level by editing the script, and then looking for clues in the debug log. Look for the line in the ##DEBUG LEVEL section to set that.

Here we go:
Code:
root@NAS:/mnt/Storage/Scripts #  ipmitool sensor | grep FAN
FAN1			 | 1000.000   | RPM		| ok	| 600.000   | 700.000   | 800.000   | 2500.000  | 2600.000  | 2700.000
FAN2			 | 400.000	| RPM		| nc	| 200.000   | 300.000   | 400.000   | 2400.000  | 2500.000  | 2600.000
FAN3			 | 400.000	| RPM		| nc	| 200.000   | 300.000   | 400.000   | 2400.000  | 2500.000  | 2600.000
FAN4			 | 400.000	| RPM		| nc	| 200.000   | 300.000   | 400.000   | 2400.000  | 2500.000  | 2600.000
FANA			 | 800.000	| RPM		| ok	| 500.000   | 600.000   | 700.000   | 1300.000  | 1400.000  | 1500.000
root@NAS:/mnt/Storage/Scripts #

 

JRD

Dabbler
Joined
Apr 21, 2018
Messages
42
Your fans probably do spin up to 3200rpm and you might need to increase the fan thresholds

https://forums.freenas.org/index.php?threads/script-hybrid-cpu-hd-fan-zone-controller.46159/

I increased the upper threshold for FAN1 (cpu) to 3200 3300 3400 then ran the script:

Code:
root@NAS:/mnt/Storage/Scripts # ./PID_fan_control.pl
2018-10-03 20:29:09: ada0 ada1 ada2 ada3 ada4 ada5 ada6 ada7 da0 da1
2018-10-03 20:29:09: ada0
2018-10-03 20:29:09: ada1
2018-10-03 20:29:09: ada2
2018-10-03 20:29:09: ada3
2018-10-03 20:29:09: ada4
2018-10-03 20:29:09: ada5
2018-10-03 20:29:09: ada6
2018-10-03 20:29:09: ada7
2018-10-03 20:29:09: da0
2018-10-03 20:29:09: da1
2018-10-03 20:29:09: fanmode: full = 1
2018-10-03 20:29:09: Setting fan mode to 1 (full)
2018-10-03 20:29:15: core_temps:
37.0
37.0
29.0
29.0
2018-10-03 20:29:15: core_temp = 37.0 C
2018-10-03 20:29:15: core_temp = 37.0 C
2018-10-03 20:29:15: core_temp = 29.0 C
2018-10-03 20:29:15: core_temp = 29.0 C
2018-10-03 20:29:15: CPU Temp: 37.0
2018-10-03 20:29:15: CPU Temp: 37.0 dropped below 45, CPU Fan going med.
2018-10-03 20:29:15: CPU Fan: med
2018-10-03 20:29:15: CPU Fan changing... (med)
2018-10-03 20:29:15: Setting Zone 0 duty cycle to 75%
2018-10-03 20:29:15: ada0 ada1 ada2 ada3 ada4 ada5 ada6 ada7 da0 da1
2018-10-03 20:29:15: ada0
2018-10-03 20:29:15: ada1
2018-10-03 20:29:15: ada2
2018-10-03 20:29:15: ada3
2018-10-03 20:29:15: ada4
2018-10-03 20:29:15: ada5
2018-10-03 20:29:15: ada6
2018-10-03 20:29:15: ada7
2018-10-03 20:29:15: da0
2018-10-03 20:29:15: da1
2018-10-03 20:29:15: temperature error = -6.5
2018-10-03 20:29:15: PID corrections are P = -52, I = 0 and D = 3.33333333333333
2018-10-03 20:29:15: PID control new duty cycle is 31.3333333333333%
2018-10-03 20:29:15: Setting Zone 1 duty cycle to 31%
2018-10-03 20:29:16: core_temps:
28.0
30.0
33.0
33.0
2018-10-03 20:29:16: core_temp = 28.0 C
2018-10-03 20:29:16: core_temp = 30.0 C
2018-10-03 20:29:16: core_temp = 33.0 C
2018-10-03 20:29:16: core_temp = 33.0 C
2018-10-03 20:29:16: CPU Temp: 33.0
2018-10-03 20:29:17: core_temps:
27.0
27.0
28.0
28.0
2018-10-03 20:29:17: core_temp = 27.0 C
2018-10-03 20:29:17: core_temp = 27.0 C
2018-10-03 20:29:17: core_temp = 28.0 C
2018-10-03 20:29:17: core_temp = 28.0 C
2018-10-03 20:29:17: CPU Temp: 28.0
2018-10-03 20:29:17: CPU Temp: 28.0 <= 35, CPU Fan going low.
2018-10-03 20:29:17: CPU Fan: low
2018-10-03 20:29:17: CPU Fan changing... (low)
2018-10-03 20:29:17: Setting Zone 0 duty cycle to 40%
2018-10-03 20:29:18: core_temps:
28.0
28.0
28.0
28.0
2018-10-03 20:29:18: core_temp = 28.0 C
2018-10-03 20:29:18: core_temp = 28.0 C
2018-10-03 20:29:18: core_temp = 28.0 C
2018-10-03 20:29:18: core_temp = 28.0 C
2018-10-03 20:29:18: CPU Temp: 28.0
2018-10-03 20:29:18: CPU Fan: low
2018-10-03 20:29:19: core_temps:
29.0
29.0
28.0
28.0
2018-10-03 20:29:19: core_temp = 29.0 C
2018-10-03 20:29:19: core_temp = 29.0 C
2018-10-03 20:29:19: core_temp = 28.0 C
2018-10-03 20:29:19: core_temp = 28.0 C
2018-10-03 20:29:19: CPU Temp: 29.0
2018-10-03 20:29:19: CPU Fan: low
2018-10-03 20:29:20: core_temps:
29.0
29.0
28.0
28.0
2018-10-03 20:29:20: core_temp = 29.0 C
2018-10-03 20:29:20: core_temp = 29.0 C
2018-10-03 20:29:20: core_temp = 28.0 C
2018-10-03 20:29:20: core_temp = 28.0 C
2018-10-03 20:29:20: CPU Temp: 29.0
2018-10-03 20:29:20: CPU Fan: low
2018-10-03 20:29:21: core_temps:
27.0
28.0
28.0
28.0
2018-10-03 20:29:21: core_temp = 27.0 C
2018-10-03 20:29:21: core_temp = 28.0 C
2018-10-03 20:29:21: core_temp = 28.0 C
2018-10-03 20:29:21: core_temp = 28.0 C
2018-10-03 20:29:21: CPU Temp: 28.0
2018-10-03 20:29:21: CPU Fan: low
2018-10-03 20:29:22: core_temps:
28.0
28.0
27.0
29.0
2018-10-03 20:29:22: core_temp = 28.0 C
2018-10-03 20:29:22: core_temp = 28.0 C
2018-10-03 20:29:22: core_temp = 27.0 C
2018-10-03 20:29:22: core_temp = 29.0 C
2018-10-03 20:29:22: CPU Temp: 29.0
2018-10-03 20:29:22: CPU Fan: low
2018-10-03 20:29:23: core_temps:
29.0
29.0
27.0
27.0
2018-10-03 20:29:23: core_temp = 29.0 C
2018-10-03 20:29:23: core_temp = 29.0 C
2018-10-03 20:29:23: core_temp = 27.0 C
2018-10-03 20:29:23: core_temp = 27.0 C
2018-10-03 20:29:23: CPU Temp: 29.0
2018-10-03 20:29:23: CPU Fan: low
2018-10-03 20:29:24: core_temps:
29.0
29.0
28.0
28.0
2018-10-03 20:29:24: core_temp = 29.0 C
2018-10-03 20:29:24: core_temp = 29.0 C
2018-10-03 20:29:24: core_temp = 28.0 C
2018-10-03 20:29:24: core_temp = 28.0 C
2018-10-03 20:29:24: CPU Temp: 29.0
2018-10-03 20:29:24: CPU Fan: low
2018-10-03 20:29:25: core_temps:
29.0
29.0
27.0
27.0
2018-10-03 20:29:25: core_temp = 29.0 C
2018-10-03 20:29:25: core_temp = 29.0 C
2018-10-03 20:29:25: core_temp = 27.0 C
2018-10-03 20:29:25: core_temp = 27.0 C
2018-10-03 20:29:25: CPU Temp: 29.0
2018-10-03 20:29:25: CPU Fan: low
2018-10-03 20:29:26: core_temps:
30.0
30.0
28.0
28.0
2018-10-03 20:29:26: core_temp = 30.0 C
2018-10-03 20:29:26: core_temp = 30.0 C
2018-10-03 20:29:26: core_temp = 28.0 C
2018-10-03 20:29:26: core_temp = 28.0 C
2018-10-03 20:29:26: CPU Temp: 30.0
2018-10-03 20:29:26: CPU Fan: low
2018-10-03 20:29:27: core_temps:
30.0
30.0
28.0
28.0
2018-10-03 20:29:27: core_temp = 30.0 C
2018-10-03 20:29:27: core_temp = 30.0 C
2018-10-03 20:29:27: core_temp = 28.0 C
2018-10-03 20:29:27: core_temp = 28.0 C
2018-10-03 20:29:27: CPU Temp: 30.0
2018-10-03 20:29:27: CPU Fan: low
2018-10-03 20:29:28: core_temps:
28.0
28.0
29.0
29.0
2018-10-03 20:29:28: core_temp = 28.0 C
2018-10-03 20:29:28: core_temp = 28.0 C
2018-10-03 20:29:28: core_temp = 29.0 C
2018-10-03 20:29:28: core_temp = 29.0 C
2018-10-03 20:29:28: CPU Temp: 29.0
2018-10-03 20:29:28: CPU Fan: low
2018-10-03 20:29:29: fan_speed = 3100
2018-10-03 20:29:29: CPU Fan speed: 3100 RPM
2018-10-03 20:29:29: fan_speed = 1100
2018-10-03 20:29:29: HD Fan speed: 1100 RPM
2018-10-03 20:29:29: CPU fan speed should be low, but 3100 > 2000.
2018-10-03 20:29:29: bmc_fail_count:  1, bmc_fail_threshold: 1
2018-10-03 20:29:29: Fan speeds are not where they should be, will try again.
2018-10-03 20:29:29: fanmode: full = 1
2018-10-03 20:29:29: Setting fan mode to 1 (full)
2018-10-03 20:29:34: Setting Zone 0 duty cycle to 40%
2018-10-03 20:29:34: Setting Zone 1 duty cycle to 31%
2018-10-03 20:29:35: core_temps:
28.0
29.0
27.0
27.0
2018-10-03 20:29:35: core_temp = 28.0 C
2018-10-03 20:29:35: core_temp = 29.0 C
2018-10-03 20:29:35: core_temp = 27.0 C
2018-10-03 20:29:35: core_temp = 27.0 C
2018-10-03 20:29:35: CPU Temp: 29.0
2018-10-03 20:29:35: CPU Fan: low
2018-10-03 20:29:36: core_temps:
28.0
28.0
28.0
29.0
2018-10-03 20:29:36: core_temp = 28.0 C
2018-10-03 20:29:36: core_temp = 28.0 C
2018-10-03 20:29:36: core_temp = 28.0 C
2018-10-03 20:29:36: core_temp = 29.0 C
2018-10-03 20:29:36: CPU Temp: 29.0
2018-10-03 20:29:36: CPU Fan: low
2018-10-03 20:29:37: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:29:37: core_temp = 28.0 C
2018-10-03 20:29:37: core_temp = 28.0 C
2018-10-03 20:29:37: core_temp = 27.0 C
2018-10-03 20:29:37: core_temp = 27.0 C
2018-10-03 20:29:37: CPU Temp: 28.0
2018-10-03 20:29:37: CPU Fan: low
2018-10-03 20:29:38: core_temps:
29.0
29.0
27.0
27.0
2018-10-03 20:29:38: core_temp = 29.0 C
2018-10-03 20:29:38: core_temp = 29.0 C
2018-10-03 20:29:38: core_temp = 27.0 C
2018-10-03 20:29:38: core_temp = 27.0 C
2018-10-03 20:29:38: CPU Temp: 29.0
2018-10-03 20:29:38: CPU Fan: low
2018-10-03 20:29:39: core_temps:
28.0
30.0
28.0
28.0
2018-10-03 20:29:39: core_temp = 28.0 C
2018-10-03 20:29:39: core_temp = 30.0 C
2018-10-03 20:29:39: core_temp = 28.0 C
2018-10-03 20:29:39: core_temp = 28.0 C
2018-10-03 20:29:39: CPU Temp: 30.0
2018-10-03 20:29:39: CPU Fan: low
2018-10-03 20:29:41: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:29:41: core_temp = 28.0 C
2018-10-03 20:29:41: core_temp = 28.0 C
2018-10-03 20:29:41: core_temp = 27.0 C
2018-10-03 20:29:41: core_temp = 27.0 C
2018-10-03 20:29:41: CPU Temp: 28.0
2018-10-03 20:29:41: CPU Fan: low
2018-10-03 20:29:42: core_temps:
29.0
29.0
26.0
27.0
2018-10-03 20:29:42: core_temp = 29.0 C
2018-10-03 20:29:42: core_temp = 29.0 C
2018-10-03 20:29:42: core_temp = 26.0 C
2018-10-03 20:29:42: core_temp = 27.0 C
2018-10-03 20:29:42: CPU Temp: 29.0
2018-10-03 20:29:42: CPU Fan: low
2018-10-03 20:29:43: core_temps:
28.0
28.0
26.0
27.0
2018-10-03 20:29:43: core_temp = 28.0 C
2018-10-03 20:29:43: core_temp = 28.0 C
2018-10-03 20:29:43: core_temp = 26.0 C
2018-10-03 20:29:43: core_temp = 27.0 C
2018-10-03 20:29:43: CPU Temp: 28.0
2018-10-03 20:29:43: CPU Fan: low
2018-10-03 20:29:44: core_temps:
29.0
29.0
28.0
28.0
2018-10-03 20:29:44: core_temp = 29.0 C
2018-10-03 20:29:44: core_temp = 29.0 C
2018-10-03 20:29:44: core_temp = 28.0 C
2018-10-03 20:29:44: core_temp = 28.0 C
2018-10-03 20:29:44: CPU Temp: 29.0
2018-10-03 20:29:44: CPU Fan: low
2018-10-03 20:29:45: core_temps:
27.0
27.0
28.0
28.0
2018-10-03 20:29:45: core_temp = 27.0 C
2018-10-03 20:29:45: core_temp = 27.0 C
2018-10-03 20:29:45: core_temp = 28.0 C
2018-10-03 20:29:45: core_temp = 28.0 C
2018-10-03 20:29:45: CPU Temp: 28.0
2018-10-03 20:29:45: CPU Fan: low
2018-10-03 20:29:45: fan_speed = 3100
2018-10-03 20:29:45: CPU Fan speed: 3100 RPM
2018-10-03 20:29:46: fan_speed = 1100
2018-10-03 20:29:46: HD Fan speed: 1100 RPM
2018-10-03 20:29:46: CPU fan speed should be low, but 3100 > 2000.
2018-10-03 20:29:46: bmc_fail_count:  2, bmc_fail_threshold: 1
2018-10-03 20:29:46: Fan speeds are still not where they should be after 2 attempts, will reboot BMC.
2018-10-03 20:29:46: fanmode: full = 1
2018-10-03 20:29:46: Setting fan mode to 1 (full)
2018-10-03 20:29:51: Resetting BMC
2018-10-03 20:29:52: core_temps:
28.0
28.0
26.0
27.0
2018-10-03 20:29:52: core_temp = 28.0 C
2018-10-03 20:29:52: core_temp = 28.0 C
2018-10-03 20:29:52: core_temp = 26.0 C
2018-10-03 20:29:52: core_temp = 27.0 C
2018-10-03 20:29:52: CPU Temp: 28.0
2018-10-03 20:29:52: CPU Fan: low
2018-10-03 20:29:53: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:29:53: core_temp = 28.0 C
2018-10-03 20:29:53: core_temp = 28.0 C
2018-10-03 20:29:53: core_temp = 27.0 C
2018-10-03 20:29:53: core_temp = 27.0 C
2018-10-03 20:29:53: CPU Temp: 28.0
2018-10-03 20:29:53: CPU Fan: low
2018-10-03 20:29:54: core_temps:
28.0
28.0
28.0
28.0
2018-10-03 20:29:54: core_temp = 28.0 C
2018-10-03 20:29:54: core_temp = 28.0 C
2018-10-03 20:29:54: core_temp = 28.0 C
2018-10-03 20:29:54: core_temp = 28.0 C
2018-10-03 20:29:54: CPU Temp: 28.0
2018-10-03 20:29:54: CPU Fan: low
2018-10-03 20:29:55: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:29:55: core_temp = 28.0 C
2018-10-03 20:29:55: core_temp = 28.0 C
2018-10-03 20:29:55: core_temp = 27.0 C
2018-10-03 20:29:55: core_temp = 27.0 C
2018-10-03 20:29:55: CPU Temp: 28.0
2018-10-03 20:29:55: CPU Fan: low
2018-10-03 20:29:56: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:29:56: core_temp = 28.0 C
2018-10-03 20:29:56: core_temp = 28.0 C
2018-10-03 20:29:56: core_temp = 27.0 C
2018-10-03 20:29:56: core_temp = 27.0 C
2018-10-03 20:29:56: CPU Temp: 28.0
2018-10-03 20:29:56: CPU Fan: low
2018-10-03 20:29:57: core_temps:
27.0
29.0
28.0
28.0
2018-10-03 20:29:57: core_temp = 27.0 C
2018-10-03 20:29:57: core_temp = 29.0 C
2018-10-03 20:29:57: core_temp = 28.0 C
2018-10-03 20:29:57: core_temp = 28.0 C
2018-10-03 20:29:57: CPU Temp: 29.0
2018-10-03 20:29:57: CPU Fan: low
2018-10-03 20:29:58: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:29:58: core_temp = 28.0 C
2018-10-03 20:29:58: core_temp = 28.0 C
2018-10-03 20:29:58: core_temp = 27.0 C
2018-10-03 20:29:58: core_temp = 27.0 C
2018-10-03 20:29:58: CPU Temp: 28.0
2018-10-03 20:29:58: CPU Fan: low
2018-10-03 20:29:59: core_temps:
28.0
28.0
26.0
27.0
2018-10-03 20:29:59: core_temp = 28.0 C
2018-10-03 20:29:59: core_temp = 28.0 C
2018-10-03 20:29:59: core_temp = 26.0 C
2018-10-03 20:29:59: core_temp = 27.0 C
2018-10-03 20:29:59: CPU Temp: 28.0
2018-10-03 20:29:59: CPU Fan: low
2018-10-03 20:30:00: core_temps:
27.0
28.0
28.0
28.0
2018-10-03 20:30:00: core_temp = 27.0 C
2018-10-03 20:30:00: core_temp = 28.0 C
2018-10-03 20:30:00: core_temp = 28.0 C
2018-10-03 20:30:00: core_temp = 28.0 C
2018-10-03 20:30:00: CPU Temp: 28.0
2018-10-03 20:30:00: CPU Fan: low
2018-10-03 20:30:01: core_temps:
28.0
28.0
26.0
27.0
2018-10-03 20:30:01: core_temp = 28.0 C
2018-10-03 20:30:01: core_temp = 28.0 C
2018-10-03 20:30:01: core_temp = 26.0 C
2018-10-03 20:30:01: core_temp = 27.0 C
2018-10-03 20:30:01: CPU Temp: 28.0
2018-10-03 20:30:01: CPU Fan: low
2018-10-03 20:30:02: core_temps:
28.0
28.0
26.0
26.0
2018-10-03 20:30:02: core_temp = 28.0 C
2018-10-03 20:30:02: core_temp = 28.0 C
2018-10-03 20:30:02: core_temp = 26.0 C
2018-10-03 20:30:02: core_temp = 26.0 C
2018-10-03 20:30:02: CPU Temp: 28.0
2018-10-03 20:30:02: CPU Fan: low
2018-10-03 20:30:02: fan_speed = 3100
2018-10-03 20:30:02: CPU Fan speed: 3100 RPM
2018-10-03 20:30:03: fan_speed = 1100
2018-10-03 20:30:03: HD Fan speed: 1100 RPM
2018-10-03 20:30:03: CPU fan speed should be low, but 3100 > 2000.
2018-10-03 20:30:03: bmc_fail_count:  1, bmc_fail_threshold: 1
2018-10-03 20:30:03: Fan speeds are not where they should be, will try again.
2018-10-03 20:30:03: fanmode: full = 1
2018-10-03 20:30:03: Setting fan mode to 1 (full)
2018-10-03 20:30:08: Setting Zone 0 duty cycle to 40%
2018-10-03 20:30:08: Setting Zone 1 duty cycle to 31%
2018-10-03 20:30:09: core_temps:
29.0
29.0
26.0
26.0
2018-10-03 20:30:09: core_temp = 29.0 C
2018-10-03 20:30:09: core_temp = 29.0 C
2018-10-03 20:30:09: core_temp = 26.0 C
2018-10-03 20:30:09: core_temp = 26.0 C
2018-10-03 20:30:09: CPU Temp: 29.0
2018-10-03 20:30:09: CPU Fan: low
2018-10-03 20:30:10: core_temps:
27.0
29.0
27.0
27.0
2018-10-03 20:30:10: core_temp = 27.0 C
2018-10-03 20:30:10: core_temp = 29.0 C
2018-10-03 20:30:10: core_temp = 27.0 C
2018-10-03 20:30:10: core_temp = 27.0 C
2018-10-03 20:30:10: CPU Temp: 29.0
2018-10-03 20:30:10: CPU Fan: low
2018-10-03 20:30:11: core_temps:
27.0
27.0
27.0
27.0
2018-10-03 20:30:11: core_temp = 27.0 C
2018-10-03 20:30:11: core_temp = 27.0 C
2018-10-03 20:30:11: core_temp = 27.0 C
2018-10-03 20:30:11: core_temp = 27.0 C
2018-10-03 20:30:11: CPU Temp: 27.0
2018-10-03 20:30:11: CPU Fan: low
2018-10-03 20:30:12: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:30:12: core_temp = 28.0 C
2018-10-03 20:30:12: core_temp = 28.0 C
2018-10-03 20:30:12: core_temp = 27.0 C
2018-10-03 20:30:12: core_temp = 27.0 C
2018-10-03 20:30:12: CPU Temp: 28.0
2018-10-03 20:30:12: CPU Fan: low
2018-10-03 20:30:13: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:30:13: core_temp = 28.0 C
2018-10-03 20:30:13: core_temp = 28.0 C
2018-10-03 20:30:13: core_temp = 27.0 C
2018-10-03 20:30:13: core_temp = 27.0 C
2018-10-03 20:30:13: CPU Temp: 28.0
2018-10-03 20:30:13: CPU Fan: low
2018-10-03 20:30:14: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:30:14: core_temp = 28.0 C
2018-10-03 20:30:14: core_temp = 28.0 C
2018-10-03 20:30:14: core_temp = 27.0 C
2018-10-03 20:30:14: core_temp = 27.0 C
2018-10-03 20:30:14: CPU Temp: 28.0
2018-10-03 20:30:14: CPU Fan: low
2018-10-03 20:30:15: core_temps:
28.0
28.0
25.0
25.0
2018-10-03 20:30:15: core_temp = 28.0 C
2018-10-03 20:30:15: core_temp = 28.0 C
2018-10-03 20:30:15: core_temp = 25.0 C
2018-10-03 20:30:15: core_temp = 25.0 C
2018-10-03 20:30:15: CPU Temp: 28.0
2018-10-03 20:30:15: CPU Fan: low
2018-10-03 20:30:16: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:30:16: core_temp = 28.0 C
2018-10-03 20:30:16: core_temp = 28.0 C
2018-10-03 20:30:16: core_temp = 27.0 C
2018-10-03 20:30:16: core_temp = 27.0 C
2018-10-03 20:30:16: CPU Temp: 28.0
2018-10-03 20:30:16: CPU Fan: low
2018-10-03 20:30:17: core_temps:
28.0
28.0
26.0
26.0
2018-10-03 20:30:17: core_temp = 28.0 C
2018-10-03 20:30:17: core_temp = 28.0 C
2018-10-03 20:30:17: core_temp = 26.0 C
2018-10-03 20:30:17: core_temp = 26.0 C
2018-10-03 20:30:17: CPU Temp: 28.0
2018-10-03 20:30:17: CPU Fan: low
2018-10-03 20:30:18: core_temps:
28.0
28.0
27.0
28.0
2018-10-03 20:30:18: core_temp = 28.0 C
2018-10-03 20:30:18: core_temp = 28.0 C
2018-10-03 20:30:18: core_temp = 27.0 C
2018-10-03 20:30:18: core_temp = 28.0 C
2018-10-03 20:30:18: CPU Temp: 28.0
2018-10-03 20:30:18: CPU Fan: low
2018-10-03 20:30:19: core_temps:
26.0
28.0
27.0
27.0
2018-10-03 20:30:19: core_temp = 26.0 C
2018-10-03 20:30:19: core_temp = 28.0 C
2018-10-03 20:30:19: core_temp = 27.0 C
2018-10-03 20:30:19: core_temp = 27.0 C
2018-10-03 20:30:19: CPU Temp: 28.0
2018-10-03 20:30:19: CPU Fan: low
2018-10-03 20:30:20: fan_speed = 3100
2018-10-03 20:30:20: CPU Fan speed: 3100 RPM
2018-10-03 20:30:20: fan_speed = 1100
2018-10-03 20:30:20: HD Fan speed: 1100 RPM
2018-10-03 20:30:20: CPU fan speed should be low, but 3100 > 2000.
2018-10-03 20:30:20: bmc_fail_count:  2, bmc_fail_threshold: 1
2018-10-03 20:30:20: Fan speeds are still not where they should be after 2 attempts, will reboot BMC.
2018-10-03 20:30:20: fanmode: full = 1
2018-10-03 20:30:20: Setting fan mode to 1 (full)
2018-10-03 20:30:25: Resetting BMC
2018-10-03 20:30:26: core_temps:
29.0
29.0
27.0
27.0
2018-10-03 20:30:26: core_temp = 29.0 C
2018-10-03 20:30:26: core_temp = 29.0 C
2018-10-03 20:30:26: core_temp = 27.0 C
2018-10-03 20:30:26: core_temp = 27.0 C
2018-10-03 20:30:26: CPU Temp: 29.0
2018-10-03 20:30:26: CPU Fan: low
2018-10-03 20:30:27: core_temps:
27.0
28.0
27.0
27.0
2018-10-03 20:30:27: core_temp = 27.0 C
2018-10-03 20:30:27: core_temp = 28.0 C
2018-10-03 20:30:27: core_temp = 27.0 C
2018-10-03 20:30:27: core_temp = 27.0 C
2018-10-03 20:30:27: CPU Temp: 28.0
2018-10-03 20:30:27: CPU Fan: low
2018-10-03 20:30:28: core_temps:
29.0
29.0
26.0
26.0
2018-10-03 20:30:28: core_temp = 29.0 C
2018-10-03 20:30:28: core_temp = 29.0 C
2018-10-03 20:30:28: core_temp = 26.0 C
2018-10-03 20:30:28: core_temp = 26.0 C
2018-10-03 20:30:28: CPU Temp: 29.0
2018-10-03 20:30:28: CPU Fan: low
2018-10-03 20:30:29: core_temps:
29.0
29.0
27.0
27.0
2018-10-03 20:30:29: core_temp = 29.0 C
2018-10-03 20:30:29: core_temp = 29.0 C
2018-10-03 20:30:29: core_temp = 27.0 C
2018-10-03 20:30:29: core_temp = 27.0 C
2018-10-03 20:30:29: CPU Temp: 29.0
2018-10-03 20:30:29: CPU Fan: low
2018-10-03 20:30:30: core_temps:
29.0
29.0
27.0
27.0
2018-10-03 20:30:30: core_temp = 29.0 C
2018-10-03 20:30:30: core_temp = 29.0 C
2018-10-03 20:30:30: core_temp = 27.0 C
2018-10-03 20:30:30: core_temp = 27.0 C
2018-10-03 20:30:30: CPU Temp: 29.0
2018-10-03 20:30:30: CPU Fan: low
2018-10-03 20:30:31: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:30:31: core_temp = 28.0 C
2018-10-03 20:30:31: core_temp = 28.0 C
2018-10-03 20:30:31: core_temp = 27.0 C
2018-10-03 20:30:31: core_temp = 27.0 C
2018-10-03 20:30:31: CPU Temp: 28.0
2018-10-03 20:30:31: CPU Fan: low
2018-10-03 20:30:32: core_temps:
29.0
29.0
27.0
27.0
2018-10-03 20:30:32: core_temp = 29.0 C
2018-10-03 20:30:32: core_temp = 29.0 C
2018-10-03 20:30:32: core_temp = 27.0 C
2018-10-03 20:30:32: core_temp = 27.0 C
2018-10-03 20:30:32: CPU Temp: 29.0
2018-10-03 20:30:32: CPU Fan: low
2018-10-03 20:30:33: core_temps:
29.0
29.0
27.0
27.0
2018-10-03 20:30:33: core_temp = 29.0 C
2018-10-03 20:30:33: core_temp = 29.0 C
2018-10-03 20:30:33: core_temp = 27.0 C
2018-10-03 20:30:33: core_temp = 27.0 C
2018-10-03 20:30:33: CPU Temp: 29.0
2018-10-03 20:30:33: CPU Fan: low
2018-10-03 20:30:34: core_temps:
27.0
27.0
26.0
27.0
2018-10-03 20:30:34: core_temp = 27.0 C
2018-10-03 20:30:34: core_temp = 27.0 C
2018-10-03 20:30:34: core_temp = 26.0 C
2018-10-03 20:30:34: core_temp = 27.0 C
2018-10-03 20:30:34: CPU Temp: 27.0
2018-10-03 20:30:34: CPU Fan: low
2018-10-03 20:30:35: core_temps:
28.0
28.0
26.0
26.0
2018-10-03 20:30:35: core_temp = 28.0 C
2018-10-03 20:30:35: core_temp = 28.0 C
2018-10-03 20:30:35: core_temp = 26.0 C
2018-10-03 20:30:35: core_temp = 26.0 C
2018-10-03 20:30:35: CPU Temp: 28.0
2018-10-03 20:30:35: CPU Fan: low
2018-10-03 20:30:36: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:30:36: core_temp = 28.0 C
2018-10-03 20:30:36: core_temp = 28.0 C
2018-10-03 20:30:36: core_temp = 27.0 C
2018-10-03 20:30:36: core_temp = 27.0 C
2018-10-03 20:30:36: CPU Temp: 28.0
2018-10-03 20:30:36: CPU Fan: low
2018-10-03 20:30:37: fan_speed = 3100
2018-10-03 20:30:37: CPU Fan speed: 3100 RPM
2018-10-03 20:30:37: fan_speed = 1100
2018-10-03 20:30:37: HD Fan speed: 1100 RPM
2018-10-03 20:30:37: CPU fan speed should be low, but 3100 > 2000.
2018-10-03 20:30:37: bmc_fail_count:  1, bmc_fail_threshold: 1
2018-10-03 20:30:37: Fan speeds are not where they should be, will try again.
2018-10-03 20:30:37: fanmode: full = 1
2018-10-03 20:30:37: Setting fan mode to 1 (full)
2018-10-03 20:30:42: Setting Zone 0 duty cycle to 40%
2018-10-03 20:30:42: Setting Zone 1 duty cycle to 31%
2018-10-03 20:30:43: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:30:43: core_temp = 28.0 C
2018-10-03 20:30:43: core_temp = 28.0 C
2018-10-03 20:30:43: core_temp = 27.0 C
2018-10-03 20:30:43: core_temp = 27.0 C
2018-10-03 20:30:43: CPU Temp: 28.0
2018-10-03 20:30:43: CPU Fan: low
2018-10-03 20:30:44: core_temps:
27.0
28.0
28.0
28.0
2018-10-03 20:30:44: core_temp = 27.0 C
2018-10-03 20:30:44: core_temp = 28.0 C
2018-10-03 20:30:44: core_temp = 28.0 C
2018-10-03 20:30:44: core_temp = 28.0 C
2018-10-03 20:30:44: CPU Temp: 28.0
2018-10-03 20:30:44: CPU Fan: low
2018-10-03 20:30:46: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:30:46: core_temp = 28.0 C
2018-10-03 20:30:46: core_temp = 28.0 C
2018-10-03 20:30:46: core_temp = 27.0 C
2018-10-03 20:30:46: core_temp = 27.0 C
2018-10-03 20:30:46: CPU Temp: 28.0
2018-10-03 20:30:46: CPU Fan: low
2018-10-03 20:30:47: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:30:47: core_temp = 28.0 C
2018-10-03 20:30:47: core_temp = 28.0 C
2018-10-03 20:30:47: core_temp = 27.0 C
2018-10-03 20:30:47: core_temp = 27.0 C
2018-10-03 20:30:47: CPU Temp: 28.0
2018-10-03 20:30:47: CPU Fan: low
2018-10-03 20:30:48: core_temps:
29.0
29.0
27.0
27.0
2018-10-03 20:30:48: core_temp = 29.0 C
2018-10-03 20:30:48: core_temp = 29.0 C
2018-10-03 20:30:48: core_temp = 27.0 C
2018-10-03 20:30:48: core_temp = 27.0 C
2018-10-03 20:30:48: CPU Temp: 29.0
2018-10-03 20:30:48: CPU Fan: low
2018-10-03 20:30:49: core_temps:
28.0
28.0
27.0
28.0
2018-10-03 20:30:49: core_temp = 28.0 C
2018-10-03 20:30:49: core_temp = 28.0 C
2018-10-03 20:30:49: core_temp = 27.0 C
2018-10-03 20:30:49: core_temp = 28.0 C
2018-10-03 20:30:49: CPU Temp: 28.0
2018-10-03 20:30:49: CPU Fan: low
2018-10-03 20:30:50: core_temps:
29.0
29.0
26.0
26.0
2018-10-03 20:30:50: core_temp = 29.0 C
2018-10-03 20:30:50: core_temp = 29.0 C
2018-10-03 20:30:50: core_temp = 26.0 C
2018-10-03 20:30:50: core_temp = 26.0 C
2018-10-03 20:30:50: CPU Temp: 29.0
2018-10-03 20:30:50: CPU Fan: low
2018-10-03 20:30:51: core_temps:
29.0
29.0
27.0
27.0
2018-10-03 20:30:51: core_temp = 29.0 C
2018-10-03 20:30:51: core_temp = 29.0 C
2018-10-03 20:30:51: core_temp = 27.0 C
2018-10-03 20:30:51: core_temp = 27.0 C
2018-10-03 20:30:51: CPU Temp: 29.0
2018-10-03 20:30:51: CPU Fan: low
2018-10-03 20:30:52: core_temps:
27.0
27.0
27.0
27.0
2018-10-03 20:30:52: core_temp = 27.0 C
2018-10-03 20:30:52: core_temp = 27.0 C
2018-10-03 20:30:52: core_temp = 27.0 C
2018-10-03 20:30:52: core_temp = 27.0 C
2018-10-03 20:30:52: CPU Temp: 27.0
2018-10-03 20:30:52: CPU Fan: low
2018-10-03 20:30:53: core_temps:
29.0
29.0
26.0
26.0
2018-10-03 20:30:53: core_temp = 29.0 C
2018-10-03 20:30:53: core_temp = 29.0 C
2018-10-03 20:30:53: core_temp = 26.0 C
2018-10-03 20:30:53: core_temp = 26.0 C
2018-10-03 20:30:53: CPU Temp: 29.0
2018-10-03 20:30:53: CPU Fan: low
2018-10-03 20:30:53: fan_speed = 3100
2018-10-03 20:30:53: CPU Fan speed: 3100 RPM
2018-10-03 20:30:54: fan_speed = 1100
2018-10-03 20:30:54: HD Fan speed: 1100 RPM
2018-10-03 20:30:54: CPU fan speed should be low, but 3100 > 2000.
2018-10-03 20:30:54: bmc_fail_count:  2, bmc_fail_threshold: 1
2018-10-03 20:30:54: Fan speeds are still not where they should be after 2 attempts, will reboot BMC.
2018-10-03 20:30:54: fanmode: full = 1
2018-10-03 20:30:54: Setting fan mode to 1 (full)
2018-10-03 20:30:59: Resetting BMC
2018-10-03 20:31:00: core_temps:
29.0
29.0
36.0
36.0
2018-10-03 20:31:00: core_temp = 29.0 C
2018-10-03 20:31:00: core_temp = 29.0 C
2018-10-03 20:31:00: core_temp = 36.0 C
2018-10-03 20:31:00: core_temp = 36.0 C
2018-10-03 20:31:00: CPU Temp: 36.0
2018-10-03 20:31:00: CPU Fan: low
2018-10-03 20:31:01: core_temps:
30.0
30.0
36.0
36.0
2018-10-03 20:31:01: core_temp = 30.0 C
2018-10-03 20:31:01: core_temp = 30.0 C
2018-10-03 20:31:01: core_temp = 36.0 C
2018-10-03 20:31:01: core_temp = 36.0 C
2018-10-03 20:31:01: CPU Temp: 36.0
2018-10-03 20:31:01: CPU Fan: low
2018-10-03 20:31:02: core_temps:
28.0
28.0
28.0
28.0
2018-10-03 20:31:02: core_temp = 28.0 C
2018-10-03 20:31:02: core_temp = 28.0 C
2018-10-03 20:31:02: core_temp = 28.0 C
2018-10-03 20:31:02: core_temp = 28.0 C
2018-10-03 20:31:02: CPU Temp: 28.0
2018-10-03 20:31:02: CPU Fan: low
2018-10-03 20:31:03: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:31:03: core_temp = 28.0 C
2018-10-03 20:31:03: core_temp = 28.0 C
2018-10-03 20:31:03: core_temp = 27.0 C
2018-10-03 20:31:03: core_temp = 27.0 C
2018-10-03 20:31:03: CPU Temp: 28.0
2018-10-03 20:31:03: CPU Fan: low
2018-10-03 20:31:04: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:31:04: core_temp = 28.0 C
2018-10-03 20:31:04: core_temp = 28.0 C
2018-10-03 20:31:04: core_temp = 27.0 C
2018-10-03 20:31:04: core_temp = 27.0 C
2018-10-03 20:31:04: CPU Temp: 28.0
2018-10-03 20:31:04: CPU Fan: low
2018-10-03 20:31:05: core_temps:
28.0
28.0
28.0
28.0
2018-10-03 20:31:05: core_temp = 28.0 C
2018-10-03 20:31:05: core_temp = 28.0 C
2018-10-03 20:31:05: core_temp = 28.0 C
2018-10-03 20:31:05: core_temp = 28.0 C
2018-10-03 20:31:05: CPU Temp: 28.0
2018-10-03 20:31:05: CPU Fan: low
2018-10-03 20:31:06: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:31:06: core_temp = 28.0 C
2018-10-03 20:31:06: core_temp = 28.0 C
2018-10-03 20:31:06: core_temp = 27.0 C
2018-10-03 20:31:06: core_temp = 27.0 C
2018-10-03 20:31:06: CPU Temp: 28.0
2018-10-03 20:31:06: CPU Fan: low
2018-10-03 20:31:07: core_temps:
29.0
29.0
25.0
25.0
2018-10-03 20:31:07: core_temp = 29.0 C
2018-10-03 20:31:07: core_temp = 29.0 C
2018-10-03 20:31:07: core_temp = 25.0 C
2018-10-03 20:31:07: core_temp = 25.0 C
2018-10-03 20:31:07: CPU Temp: 29.0
2018-10-03 20:31:07: CPU Fan: low
2018-10-03 20:31:08: core_temps:
29.0
29.0
26.0
26.0
2018-10-03 20:31:08: core_temp = 29.0 C
2018-10-03 20:31:08: core_temp = 29.0 C
2018-10-03 20:31:08: core_temp = 26.0 C
2018-10-03 20:31:08: core_temp = 26.0 C
2018-10-03 20:31:08: CPU Temp: 29.0
2018-10-03 20:31:08: CPU Fan: low
2018-10-03 20:31:09: core_temps:
28.0
28.0
26.0
28.0
2018-10-03 20:31:09: core_temp = 28.0 C
2018-10-03 20:31:09: core_temp = 28.0 C
2018-10-03 20:31:09: core_temp = 26.0 C
2018-10-03 20:31:09: core_temp = 28.0 C
2018-10-03 20:31:09: CPU Temp: 28.0
2018-10-03 20:31:09: CPU Fan: low
2018-10-03 20:31:10: core_temps:
27.0
27.0
27.0
27.0
2018-10-03 20:31:10: core_temp = 27.0 C
2018-10-03 20:31:10: core_temp = 27.0 C
2018-10-03 20:31:10: core_temp = 27.0 C
2018-10-03 20:31:10: core_temp = 27.0 C
2018-10-03 20:31:10: CPU Temp: 27.0
2018-10-03 20:31:10: CPU Fan: low
2018-10-03 20:31:11: fan_speed = 3100
2018-10-03 20:31:11: CPU Fan speed: 3100 RPM
2018-10-03 20:31:11: fan_speed = 1100
2018-10-03 20:31:11: HD Fan speed: 1100 RPM
2018-10-03 20:31:11: CPU fan speed should be low, but 3100 > 2000.
2018-10-03 20:31:11: bmc_fail_count:  1, bmc_fail_threshold: 1
2018-10-03 20:31:11: Fan speeds are not where they should be, will try again.
2018-10-03 20:31:11: fanmode: full = 1
2018-10-03 20:31:11: Setting fan mode to 1 (full)
2018-10-03 20:31:16: Setting Zone 0 duty cycle to 40%
2018-10-03 20:31:16: Setting Zone 1 duty cycle to 31%
2018-10-03 20:31:17: core_temps:
29.0
29.0
26.0
26.0
2018-10-03 20:31:17: core_temp = 29.0 C
2018-10-03 20:31:17: core_temp = 29.0 C
2018-10-03 20:31:17: core_temp = 26.0 C
2018-10-03 20:31:17: core_temp = 26.0 C
2018-10-03 20:31:17: CPU Temp: 29.0
2018-10-03 20:31:17: CPU Fan: low
2018-10-03 20:31:18: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:31:18: core_temp = 28.0 C
2018-10-03 20:31:18: core_temp = 28.0 C
2018-10-03 20:31:18: core_temp = 27.0 C
2018-10-03 20:31:18: core_temp = 27.0 C
2018-10-03 20:31:18: CPU Temp: 28.0
2018-10-03 20:31:18: CPU Fan: low
2018-10-03 20:31:19: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:31:19: core_temp = 28.0 C
2018-10-03 20:31:19: core_temp = 28.0 C
2018-10-03 20:31:19: core_temp = 27.0 C
2018-10-03 20:31:19: core_temp = 27.0 C
2018-10-03 20:31:19: CPU Temp: 28.0
2018-10-03 20:31:19: CPU Fan: low
2018-10-03 20:31:20: core_temps:
28.0
28.0
26.0
26.0
2018-10-03 20:31:20: core_temp = 28.0 C
2018-10-03 20:31:20: core_temp = 28.0 C
2018-10-03 20:31:20: core_temp = 26.0 C
2018-10-03 20:31:20: core_temp = 26.0 C
2018-10-03 20:31:20: CPU Temp: 28.0
2018-10-03 20:31:20: CPU Fan: low
2018-10-03 20:31:21: core_temps:
28.0
28.0
27.0
27.0
2018-10-03 20:31:21: core_temp = 28.0 C
2018-10-03 20:31:21: core_temp = 28.0 C
2018-10-03 20:31:21: core_temp = 27.0 C
2018-10-03 20:31:21: core_temp = 27.0 C
2018-10-03 20:31:21: CPU Temp: 28.0
2018-10-03 20:31:21: CPU Fan: low
^C
root@NAS:/mnt/Storage/Scripts #



Thanks for your help
 

JRD

Dabbler
Joined
Apr 21, 2018
Messages
42
@Kevin Horton Unfortunately, I do not know enough about the script to get any further. Can you help, please?
 
Joined
Dec 2, 2015
Messages
730
@Kevin Horton Unfortunately, I do not know enough about the script to get any further. Can you help, please?
I missed your response on the 3rd. Sorry about that.

The script seems to be picking up the wrong CPU fan rpm. The question is why.

One possibility: Search in your copy of the script for a line that starts with:

$cpu_fan_header =

Confirm that you have FAN1 specified there. If not, change it and let us know if that helps. If not, report back and I'll dig some more.
 

JRD

Dabbler
Joined
Apr 21, 2018
Messages
42
I missed your response on the 3rd. Sorry about that.

The script seems to be picking up the wrong CPU fan rpm. The question is why.

One possibility: Search in your copy of the script for a line that starts with:

$cpu_fan_header =

Confirm that you have FAN1 specified there. If not, change it and let us know if that helps. If not, report back and I'll dig some more.

Thanks for getting back to me.

I've got:
$cpu_fan_header = "FAN1";
 
Joined
Dec 2, 2015
Messages
730
I need to trace through the code to figure out what else could be going off the rails. My next two days are particularly crazy, so be patient.
 
Joined
Dec 2, 2015
Messages
730
I wonder if the CPU fan speed may occasionally go too low, below the lower thresholds. In that case the BMC would likely set it to full speed. Then the script would detect the fan was at the wrong speed, and reset the BMC. Try lowering the FAN1 thresholds to lower values.
 

Stux

MVP
Joined
Jun 2, 2016
Messages
4,367
I wonder if the CPU fan speed may occasionally go too low, below the lower thresholds. In that case the BMC would likely set it to full speed. Then the script would detect the fan was at the wrong speed, and reset the BMC. Try lowering the FAN1 thresholds to lower values.
I use 0 RPM for the lowest thresholds with my Noctuas.
 

JRD

Dabbler
Joined
Apr 21, 2018
Messages
42
I wonder if the CPU fan speed may occasionally go too low, below the lower thresholds. In that case the BMC would likely set it to full speed. Then the script would detect the fan was at the wrong speed, and reset the BMC. Try lowering the FAN1 thresholds to lower values.
Sorry chaps, for some reason I didn't get a prompt that you had posted.

Thanks also Stux, I lowered FAN1 thresholds and this is the result:
Code:
root@NAS:/mnt/Storage/Scripts # ipmitool sensor thresh FAN1 lower 0 100 200
Locating sensor record 'FAN1'...
Setting sensor "FAN1" Lower Non-Recoverable threshold to 0.000
Setting sensor "FAN1" Lower Critical threshold to 100.000
Setting sensor "FAN1" Lower Non-Critical threshold to 200.000
root@NAS:/mnt/Storage/Scripts # ipmitool sensor
CPU Temp		 | 23.000	 | degrees C  | ok	| 0.000	 | 0.000	 | 0.000	 | 95.000	| 100.000   | 100.000
PCH Temp		 | 28.000	 | degrees C  | ok	| 0.000	 | 5.000	 | 16.000	| 90.000	| 95.000	| 100.000
System Temp	  | 20.000	 | degrees C  | ok	| -10.000   | -5.000	| 0.000	 | 80.000	| 85.000	| 90.000
Peripheral Temp  | 23.000	 | degrees C  | ok	| -14.000   | -9.000	| -4.000	| 76.000	| 81.000	| 86.000
VcpuVRM Temp	 | 22.000	 | degrees C  | ok	| -5.000	| 0.000	 | 5.000	 | 95.000	| 100.000   | 105.000
DIMMA1 Temp	  | na		 |			| na	| na		| na		| na		| na		| na		| na
DIMMA2 Temp	  | 21.000	 | degrees C  | ok	| -5.000	| 0.000	 | 5.000	 | 80.000	| 85.000	| 90.000
DIMMB1 Temp	  | na		 |			| na	| na		| na		| na		| na		| na		| na
DIMMB2 Temp	  | 20.000	 | degrees C  | ok	| -5.000	| 0.000	 | 5.000	 | 80.000	| 85.000	| 90.000
FAN1			 | 1000.000   | RPM		| ok	| 0.000	 | 100.000   | 200.000   | 3200.000  | 3300.000  | 3400.000
FAN2			 | 400.000	| RPM		| nc	| 200.000   | 300.000   | 400.000   | 2400.000  | 2500.000  | 2600.000
FAN3			 | 400.000	| RPM		| nc	| 200.000   | 300.000   | 400.000   | 2400.000  | 2500.000  | 2600.000
FAN4			 | 400.000	| RPM		| nc	| 200.000   | 300.000   | 400.000   | 2400.000  | 2500.000  | 2600.000
FANA			 | 700.000	| RPM		| nc	| 500.000   | 600.000   | 700.000   | 1300.000  | 1400.000  | 1500.000
12V			  | 12.448	 | Volts	  | ok	| 10.144	| 10.272	| 10.784	| 12.960	| 13.280	| 13.408
5VCC			 | 5.000	  | Volts	  | ok	| 4.246	 | 4.298	 | 4.480	 | 5.390	 | 5.546	 | 5.598
3.3VCC		   | 3.384	  | Volts	  | ok	| 2.789	 | 2.823	 | 2.959	 | 3.554	 | 3.656	 | 3.690
VBAT			 | 2.972	  | Volts	  | ok	| 2.384	 | 2.496	 | 2.580	 | 3.476	 | 3.588	 | 3.672
VCPU			 | 1.039	  | Volts	  | ok	| 0.076	 | 0.076	 | 0.076	 | 1.516	 | 1.516	 | 1.516
VDIMMAB		  | 1.200	  | Volts	  | ok	| 0.948	 | 0.975	 | 1.047	 | 1.344	 | 1.425	 | 1.443
5VSB			 | 4.974	  | Volts	  | ok	| 4.246	 | 4.376	 | 4.480	 | 5.390	 | 5.546	 | 5.598
3.3VSB		   | 3.231	  | Volts	  | ok	| 2.789	 | 2.891	 | 2.959	 | 3.554	 | 3.656	 | 3.690
VBMC 1.2V		| 1.209	  | Volts	  | ok	| 1.020	 | 1.047	 | 1.092	 | 1.344	 | 1.371	 | 1.398
VPCH 1.0V		| 1.007	  | Volts	  | ok	| 0.872	 | 0.890	 | 0.917	 | 1.043	 | 1.052	 | 1.070
Chassis Intru	| 0x0		| discrete   | 0x0000| na		| na		| na		| na		| na		| na
root@NAS:/mnt/Storage/Scripts # cd /mnt/Storage/Scripts
root@NAS:/mnt/Storage/Scripts # ls
PID_fan_control.pl
root@NAS:/mnt/Storage/Scripts # ./PID_fan_control.pl
2018-11-01 20:31:35: ada0 ada1 ada2 ada3 ada4 ada5 ada6 da0 da1
2018-11-01 20:31:35: ada0
2018-11-01 20:31:35: ada1
2018-11-01 20:31:35: ada2
2018-11-01 20:31:35: ada3
2018-11-01 20:31:35: ada4
2018-11-01 20:31:35: ada5
2018-11-01 20:31:35: ada6
2018-11-01 20:31:35: da0
2018-11-01 20:31:35: da1
2018-11-01 20:31:35: fanmode: full = 1
2018-11-01 20:31:35: Setting fan mode to 1 (full)
2018-11-01 20:31:40: core_temps:
26.0
26.0
31.0
31.0
2018-11-01 20:31:40: core_temp = 26.0 C
2018-11-01 20:31:40: core_temp = 26.0 C
2018-11-01 20:31:40: core_temp = 31.0 C
2018-11-01 20:31:40: core_temp = 31.0 C
2018-11-01 20:31:40: CPU Temp: 31.0
2018-11-01 20:31:40: CPU Temp: 31.0 <= 35, CPU Fan going low.
2018-11-01 20:31:40: CPU Fan: low
2018-11-01 20:31:40: CPU Fan changing... (low)
2018-11-01 20:31:40: Setting Zone 0 duty cycle to 40%
2018-11-01 20:31:40: ada0 ada1 ada2 ada3 ada4 ada5 ada6 da0 da1
2018-11-01 20:31:40: ada0
2018-11-01 20:31:40: ada1
2018-11-01 20:31:40: ada2
2018-11-01 20:31:40: ada3
2018-11-01 20:31:40: ada4
2018-11-01 20:31:40: ada5
2018-11-01 20:31:40: ada6
2018-11-01 20:31:40: da0
2018-11-01 20:31:40: da1
2018-11-01 20:31:41: temperature error = -13.8571428571429
2018-11-01 20:31:41: PID corrections are P = -110.857142857143, I = 0 and D = 0
2018-11-01 20:31:41: PID control new duty cycle is 30%
2018-11-01 20:31:41: Setting Zone 1 duty cycle to 30%
2018-11-01 20:31:41: core_temps:
30.0
30.0
26.0
26.0
2018-11-01 20:31:41: core_temp = 30.0 C
2018-11-01 20:31:41: core_temp = 30.0 C
2018-11-01 20:31:41: core_temp = 26.0 C
2018-11-01 20:31:41: core_temp = 26.0 C
2018-11-01 20:31:41: CPU Temp: 30.0
2018-11-01 20:31:42: core_temps:
27.0
27.0
24.0
24.0
2018-11-01 20:31:42: core_temp = 27.0 C
2018-11-01 20:31:42: core_temp = 27.0 C
2018-11-01 20:31:42: core_temp = 24.0 C
2018-11-01 20:31:42: core_temp = 24.0 C
2018-11-01 20:31:42: CPU Temp: 27.0
2018-11-01 20:31:42: CPU Fan: low
2018-11-01 20:31:43: core_temps:
26.0
26.0
24.0
24.0
2018-11-01 20:31:43: core_temp = 26.0 C
2018-11-01 20:31:43: core_temp = 26.0 C
2018-11-01 20:31:43: core_temp = 24.0 C
2018-11-01 20:31:43: core_temp = 24.0 C
2018-11-01 20:31:43: CPU Temp: 26.0
2018-11-01 20:31:43: CPU Fan: low
2018-11-01 20:31:44: core_temps:
25.0
25.0
24.0
24.0
2018-11-01 20:31:44: core_temp = 25.0 C
2018-11-01 20:31:44: core_temp = 25.0 C
2018-11-01 20:31:44: core_temp = 24.0 C
2018-11-01 20:31:44: core_temp = 24.0 C
2018-11-01 20:31:44: CPU Temp: 25.0
2018-11-01 20:31:44: CPU Fan: low
2018-11-01 20:31:45: core_temps:
26.0
26.0
24.0
24.0
2018-11-01 20:31:45: core_temp = 26.0 C
2018-11-01 20:31:45: core_temp = 26.0 C
2018-11-01 20:31:45: core_temp = 24.0 C
2018-11-01 20:31:45: core_temp = 24.0 C
2018-11-01 20:31:45: CPU Temp: 26.0
2018-11-01 20:31:45: CPU Fan: low
2018-11-01 20:31:46: core_temps:
25.0
25.0
24.0
24.0
2018-11-01 20:31:46: core_temp = 25.0 C
2018-11-01 20:31:46: core_temp = 25.0 C
2018-11-01 20:31:46: core_temp = 24.0 C
2018-11-01 20:31:46: core_temp = 24.0 C
2018-11-01 20:31:46: CPU Temp: 25.0
2018-11-01 20:31:46: CPU Fan: low
2018-11-01 20:31:47: core_temps:
27.0
27.0
24.0
24.0
2018-11-01 20:31:47: core_temp = 27.0 C
2018-11-01 20:31:47: core_temp = 27.0 C
2018-11-01 20:31:47: core_temp = 24.0 C
2018-11-01 20:31:47: core_temp = 24.0 C
2018-11-01 20:31:47: CPU Temp: 27.0
2018-11-01 20:31:47: CPU Fan: low
2018-11-01 20:31:48: core_temps:
26.0
26.0
24.0
24.0
2018-11-01 20:31:48: core_temp = 26.0 C
2018-11-01 20:31:48: core_temp = 26.0 C
2018-11-01 20:31:48: core_temp = 24.0 C
2018-11-01 20:31:48: core_temp = 24.0 C
2018-11-01 20:31:48: CPU Temp: 26.0
2018-11-01 20:31:48: CPU Fan: low
2018-11-01 20:31:49: core_temps:
26.0
26.0
24.0
24.0
2018-11-01 20:31:49: core_temp = 26.0 C
2018-11-01 20:31:49: core_temp = 26.0 C
2018-11-01 20:31:49: core_temp = 24.0 C
2018-11-01 20:31:49: core_temp = 24.0 C
2018-11-01 20:31:49: CPU Temp: 26.0
2018-11-01 20:31:49: CPU Fan: low
2018-11-01 20:31:51: core_temps:
27.0
27.0
24.0
24.0
2018-11-01 20:31:51: core_temp = 27.0 C
2018-11-01 20:31:51: core_temp = 27.0 C
2018-11-01 20:31:51: core_temp = 24.0 C
2018-11-01 20:31:51: core_temp = 24.0 C
2018-11-01 20:31:51: CPU Temp: 27.0
2018-11-01 20:31:51: CPU Fan: low
2018-11-01 20:31:52: core_temps:
25.0
25.0
24.0
24.0
2018-11-01 20:31:52: core_temp = 25.0 C
2018-11-01 20:31:52: core_temp = 25.0 C
2018-11-01 20:31:52: core_temp = 24.0 C
2018-11-01 20:31:52: core_temp = 24.0 C
2018-11-01 20:31:52: CPU Temp: 25.0
2018-11-01 20:31:52: CPU Fan: low
2018-11-01 20:31:52: fan_speed = 3100
2018-11-01 20:31:52: CPU Fan speed: 3100 RPM
2018-11-01 20:31:52: fan_speed = 1100
2018-11-01 20:31:52: HD Fan speed: 1100 RPM
2018-11-01 20:31:52: CPU fan speed should be low, but 3100 > 2000.
2018-11-01 20:31:52: HD fan speed should be low, but 1100 > 1040.
2018-11-01 20:31:52: bmc_fail_count:  1, bmc_fail_threshold: 1
2018-11-01 20:31:52: Fan speeds are not where they should be, will try again.
2018-11-01 20:31:52: fanmode: full = 1
2018-11-01 20:31:52: Setting fan mode to 1 (full)
2018-11-01 20:31:58: Setting Zone 0 duty cycle to 40%
2018-11-01 20:31:58: Setting Zone 1 duty cycle to 30%
2018-11-01 20:31:59: core_temps:
26.0
26.0
24.0
24.0
2018-11-01 20:31:59: core_temp = 26.0 C
2018-11-01 20:31:59: core_temp = 26.0 C
2018-11-01 20:31:59: core_temp = 24.0 C
2018-11-01 20:31:59: core_temp = 24.0 C
2018-11-01 20:31:59: CPU Temp: 26.0
2018-11-01 20:31:59: CPU Fan: low
2018-11-01 20:32:00: core_temps:
25.0
25.0
24.0
24.0
2018-11-01 20:32:00: core_temp = 25.0 C
2018-11-01 20:32:00: core_temp = 25.0 C
2018-11-01 20:32:00: core_temp = 24.0 C
2018-11-01 20:32:00: core_temp = 24.0 C
2018-11-01 20:32:00: CPU Temp: 25.0
2018-11-01 20:32:00: CPU Fan: low
2018-11-01 20:32:01: core_temps:
25.0
26.0
25.0
25.0
2018-11-01 20:32:01: core_temp = 25.0 C
2018-11-01 20:32:01: core_temp = 26.0 C
2018-11-01 20:32:01: core_temp = 25.0 C
2018-11-01 20:32:01: core_temp = 25.0 C
2018-11-01 20:32:01: CPU Temp: 26.0
2018-11-01 20:32:01: CPU Fan: low
2018-11-01 20:32:02: core_temps:
25.0
26.0
25.0
25.0
2018-11-01 20:32:02: core_temp = 25.0 C
2018-11-01 20:32:02: core_temp = 26.0 C
2018-11-01 20:32:02: core_temp = 25.0 C
2018-11-01 20:32:02: core_temp = 25.0 C
2018-11-01 20:32:02: CPU Temp: 26.0
2018-11-01 20:32:02: CPU Fan: low
2018-11-01 20:32:03: core_temps:
25.0
25.0
23.0
23.0
2018-11-01 20:32:03: core_temp = 25.0 C
2018-11-01 20:32:03: core_temp = 25.0 C
2018-11-01 20:32:03: core_temp = 23.0 C
2018-11-01 20:32:03: core_temp = 23.0 C
2018-11-01 20:32:03: CPU Temp: 25.0
2018-11-01 20:32:03: CPU Fan: low
2018-11-01 20:32:04: core_temps:
26.0
26.0
23.0
23.0
2018-11-01 20:32:04: core_temp = 26.0 C
2018-11-01 20:32:04: core_temp = 26.0 C
2018-11-01 20:32:04: core_temp = 23.0 C
2018-11-01 20:32:04: core_temp = 23.0 C
2018-11-01 20:32:04: CPU Temp: 26.0
2018-11-01 20:32:04: CPU Fan: low
2018-11-01 20:32:05: core_temps:
24.0
26.0
24.0
24.0
2018-11-01 20:32:05: core_temp = 24.0 C
2018-11-01 20:32:05: core_temp = 26.0 C
2018-11-01 20:32:05: core_temp = 24.0 C
2018-11-01 20:32:05: core_temp = 24.0 C
2018-11-01 20:32:05: CPU Temp: 26.0
2018-11-01 20:32:05: CPU Fan: low
2018-11-01 20:32:06: core_temps:
24.0
27.0
24.0
24.0
2018-11-01 20:32:06: core_temp = 24.0 C
2018-11-01 20:32:06: core_temp = 27.0 C
2018-11-01 20:32:06: core_temp = 24.0 C
2018-11-01 20:32:06: core_temp = 24.0 C
2018-11-01 20:32:06: CPU Temp: 27.0
2018-11-01 20:32:06: CPU Fan: low
2018-11-01 20:32:07: core_temps:
26.0
26.0
23.0
23.0
2018-11-01 20:32:07: core_temp = 26.0 C
2018-11-01 20:32:07: core_temp = 26.0 C
2018-11-01 20:32:07: core_temp = 23.0 C
2018-11-01 20:32:07: core_temp = 23.0 C
2018-11-01 20:32:07: CPU Temp: 26.0
2018-11-01 20:32:07: CPU Fan: low
2018-11-01 20:32:08: core_temps:
26.0
26.0
24.0
24.0
2018-11-01 20:32:08: core_temp = 26.0 C
2018-11-01 20:32:08: core_temp = 26.0 C
2018-11-01 20:32:08: core_temp = 24.0 C
2018-11-01 20:32:08: core_temp = 24.0 C
2018-11-01 20:32:08: CPU Temp: 26.0
2018-11-01 20:32:08: CPU Fan: low
2018-11-01 20:32:09: core_temps:
24.0
24.0
24.0
24.0
2018-11-01 20:32:09: core_temp = 24.0 C
2018-11-01 20:32:09: core_temp = 24.0 C
2018-11-01 20:32:09: core_temp = 24.0 C
2018-11-01 20:32:09: core_temp = 24.0 C
2018-11-01 20:32:09: CPU Temp: 24.0
2018-11-01 20:32:09: CPU Fan: low
2018-11-01 20:32:09: fan_speed = 3100
2018-11-01 20:32:09: CPU Fan speed: 3100 RPM
2018-11-01 20:32:10: fan_speed = 1100
2018-11-01 20:32:10: HD Fan speed: 1100 RPM
2018-11-01 20:32:10: CPU fan speed should be low, but 3100 > 2000.
2018-11-01 20:32:10: HD fan speed should be low, but 1100 > 1040.
2018-11-01 20:32:10: bmc_fail_count:  2, bmc_fail_threshold: 1
2018-11-01 20:32:10: Fan speeds are still not where they should be after 2 attempts, will reboot BMC.
2018-11-01 20:32:10: fanmode: full = 1
2018-11-01 20:32:10: Setting fan mode to 1 (full)
2018-11-01 20:32:15: Resetting BMC
2018-11-01 20:32:16: core_temps:
26.0
26.0
25.0
25.0
2018-11-01 20:32:16: core_temp = 26.0 C
2018-11-01 20:32:16: core_temp = 26.0 C
2018-11-01 20:32:16: core_temp = 25.0 C
2018-11-01 20:32:16: core_temp = 25.0 C
2018-11-01 20:32:16: CPU Temp: 26.0
2018-11-01 20:32:16: CPU Fan: low
2018-11-01 20:32:17: core_temps:
28.0
28.0
27.0
27.0
2018-11-01 20:32:17: core_temp = 28.0 C
2018-11-01 20:32:17: core_temp = 28.0 C
2018-11-01 20:32:17: core_temp = 27.0 C
2018-11-01 20:32:17: core_temp = 27.0 C
2018-11-01 20:32:17: CPU Temp: 28.0
2018-11-01 20:32:17: CPU Fan: low
2018-11-01 20:32:18: core_temps:
26.0
26.0
24.0
24.0
2018-11-01 20:32:18: core_temp = 26.0 C
2018-11-01 20:32:18: core_temp = 26.0 C
2018-11-01 20:32:18: core_temp = 24.0 C
2018-11-01 20:32:18: core_temp = 24.0 C
2018-11-01 20:32:18: CPU Temp: 26.0
2018-11-01 20:32:18: CPU Fan: low
2018-11-01 20:32:19: core_temps:
25.0
25.0
24.0
24.0
2018-11-01 20:32:19: core_temp = 25.0 C
2018-11-01 20:32:19: core_temp = 25.0 C
2018-11-01 20:32:19: core_temp = 24.0 C
2018-11-01 20:32:19: core_temp = 24.0 C
2018-11-01 20:32:19: CPU Temp: 25.0
2018-11-01 20:32:19: CPU Fan: low
2018-11-01 20:32:20: core_temps:
24.0
24.0
24.0
25.0
2018-11-01 20:32:20: core_temp = 24.0 C
2018-11-01 20:32:20: core_temp = 24.0 C
2018-11-01 20:32:20: core_temp = 24.0 C
2018-11-01 20:32:20: core_temp = 25.0 C
2018-11-01 20:32:20: CPU Temp: 25.0
2018-11-01 20:32:20: CPU Fan: low
2018-11-01 20:32:21: core_temps:
27.0
27.0
24.0
24.0
2018-11-01 20:32:21: core_temp = 27.0 C
2018-11-01 20:32:21: core_temp = 27.0 C
2018-11-01 20:32:21: core_temp = 24.0 C
2018-11-01 20:32:21: core_temp = 24.0 C
2018-11-01 20:32:21: CPU Temp: 27.0
2018-11-01 20:32:21: CPU Fan: low
2018-11-01 20:32:22: core_temps:
26.0
26.0
24.0
24.0
2018-11-01 20:32:22: core_temp = 26.0 C
2018-11-01 20:32:22: core_temp = 26.0 C
2018-11-01 20:32:22: core_temp = 24.0 C
2018-11-01 20:32:22: core_temp = 24.0 C
2018-11-01 20:32:22: CPU Temp: 26.0
2018-11-01 20:32:22: CPU Fan: low
2018-11-01 20:32:23: core_temps:
27.0
27.0
25.0
25.0
2018-11-01 20:32:23: core_temp = 27.0 C
2018-11-01 20:32:23: core_temp = 27.0 C
2018-11-01 20:32:23: core_temp = 25.0 C
2018-11-01 20:32:23: core_temp = 25.0 C
2018-11-01 20:32:23: CPU Temp: 27.0
2018-11-01 20:32:23: CPU Fan: low
2018-11-01 20:32:24: core_temps:
26.0
26.0
24.0
25.0
2018-11-01 20:32:24: core_temp = 26.0 C
2018-11-01 20:32:24: core_temp = 26.0 C
2018-11-01 20:32:24: core_temp = 24.0 C
2018-11-01 20:32:24: core_temp = 25.0 C
2018-11-01 20:32:24: CPU Temp: 26.0
2018-11-01 20:32:24: CPU Fan: low
2018-11-01 20:32:25: core_temps:
24.0
24.0
24.0
24.0
2018-11-01 20:32:25: core_temp = 24.0 C
2018-11-01 20:32:25: core_temp = 24.0 C
2018-11-01 20:32:25: core_temp = 24.0 C
2018-11-01 20:32:25: core_temp = 24.0 C
2018-11-01 20:32:25: CPU Temp: 24.0
2018-11-01 20:32:25: CPU Fan: low
2018-11-01 20:32:26: core_temps:
25.0
25.0
24.0
25.0
2018-11-01 20:32:26: core_temp = 25.0 C
2018-11-01 20:32:26: core_temp = 25.0 C
2018-11-01 20:32:26: core_temp = 24.0 C
2018-11-01 20:32:26: core_temp = 25.0 C
2018-11-01 20:32:26: CPU Temp: 25.0
2018-11-01 20:32:26: CPU Fan: low
2018-11-01 20:32:27: fan_speed = 3100
2018-11-01 20:32:27: CPU Fan speed: 3100 RPM
2018-11-01 20:32:27: fan_speed = 1100
2018-11-01 20:32:27: HD Fan speed: 1100 RPM
2018-11-01 20:32:27: CPU fan speed should be low, but 3100 > 2000.
2018-11-01 20:32:27: HD fan speed should be low, but 1100 > 1040.
2018-11-01 20:32:27: bmc_fail_count:  1, bmc_fail_threshold: 1
2018-11-01 20:32:27: Fan speeds are not where they should be, will try again.
2018-11-01 20:32:27: fanmode: full = 1
2018-11-01 20:32:27: Setting fan mode to 1 (full)
2018-11-01 20:32:32: Setting Zone 0 duty cycle to 40%
2018-11-01 20:32:32: Setting Zone 1 duty cycle to 30%
2018-11-01 20:32:33: core_temps:
30.0
30.0
26.0
29.0
2018-11-01 20:32:33: core_temp = 30.0 C
2018-11-01 20:32:33: core_temp = 30.0 C
2018-11-01 20:32:33: core_temp = 26.0 C
2018-11-01 20:32:33: core_temp = 29.0 C
2018-11-01 20:32:33: CPU Temp: 30.0
2018-11-01 20:32:33: CPU Fan: low
2018-11-01 20:32:34: core_temps:
25.0
25.0
23.0
24.0
2018-11-01 20:32:34: core_temp = 25.0 C
2018-11-01 20:32:34: core_temp = 25.0 C
2018-11-01 20:32:34: core_temp = 23.0 C
2018-11-01 20:32:34: core_temp = 24.0 C
2018-11-01 20:32:34: CPU Temp: 25.0
2018-11-01 20:32:34: CPU Fan: low
2018-11-01 20:32:35: core_temps:
26.0
26.0
24.0
24.0
2018-11-01 20:32:35: core_temp = 26.0 C
2018-11-01 20:32:35: core_temp = 26.0 C
2018-11-01 20:32:35: core_temp = 24.0 C
2018-11-01 20:32:35: core_temp = 24.0 C
2018-11-01 20:32:35: CPU Temp: 26.0
2018-11-01 20:32:35: CPU Fan: low
2018-11-01 20:32:36: core_temps:
25.0
25.0
25.0
25.0
2018-11-01 20:32:36: core_temp = 25.0 C
2018-11-01 20:32:36: core_temp = 25.0 C
2018-11-01 20:32:36: core_temp = 25.0 C
2018-11-01 20:32:36: core_temp = 25.0 C
2018-11-01 20:32:36: CPU Temp: 25.0
2018-11-01 20:32:36: CPU Fan: low
2018-11-01 20:32:37: core_temps:
25.0
25.0
24.0
24.0
2018-11-01 20:32:37: core_temp = 25.0 C
2018-11-01 20:32:37: core_temp = 25.0 C
2018-11-01 20:32:37: core_temp = 24.0 C
2018-11-01 20:32:37: core_temp = 24.0 C
2018-11-01 20:32:37: CPU Temp: 25.0
2018-11-01 20:32:37: CPU Fan: low
2018-11-01 20:32:38: core_temps:
25.0
25.0
24.0
25.0
2018-11-01 20:32:38: core_temp = 25.0 C
2018-11-01 20:32:38: core_temp = 25.0 C
2018-11-01 20:32:38: core_temp = 24.0 C
2018-11-01 20:32:38: core_temp = 25.0 C
2018-11-01 20:32:38: CPU Temp: 25.0
2018-11-01 20:32:38: CPU Fan: low
2018-11-01 20:32:40: core_temps:
26.0
26.0
25.0
25.0
2018-11-01 20:32:40: core_temp = 26.0 C
2018-11-01 20:32:40: core_temp = 26.0 C
2018-11-01 20:32:40: core_temp = 25.0 C
2018-11-01 20:32:40: core_temp = 25.0 C
2018-11-01 20:32:40: CPU Temp: 26.0
2018-11-01 20:32:40: CPU Fan: low
2018-11-01 20:32:41: core_temps:
25.0
25.0
24.0
24.0
2018-11-01 20:32:41: core_temp = 25.0 C
2018-11-01 20:32:41: core_temp = 25.0 C
2018-11-01 20:32:41: core_temp = 24.0 C
2018-11-01 20:32:41: core_temp = 24.0 C
2018-11-01 20:32:41: CPU Temp: 25.0
2018-11-01 20:32:41: CPU Fan: low
2018-11-01 20:32:42: core_temps:
26.0
26.0
23.0
24.0
2018-11-01 20:32:42: core_temp = 26.0 C
2018-11-01 20:32:42: core_temp = 26.0 C
2018-11-01 20:32:42: core_temp = 23.0 C
2018-11-01 20:32:42: core_temp = 24.0 C
2018-11-01 20:32:42: CPU Temp: 26.0
2018-11-01 20:32:42: CPU Fan: low
2018-11-01 20:32:43: core_temps:
26.0
26.0
24.0
24.0
2018-11-01 20:32:43: core_temp = 26.0 C
2018-11-01 20:32:43: core_temp = 26.0 C
2018-11-01 20:32:43: core_temp = 24.0 C
2018-11-01 20:32:43: core_temp = 24.0 C
2018-11-01 20:32:43: CPU Temp: 26.0
2018-11-01 20:32:43: CPU Fan: low
2018-11-01 20:32:43: fan_speed = 3100
2018-11-01 20:32:43: CPU Fan speed: 3100 RPM
2018-11-01 20:32:43: fan_speed = 1100
2018-11-01 20:32:43: HD Fan speed: 1100 RPM
2018-11-01 20:32:43: CPU fan speed should be low, but 3100 > 2000.
2018-11-01 20:32:43: HD fan speed should be low, but 1100 > 1040.
2018-11-01 20:32:43: bmc_fail_count:  2, bmc_fail_threshold: 1
2018-11-01 20:32:43: Fan speeds are still not where they should be after 2 attempts, will reboot BMC.
2018-11-01 20:32:43: fanmode: full = 1
2018-11-01 20:32:43: Setting fan mode to 1 (full)
2018-11-01 20:32:49: Resetting BMC
2018-11-01 20:32:50: core_temps:
26.0
26.0
24.0
24.0
2018-11-01 20:32:50: core_temp = 26.0 C
2018-11-01 20:32:50: core_temp = 26.0 C
2018-11-01 20:32:50: core_temp = 24.0 C
2018-11-01 20:32:50: core_temp = 24.0 C
2018-11-01 20:32:50: CPU Temp: 26.0
2018-11-01 20:32:50: CPU Fan: low
2018-11-01 20:32:51: core_temps:
25.0
25.0
24.0
24.0
2018-11-01 20:32:51: core_temp = 25.0 C
2018-11-01 20:32:51: core_temp = 25.0 C
2018-11-01 20:32:51: core_temp = 24.0 C
2018-11-01 20:32:51: core_temp = 24.0 C
2018-11-01 20:32:51: CPU Temp: 25.0
2018-11-01 20:32:51: CPU Fan: low
2018-11-01 20:32:52: core_temps:
25.0
25.0
24.0
24.0
2018-11-01 20:32:52: core_temp = 25.0 C
2018-11-01 20:32:52: core_temp = 25.0 C
2018-11-01 20:32:52: core_temp = 24.0 C
2018-11-01 20:32:52: core_temp = 24.0 C
2018-11-01 20:32:52: CPU Temp: 25.0
2018-11-01 20:32:52: CPU Fan: low
2018-11-01 20:32:53: core_temps:
27.0
27.0
24.0
24.0
2018-11-01 20:32:53: core_temp = 27.0 C
2018-11-01 20:32:53: core_temp = 27.0 C
2018-11-01 20:32:53: core_temp = 24.0 C
2018-11-01 20:32:53: core_temp = 24.0 C
2018-11-01 20:32:53: CPU Temp: 27.0
2018-11-01 20:32:53: CPU Fan: low
2018-11-01 20:32:54: core_temps:
25.0
27.0
24.0
24.0
2018-11-01 20:32:54: core_temp = 25.0 C
2018-11-01 20:32:54: core_temp = 27.0 C
2018-11-01 20:32:54: core_temp = 24.0 C
2018-11-01 20:32:54: core_temp = 24.0 C
2018-11-01 20:32:54: CPU Temp: 27.0
2018-11-01 20:32:54: CPU Fan: low
2018-11-01 20:32:55: core_temps:
25.0
25.0
23.0
23.0
2018-11-01 20:32:55: core_temp = 25.0 C
2018-11-01 20:32:55: core_temp = 25.0 C
2018-11-01 20:32:55: core_temp = 23.0 C
2018-11-01 20:32:55: core_temp = 23.0 C
2018-11-01 20:32:55: CPU Temp: 25.0
2018-11-01 20:32:55: CPU Fan: low
2018-11-01 20:32:56: core_temps:
26.0
26.0
23.0
23.0
2018-11-01 20:32:56: core_temp = 26.0 C
2018-11-01 20:32:56: core_temp = 26.0 C
2018-11-01 20:32:56: core_temp = 23.0 C
2018-11-01 20:32:56: core_temp = 23.0 C
2018-11-01 20:32:56: CPU Temp: 26.0
2018-11-01 20:32:56: CPU Fan: low
2018-11-01 20:32:57: core_temps:
25.0
26.0
25.0
25.0
2018-11-01 20:32:57: core_temp = 25.0 C
2018-11-01 20:32:57: core_temp = 26.0 C
2018-11-01 20:32:57: core_temp = 25.0 C
2018-11-01 20:32:57: core_temp = 25.0 C
2018-11-01 20:32:57: CPU Temp: 26.0
2018-11-01 20:32:57: CPU Fan: low
2018-11-01 20:32:58: core_temps:
25.0
25.0
25.0
25.0
2018-11-01 20:32:58: core_temp = 25.0 C
2018-11-01 20:32:58: core_temp = 25.0 C
2018-11-01 20:32:58: core_temp = 25.0 C
2018-11-01 20:32:58: core_temp = 25.0 C
2018-11-01 20:32:58: CPU Temp: 25.0
2018-11-01 20:32:58: CPU Fan: low
2018-11-01 20:32:59: core_temps:
25.0
25.0
23.0
23.0
2018-11-01 20:32:59: core_temp = 25.0 C
2018-11-01 20:32:59: core_temp = 25.0 C
2018-11-01 20:32:59: core_temp = 23.0 C
2018-11-01 20:32:59: core_temp = 23.0 C
2018-11-01 20:32:59: CPU Temp: 25.0
2018-11-01 20:32:59: CPU Fan: low
2018-11-01 20:33:00: core_temps:
33.0
33.0
27.0
30.0
2018-11-01 20:33:00: core_temp = 33.0 C
2018-11-01 20:33:00: core_temp = 33.0 C
2018-11-01 20:33:00: core_temp = 27.0 C
2018-11-01 20:33:00: core_temp = 30.0 C
2018-11-01 20:33:00: CPU Temp: 33.0
2018-11-01 20:33:00: CPU Fan: low
2018-11-01 20:33:00: fan_speed = 3100
2018-11-01 20:33:00: CPU Fan speed: 3100 RPM
2018-11-01 20:33:01: fan_speed = 1100
2018-11-01 20:33:01: HD Fan speed: 1100 RPM
2018-11-01 20:33:01: CPU fan speed should be low, but 3100 > 2000.
2018-11-01 20:33:01: HD fan speed should be low, but 1100 > 1040.
2018-11-01 20:33:01: bmc_fail_count:  1, bmc_fail_threshold: 1
2018-11-01 20:33:01: Fan speeds are not where they should be, will try again.
2018-11-01 20:33:01: fanmode: full = 1
2018-11-01 20:33:01: Setting fan mode to 1 (full)
2018-11-01 20:33:06: Setting Zone 0 duty cycle to 40%
2018-11-01 20:33:06: Setting Zone 1 duty cycle to 30%
2018-11-01 20:33:07: core_temps:
26.0
26.0
24.0
24.0
2018-11-01 20:33:07: core_temp = 26.0 C
2018-11-01 20:33:07: core_temp = 26.0 C
2018-11-01 20:33:07: core_temp = 24.0 C
2018-11-01 20:33:07: core_temp = 24.0 C
2018-11-01 20:33:07: CPU Temp: 26.0
2018-11-01 20:33:07: CPU Fan: low
2018-11-01 20:33:08: core_temps:
25.0
25.0
25.0
25.0
2018-11-01 20:33:08: core_temp = 25.0 C
2018-11-01 20:33:08: core_temp = 25.0 C
2018-11-01 20:33:08: core_temp = 25.0 C
2018-11-01 20:33:08: core_temp = 25.0 C
2018-11-01 20:33:08: CPU Temp: 25.0
2018-11-01 20:33:08: CPU Fan: low
^C
root@NAS:/mnt/Storage/Scripts #



I lost a drive this week: that's the second Seagate Ironwolf. May then October. I am waiting for the RMA.
Thanks
 
Top