Changes

From Amahi Wiki
Jump to: navigation, search
97 bytes removed ,  03:46, 23 June 2020
{{NeedsUpdate}}
 
 
== Powering Amahi (Fedora 12/14) with APC Back-UPS and [http://www.networkupstools.org/index.html Network UPS Tools (NUT)] ==
The software APC BackkBack-UPS comes with does not work in Linux. Instead, you need to use NUT or apcupsd. Google will turn up evidence that both work, but NUT seems to be the preferred one.
The original instructions that this article guidance is based on came from [http://www.mscs.dal.ca/~selinger/ups/backups.html here] and [http://billauer.co.il/blog/2010/01/fedora-mustek-powermust-600-ups-nut-howto/ here]. The former, by Peter Selinger, are closest to this case, but a lot of the work he had to do is now done for you out of the box. The latter are for a different UPS, but are also fresher.
First, do this as [http://wiki.amahi.org/index.php/Open_Terminal_as_root root user]:
{{Code|Code= yum -y install nut nut-client}}
Next, you will need to configure four files in /etc/ups: ups.conf, upsd.users, hosts.conf, and upsmon.conf. They will look almost identical to Selinger's (password1 and password2 can be changed to anything):
{{Code|Code=
vi /etc/ups/ups.conf
}}
{{Text|Text= vi /etc/ups/ups.conf <pre>
[apc]
driver = usbhid-ups
port = auto
desc = "APC Back-UPS"
}}</pre>
 
{{Code|Code=
vi /etc/ups/upsd.users
}}
 {{Text|Text=<pre>
[admin]
password = password1
password = password2
upsmon master
}}</pre>
{{Code|Code= vi /etc/ups/hosts.conf}}
{{Text|Text=<pre>
MONITOR apc@localhost "UPS on HDA"
}}</pre>
{{Code|Code= vi /etc/ups/upsmon.conf}}
{{Text|Text=<pre>
MONITOR apc@localhost 1 monuser password2 master
MINSUPPLIES 1
NOCOMMWARNTIME 300
FINALDELAY 5
}}</pre>
The next step is to start the UPS service:
{{Code|
upsdrvctl start
service ups stop
service ups start
}}
upsdrvctl start
service ups stop
service ups start
At this point, you should see something like this in your terminal:
If you do not, it may be because upsdrvctl refuses to cooperate at first. A reboot will fix that problem. The final step is to make sure that the UPS services start when the server does. For that, the /etc/rc.local file must be edited as follows:
{{Code|Code=
vi /etc/rc.local
}}
{{Text|Text= vi /etc/rc.local <pre>
echo "Starting UPS driver, daemon, and monitor."
/sbin/upsdrvctl start
/usr/sbin/upsd
/usr/sbin/upsmon
}}</pre>
12,424

edits