Buxton

Results 11 comments of Buxton

Can someone fix this basic install issue. I see the same errors on a 64bit winpro machine with a USB connection to the APC UPS. Very frustrating.

There is only one link that I'm aware of: https://networkupstools.org/download.html#_binary_packages. If there are other builds, it would be great if you could link to them on the download page. >...

Do you have a health check on your pi container? Here's a simple check that will delay startup until there is container connectivity: ``` healthcheck: test: ["CMD", "dig", "+norecurse","+retry=0","@127.0.0.11","pi.hole"," ||...

Make sure that "pi.hole" is your FQDN for your pihole container. The dig command doesn't seem to work with "docker domain names" ie container names. I use Cnames in pi-hole...

"I'd really like to know how Alexa is re-discovering these other ghost devices" Alexa echo dots cache HUE devices on each echo dot, and probably on each amazon Alexa device--...

Hello, I installed this patch/branch from [parthasai](https://github.com/parthasai) on MariaDB Database client version: libmysql - mysqlnd 8.2.8 and all works great. The unpatched version did not work. As you probably know,...

There is another possibility that causes an insert trigger to fail. It may be that the mySQL engine sees the "SELECT http_get()" in the called procedure as a true SELECT...

I also had to change the http.go file header to: /* #include #include #include #include #include #include #include */ This seemed to do the trick to get it to compile.

One final comment. I was able to get this to work using the following statement: INSERT INTO logtable SET log= http_get(TRIM(@my_URL2)), msg1=@my_message, msg2=@my_params; I basically created a logtable, and then...

I solved this by adding "network_mode: host" to my docker compose file.