ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Pi as a UPS monitor

    IT Discussion
    raspberry pi ups apc eaton nut
    8
    114
    33.8k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • travisdh1T
      travisdh1 @JaredBusch
      last edited by

      @JaredBusch said in Pi as a UPS monitor:

      @JaredBusch said in Pi as a UPS monitor:

      @JaredBusch said in Pi as a UPS monitor:

      Well that would be a problem. Where did the file I made go? I guess the default directory was a bad choice?

      pi@bna-pwr-pi-01:~ $ sudo ls -l /var/run/nut/
      total 12
      -rw-r--r-- 1 nut  nut  4 Feb  2 04:27 upsd.pid
      -rw-r--r-- 1 root root 4 Feb  2 04:27 upsmon.pid
      srw-rw---- 1 nut  nut  0 Feb  2 04:27 usbhid-ups-bnajaredrouter
      -rw-r--r-- 1 nut  nut  4 Feb  2 04:27 usbhid-ups-bnajaredrouter.pid
      pi@bna-pwr-pi-01:~ $ 
      

      @scottalanmiller what would be the 'proper' place for these files?

      Hey @scottalanmiller you never answered this one. What is 'proper' for this kinda thing.

      Should be /etc/nut. The standard is to put config files in /etc. /dev is generally hardware devices.

      1 Reply Last reply Reply Quote 1
      • gjacobseG
        gjacobse
        last edited by

        @JaredBusch

        You could add this little display on your Pi for local status-

        https://www.adafruit.com/product/3527?utm_source=youtube&utm_medium=videodescrip&utm_campaign=newproducts

        https://cdn-shop.adafruit.com/970x728/3527-04.jpg

        scottalanmillerS travisdh1T 2 Replies Last reply Reply Quote 0
        • scottalanmillerS
          scottalanmiller @gjacobse
          last edited by

          @gjacobse I like that, it's cute.

          1 Reply Last reply Reply Quote 0
          • travisdh1T
            travisdh1 @gjacobse
            last edited by

            @gjacobse Nice find. And only uses 6 pins? I've got a 2.5" display that uses most of the GPIO block 😕

            gjacobseG 1 Reply Last reply Reply Quote 0
            • gjacobseG
              gjacobse @travisdh1
              last edited by

              @travisdh1 said in Pi as a UPS monitor:

              @gjacobse Nice find. And only uses 6 pins? I've got a 2.5" display that uses most of the GPIO block 😕

              The only thing I might do is see if it was possible to rotate the display part 90deg,.. free up the header area for more - OR make a breakout board for all 20 GPIO with the OlED turned...

              1 Reply Last reply Reply Quote 0
              • gjacobseG
                gjacobse
                last edited by

                @JaredBusch

                Did you ever get this project finished?

                1 Reply Last reply Reply Quote 0
                • JaredBuschJ
                  JaredBusch
                  last edited by

                  Aside from alerting, this was working. No, I never circled back to this.

                  1 Reply Last reply Reply Quote 0
                  • B
                    bxdobs
                    last edited by

                    Struggling with getting nut to work with an old APC UPS ... lsusb suggests the UPS USB port is connecting to the PI (it lists the device when plugged in) but can't seem to find the right combination of configurations to allow nut to actually monitor the UPS itself.

                    tried drivers;
                    usbhid-usb port=auto
                    genericusb with type; = 1, 2, 9, or 12 (port=serial1)
                    apcsmart
                    apcsmart-old
                    apcupsd-ups

                    seems that the ups is just not being found

                    is there some way to manually poke the USB port (sort of like we used to do with uarts with AT commands)?

                    gjacobseG 1 Reply Last reply Reply Quote 0
                    • gjacobseG
                      gjacobse @bxdobs
                      last edited by

                      @bxdobs said in Pi as a UPS monitor:

                      Struggling with getting nut to work with an old APC UPS ... lsusb suggests the UPS USB port is connecting to the PI (it lists the device when plugged in) but can't seem to find the right combination of configurations to allow nut to actually monitor the UPS itself.

                      tried drivers;
                      usbhid-usb port=auto
                      genericusb with type; = 1, 2, 9, or 12 (port=serial1)
                      apcsmart
                      apcsmart-old
                      apcupsd-ups

                      seems that the ups is just not being found

                      is there some way to manually poke the USB port (sort of like we used to do with uarts with AT commands)?

                      I actually just went through this about a month or so ago when I set up Ubuntu Server and a APCups. I'm not at the house to pull what I did,... but I heavily referenced this very thread. Yes - where I don't live in Linux CLI as some do, I had to do some trial and error again. but that's part of (re)learning.

                      1 Reply Last reply Reply Quote 0
                      • B
                        bxdobs
                        last edited by

                        Removed the nut installation, config files and did a complete Raspbian upgrade ... Now after reinstalling nut with the bare minimum configuration, it is finally talking to the ups.

                        Even though I have been technically involved with computer tech going back to the late '70s, this install was certainly not for the faint of heart ... I can understand why people walk away in frustration from this stuff

                        1 Reply Last reply Reply Quote 0
                        • travisdh1T
                          travisdh1
                          last edited by

                          2023, and this thread is still the best resource for getting nut/apcupsd running.

                          1 Reply Last reply Reply Quote 2
                          • travisdh1T
                            travisdh1
                            last edited by travisdh1

                            I'll add another note for future reference here.

                            For Fedora 39 Server, apcupsd has another package apcupsd-cgi that can be used with a web server to display UPS status. However, you have to move the files it installs by default because they're not in the /var/www/cgi-bin directory.

                            sudo dnf install -y apcupsd apcupsd-cgi httpd
                            sudo mv /var/www/apcupsd /var/www/cgi-bin/
                            sudo chown apache:apache /var/www/cgi-bin/apcupsd/*
                            sudo systemctl enable --now httpd

                            Should get it up and running.
                            I found 3 useful tools with it.
                            http://YOURIP/cgi-bin/apcupsd/uspstats.cgi
                            http://YOURIP/cgi-bin/apcupsd/multimon.cgi
                            http://YOURIP/cgi-bin/apcupsd/upsfstats.cgi

                            1027bdf5-650f-443d-a898-10669ff70e16-image.png

                            1 Reply Last reply Reply Quote 2
                            • 1
                            • 2
                            • 3
                            • 4
                            • 5
                            • 6
                            • 1 / 6
                            • First post
                              Last post