I have NUT configured on a few of my CentOS servers. I compiled and installed from source (2.4.3), so all of my nut-related files sit under /usr/local/ups. I am using a Liebert UPS. Here's how I have it working:<br><br>
Connect a serial cable from your server to the UPS (if available; USB is an option on some models, I think). The nut software can communicate with the UPS via serial on a ttyS (mine is /dev/ttyS0). This server (directly attached) must run upsd. Other servers that use the same UPS can communicate with upsd running on the first server via upsmon. All servers must run upsmon (this is what actually monitors the UPS).<br>
<br>Configure ups.conf with information about your UPS (mine is liebert). The nut docs have a list of supported hardware and the drivers that you use for them (I use the driver 'liebert'):<br><br>[liebert]<br>        driver = liebert<br>
        port = /dev/ttyS0<br><br>At least one server attached to each UPS must run upsd. Here's my upsd.conf (comments removed). Note that the second line uses the IP address of the LAN interface on your server, so that other machines on the same subnet can communicate with upsd:<br>
<br>LISTEN 127.0.0.1 3493<br>LISTEN 172.21.97.1 3493<br><br>You have to configure upsd.users to allow access to certain users (one for each upsmon process that will communicate with upsd). This information will be used to configure upsmon on the clients. For example, I have two servers listed here: the local server (server1) and another server attached to the same UPS (server2):<br>
<br>[server1-ups]<br>  password  = server1-ups-pass<br>  upsmon master<br>[server2-ups]<br>  password  = server2-ups-pass<br>  upsmon slave<br><br>Configure upsmon.conf on each client. Based on the example above, here's the upsmon.conf for server1:<br>
<br>FINALDELAY 5<br>MONITOR liebert@localhost 1 server1-ups server1-ups-pass master<br><br>... and the upsmon.conf for server2:<br><br>FINALDELAY 5<br>MONITOR liebert@server1 1 server2-ups server2-ups-pass master<br><br>Once you have ups.conf, upsd.conf, upsd.users, and upsmon.conf configured, you can test you connections like the following:<br>
<br>[root@server1 ~]# /usr/local/ups/bin/upsc liebert@localhost<br>device.mfr: Liebert<br>device.model: MultiLink<br>device.type: ups<br><a href="http://driver.name">driver.name</a>: liebert<br>driver.parameter.pollinterval: 2<br>
driver.parameter.port: /dev/ttyS0<br>driver.version: 2.4.3<br>driver.version.internal: 1.02<br>ups.mfr: Liebert<br>ups.model: MultiLink<br>ups.status: OL LB<br><br>[root@server2 ~]# /usr/local/ups/bin/upsc liebert@server1<br>
device.mfr: Liebert<br>device.model: MultiLink<br>device.type: ups<br><a href="http://driver.name">driver.name</a>: liebert<br>driver.parameter.pollinterval: 2<br>driver.parameter.port: /dev/ttyS0<br>driver.version: 2.4.3<br>
driver.version.internal: 1.02<br>ups.mfr: Liebert<br>ups.model: MultiLink<br>ups.status: OL LB<br><br>Don't forget to add the nut software to your startup scripts and appropriate runlevels. Hope this helps.<br><br>Pat Boyer<br>
<br><br><div class="gmail_quote">On Tue, Sep 14, 2010 at 11:18 AM, fred smith <span dir="ltr"><<a href="mailto:fredex@fcshome.stoneham.ma.us">fredex@fcshome.stoneham.ma.us</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Hi!<br>
<br>
Trying to set up NUT on Centos 5 to monitor a CyberPower 1500AVR UPS.<br>
<br>
There seem to be many documents, all of which seem to be not fully consistent<br>
with each other, and most of them aren't up to date.<br>
<br>
I'm guessing I should be using udev rather than hal, but I'm somewhat<br>
stumped on how to figure out what device it should be monitoring. there<br>
are a bunch of udev rules installed (in /lib/udev/rules.d/52-nut-usbups.rules)<br>
but it's not at all clear to me what, if anything, I'm supposed to do with<br>
them, or how I cause udev to see them there and do its thing.<br>
<br>
there's a document at <a href="http://fedoranews.org/contributors/kazutoshi_morioka/nut/" target="_blank">http://fedoranews.org/contributors/kazutoshi_morioka/nut/</a><br>
but it doesn't show how to do it with a USB device, only serial.<br>
<br>
so I decided to move on and see if it could be made to work without<br>
that understanding, using whatever I could figure out using the INSTALL<br>
file that comes with NUT.<br>
<br>
And that isn't geting me anywhere, so far.<br>
<br>
If anyone out there has had success at setting up NUT on Centos 5 (or RHEL)<br>
and can offer any advice, I'd appreciate hearing from you.<br>
<br>
Thanks in advance!<br>
<br>
--<br>
---- Fred Smith -- <a href="mailto:fredex@fcshome.stoneham.ma.us">fredex@fcshome.stoneham.ma.us</a> -----------------------------<br>
  "For him who is able to keep you from falling and to present you before his<br>
            glorious presence without fault and with great joy--<br>
     to the only God our Savior be glory, majesty, power and authority,<br>
  through Jesus Christ our Lord, before all ages, now and forevermore! Amen."<br>
----------------------------- Jude 1:24,25 (niv) -----------------------------<br>
_______________________________________________<br>
CentOS mailing list<br>
<a href="mailto:CentOS@centos.org">CentOS@centos.org</a><br>
<a href="http://lists.centos.org/mailman/listinfo/centos" target="_blank">http://lists.centos.org/mailman/listinfo/centos</a><br>
</blockquote></div><br>