Difference between revisions of "NUT"
Jump to navigation
Jump to search
Michael.mast (talk | contribs) (Created page with "WORK IN PROGRESS ==Configure NUT== First edit the /etc/ups/ups.conf file by appending the battery info. You can find this information by running nut-scanner<br> Example: <pre...") |
Michael.mast (talk | contribs) |
||
Line 20: | Line 20: | ||
<br> | <br> | ||
==Start NUT service Layers== | ==Start NUT service Layers== | ||
+ | <pre> | ||
+ | systemctl enable --now nut-server | ||
+ | </pre> | ||
+ | ==Old Startup Type== | ||
+ | The following was used before I ran across the systemd unit files that came with the package. The other issue is that I am now getting the following error that makes this setup no longer usable in it's current state. | ||
+ | <pre> | ||
+ | [/etc/systemd/system/nutstart.service:6] Failed to parse service type, ignoring: Simple | ||
+ | </pre> | ||
+ | <s> | ||
Have the following shell script in place | Have the following shell script in place | ||
<pre> | <pre> | ||
Line 40: | Line 49: | ||
</pre> | </pre> | ||
Then enable the service | Then enable the service | ||
+ | </s> | ||
==Monitoring Script== | ==Monitoring Script== |
Revision as of 08:27, 2 April 2019
WORK IN PROGRESS
Configure NUT
First edit the /etc/ups/ups.conf file by appending the battery info. You can find this information by running nut-scanner
Example:
[root@dronetest ~]# nut-scanner -U Cannot load XML library (libneon.so.27) : file not found. XML search disabled. Scanning USB bus. [nutdev1] driver = "usbhid-ups" port = "auto" vendorid = "0764" productid = "0601" product = "OR1500PFCLCD" serial = "GXIFS2000130" vendor = "CPS" bus = "001"
Start NUT service Layers
systemctl enable --now nut-server
Old Startup Type
The following was used before I ran across the systemd unit files that came with the package. The other issue is that I am now getting the following error that makes this setup no longer usable in it's current state.
[/etc/systemd/system/nutstart.service:6] Failed to parse service type, ignoring: Simple
Have the following shell script in place
#!/bin/bash sudo usbhid-ups -uroot -a nutdev1 sudo upsd -uroot
Then create the systemd unit file /etc/systemd/system/nutstart.service with the following
[Unit] Description=Start NUT services After=network.target [Service] Type=Simple ExecStart=/root/nutstart.sh [Install] WantedBy=default.target
Then enable the service
Monitoring Script
[root@dronetest ~]# cat batterycheck.sh
upsstatus=$(upsc cyberpower@localhost ups.status) upsload=$(upsc cyberpower@localhost ups.load) if [ "$upsstatus" = "OL" ]; then echo "Battery Online" > /dev/null elif [ "$upsstatus" == "OB DISCHRG" ]; then echo -e "Subject:UPS has lost AC Power" | /usr/sbin/sendmail your@email.com elif [ "$upsstatus" = "OL CHRG" ]; then echo "Charging" > /dev/null else echo "Status Unknown" fi #if [ "$upsload" -ge "60" ] #then echo -e "Subject:UPS Load=$upsload" #fi