Avsynthe

Members
  • Posts

    43
  • Joined

  • Last visited

Everything posted by Avsynthe

  1. The blog post at that site that is no longer accessible is this. Found it using the Wayback Machine. I haven't used it yet and I'm not sure how it will work using ipvlan or if it has anything to do with that or not. Here is that entire blog post: ________________________________________________ UnraidOS host access to custom networks [Fix] So quick little post about my favorite operating system, UnraidOS. A lot of my processes are hosted on this beautiful little machine but a major issue I had was communicating between the host (My UnraidOS operating system) and a container running on that host. By default the setting 'Host access to custom networks:" in the Settings > Docker tab is set to false as this allows any docker container running on the host to be able to reach out and communicate with the host. This does go against the concept of containers and best-practices, but I swear I had a valid reason... so therefore we turned this setting on! The way that the UnraidOS does this is by creating a shim-br0 network to connect all of my devices on the custom network (in my case br0) to the host system. What I decided to do was create a custom user script which checks to see if the network is created on startup, if it fails (which it often does) it will then create the network for you. The basic usage of this is just a command you can run in the UnraidOS console, which can be found below. ip link add shim-br0 link br0 type macvlan mode bridge ip link set shim-br0 up One of the other fixes which I found on the forum is to turn off "Docker" by setting Settings > Docker "Enable Docker" to false, applying it, changing it back to true, and applying it again. Usually toggling the "Host access to custom networks" will force the system to re-create the network Once installed, go to your Settings > User Scripts and create a new script, copy and paste the below script (which checks to see if the network exists, and if it doesn't create it). #!/bin/bash #!/bin/bash ip link | grep 'shim-br0' &> /dev/null if [ $? != 0 ]; then echo "No shim br0 found, creating it!" ip link add shim-br0 link br0 type macvlan mode bridge ip link set shim-br0 up ip route add 192.168.1.0/25 dev shim-br0 ip route add 192.168.1.128/25 dev shim-br0 else echo "shim-br0 network was found!" fi Once saved go to the frequency and choose "At Startup of Array", which means this script will run whenever you start up your array (IE a restart or manually starting/stopping it). Even if the network was created correctly, this will still run and make sure. Hopefully this helps you out and saves you many hours of debugging by always ensuring your container can reach the host! The other way I'd recomend doing this, so you dont ever have to worry about it, is using the User.Scripts plugin. Most users of UnraidOS already have this to begin with, but if not just do the old google of "UserScripts UnraidOS" and you'll get it installed in no time. ________________________________________________ Credit goes to Alexander Sigler for this blog post
  2. Hey all. I have a two containers that use an Unassigned Device SSD for their appdata as they're massive. Some have other external volumes mapped also such as the docker socket, media folders and /tmp/. To back up their appdata, I could set "save external volumes" to yes and add the other external volumes to the exclusion list? Just want to make sure this works and I don't wake up after the next backup to find it's backup massive amounts of files I've tried to exclude and nuked my array space. I also don't want to know what would happen if it tries backing up the docker socket path. I ask mainly as paths like that and /tmp/ aren't normally accessible in the provided directory list.
  3. From what I was told on the discord, this will never be possible on this image as there is neither Nvidia nor AMD GPU drivers in existence for muslc on Alpine. I'm just about to take a dive and see if I can successfully migrate everything to the official container without having to re-setup anything as I've done a lot of work. Any help on this would be awesome.
  4. Hey all, I'm planning on installing a large SATA SSD as an unassigned device for gaming on the Headless-Steam container. I'm looking for advice on what the current best way is of backing up the entirety of an unassigned device to a share on the array? Cheers.
  5. Hi all, I speak for many of us when I say we don't all have the resources for multiple GPU setups split between gaming VMs and containers. Many of us have turned to solutions like steam-headless (Debian based), steamOS and other native Linux containers to get the job done while retaining GPU use for other needs. These containers have fantastic support for Sunshine/Moonlight or Steam Link game streaming for remote play, which all provide some level of remote/virtual gamepad drivers, however unlike a Windows VM, they sadly lack the main key feature when playing locally: Local Gamepad Support. xone is a Linux kernel driver for Xbox One and Xbox Series X|S accessories that serves as a modern replacement for xpad, aiming to be compatible with Microsoft's Game Input Protocol (GIP). Essentially, xone would give kernel support for the following when passed through to a container: The Xbox Wireless Adapter All Wireless Acessories All Wired Accessories All Accessories via Bluetooth (xpadneo) There is full support for: Input and force feedback (rumble) Battery reporting (UPower integration) LED control (using /sys/class/leds) Audio capture/playback (through ALSA) Power management (suspend/resume and remote/wireless wakeup) This would further open up unRAID's use cases in the gaming world and bring the same gaming VM goals far closer to a greater variety of rigs, budgets, and mixed-use setups. It also has other applications beyond gaming such as better control of home media apps with the chatpad attachment etc where supported. Repos can be found here: https://github.com/medusalix/xone https://github.com/atar-axis/xpadneo Thank you and I appreciate your consideration.
  6. After some further digging around the time of posting this, I found a thread on the AUTOMATIC1111 github where it seems to be a somewhat common occurrence for some but isn't meant to be normal apparently. It also doesn't look like they know 100% what's causing it. https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/2180 Surely it's meant to release ram after each generation right? Regardless, with the restart unless stopped flag, it's more of just a delay once in a while after a number of generations. Small little workaround. Thanks for the reply!
  7. Hey all, I'm having an issue where stable diffusion never releases RAM on AUTOMATIC1111. The more I generate, the higher it goes. The server went down today and I couldn't figure out why the last snapshot of the system showed 99% memory used of 64GB. I realised SD is just compounding away. This happens no matter what model I use with VAE models increasing it quicker for obvious reasons. Switching models makes no difference, it just continues on. I've had to limit SD to 20GB RAM and so it'll eventually crash when it hits. Is anyone else experiencing this?
  8. Thanks for this! So Linux seems super straight forward. Is it a similar auto generated command line process for Mac being FreeBSD based?
  9. Hi there guys, I can’t for the life of me find any info on the process of restoring images to Mac or Linux machines. I understand Windows gets a bootable USB, but how does this work for the other platforms? I run a real estate office predominantly using Windows machines but it’s not uncommon for agents to prefer to use Macs or already have their own. Also, how would one use the image backups to restore without a network connection if needed? This is a great piece of software but its biggest downside is that the documentation is severely lacking and heavily outdated in sections. Urbackup really need to get on that. It took me days to get LDAP working and to learn how to properly get a reverse proxy + web socket without any port forwarding working for internet client backups, and not just the webui, or to even learn it supported web sockets 😅
  10. Please excuse the double post. I've run into an actual issue with Sunshine that is replicable on fresh installs. Not sure if this is since the most recent image update a day or two ago. I should note this is all on LAN with the container running on the Host network. I noticed an issue when trying to start a stream from a Moonlight client where an error is thrown citing port forwarding instructions. Upon checking the container, I noticed the Sunshine icon is missing from the system tray in the top right, albeit the tile is still there and can be interacted with, it's just blank. Right clicking the tile and selecting Quit results in the tile reappearing after a second or so and not properly exiting, and "Open Sunshine" does nothing. I had to open the UI via Applications > Multimedia. I played with it for a bit and thought I'd start with a fresh container and image. I noticed the tile acting in the exact same way on the fresh install, only this time there is no application entry for Sunshine to be seen. When accessing the web UI, the logs read this when attempting to start a stream from a client: [2023:08:31:20:36:03]: Info: Found encoder nvenc: [h264_nvenc, hevc_nvenc] [2023:08:31:20:36:03]: Info: Executing Do Cmd: [/usr/bin/xfce4-minimise-all-windows] [2023:08:31:20:36:04]: Info: Executing [Desktop] [2023:08:31:20:36:04]: Fatal: Couldn't bind Audio server to port [48000]: Address already in use [2023:08:31:20:36:04]: Error: Failed to start a streaming session When stopping the failed stream from the client, the logs read: [2023:08:31:20:36:24]: Info: Executing Undo Cmd: [/usr/bin/sunshine-stop] [2023:08:31:20:36:24]: Warning: Return code [1] Subsequent attempts throw a different port in the error: [2023:08:31:20:36:35]: Info: Found encoder nvenc: [h264_nvenc, hevc_nvenc] [2023:08:31:20:36:35]: Info: Executing Do Cmd: [/usr/bin/xfce4-minimise-all-windows] [2023:08:31:20:36:36]: Info: Executing [Desktop] [2023:08:31:20:36:36]: Error: Couldn't bind Control server to port [47999], likely another process already bound to the port [2023:08:31:20:36:36]: Error: Failed to start a streaming session When the container starts up and when I click Quit on the blank tray icon where it reappears, the container logs read (not sure if relevant): 2023-08-31 20:58:52,277 INFO exited: sunshine (exit status 0; expected) 2023-08-31 20:58:52,278 INFO reaped unknown pid 3294 (exit status 1) 2023-08-31 20:58:53,282 INFO spawned: 'sunshine' with pid 4190 2023-08-31 20:58:53,282 INFO reaped unknown pid 749 (exit status 0) 2023-08-31 20:58:55,017 INFO success: sunshine entered RUNNING state, process has stayed up for > than 1 seconds (startsecs) 2023-08-31 20:59:17,387 INFO reaped unknown pid 3723 (exit status 0) And Sunshine logs on startup read (not sure if this is just because VNC audio is disabled or something else): [2023:08:31:21:05:45]: Error: Failed to map UDP 48000: 729 I noticed the dashboard now says the Sunshine version is Version 0.20.0 where as before it was a Dirty version. Not sure if that's relevant or if there is somehow a conflict between two fighting Sunshine instances. On one of the fresh installs, I tried installing Sunshine from the Software app over the current one, but the issue was the same. Is anyone else having issues?
  11. Got this to work in the end! Edited my last post with the issue I was having. I posted here initially as Tailscale wasn't giving me great performance. Got it working through good old DDNS.
  12. Thanks for your response. Under Applications > Games I have Steam and nothing else. This is where the confusion is for me, there's nothing else there. Was this removed? Searching the application finder also yielded nothing, it doesn't seem to be installed. EDIT: Just learned that this was removed and is installable now through the Software program instead. Regarding Moonlight/Sunshine, my question was is there a way to connect to Sunshine via Moonlight over the Internet remotely and away from the home network? I have a dynamic external IP so I'm looking for a good solution without having to check the IP of the house every time I want to connect when I'm away. EDIT 2: Got this to work using Cloudflare DDNS and an unproxied CNAME. This is what I was trying the whole time but the issue was the Moonlight client didn't like the "https://" before the hostname.
  13. Hey all, First of all, GREAT project. It's turned my switch running android into an all-in-one gaming solution. I read somewhere there were scripts to install other launchers like Epic games and such though I can't see anything additional. Is this something I have to create myself? What's the correct way of installing these and which ones are supported? Also would this support something like Moonlight Internet Hosting Tool to get moonlight working away from the home network? I found tailscale had bandwidth issues. Thanks!
  14. Hey All, Does anyone have Recognize working with GPU Passthrough yet?
  15. Yep, that was it. Cheers! Strangely I still get the python errors but it's connecting and downloading just fine.
  16. Hey all. I'm suddenly running into an error with sabnzbd since today's update. The main takeaways is it obviously can't download, what seems to be a Python3 error, and for some reason is expecting an older version of SABCTools ERROR a minute ago [13/Jun/2023:22:43:02] ENGINE Error in HTTPServer.serve Traceback (most recent call last): File "/usr/local/lib/python3.11/dist-packages/cheroot/server.py", line 1814, in serve self._connections.run(self.expiration_interval) File "/usr/local/lib/python3.11/dist-packages/cheroot/connections.py", line 198, in run self._run(expiration_interval) File "/usr/local/lib/python3.11/dist-packages/cheroot/connections.py", line 241, in _run new_conn = self._from_server_socket(self.server.socket) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/dist-packages/cheroot/connections.py", line 294, in _from_server_socket s, ssl_env = self.server.ssl_adapter.wrap(s) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/dist-packages/cheroot/ssl/builtin.py", line 270, in wrap s = self.context.wrap_socket( ^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.11/ssl.py", line 517, in wrap_socket return self.sslsocket_class._create( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.11/ssl.py", line 1075, in _create self.do_handshake() File "/usr/lib/python3.11/ssl.py", line 1346, in do_handshake self._sslobj.do_handshake() ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:992) ERROR a minute ago Essential modules are missing, downloading cannot start. ERROR a minute ago SABCTools disabled: no correct version found! (Found v7.1.0, expecting v7.0.2) Is anyone else having this issue?
  17. Would CA Watchtower work or should we be installing Watchtower using compose?
  18. I would also like to know this as well. How do we even add this persistently to the host in unRAID
  19. Will this work the same way for iGPU passthrough as well?
  20. Excuse the double post. Thought you might be interested in case you come across this again, or on the off chance someone else runs into this. I believe it's linked to the unRAID MyServers feature. I had neglected OS updates for a while and I was logged out of the service when unRAID overhauled the forums. I re-signed in that day from the server. It explains why my server name is written in the file title and may explain why it's a script. No idea why this happened but it seems like this was it. Cheers again for your help!
  21. I'll be looking over the volume mappings but I'm quite sure I've never accidentally mapped the base appdata folder for any container's /config directory. And if I had, there'd me a lot more in there. The only script related item for this week was running this to check container and volume sizes within the docker img before i switched to using a directory. du -ah /var/lib/docker/containers/ | grep -v "/$" | sort -rh | head -60 | grep .log So strange. Anyways, i've backed it up and removed it. Can't imagine the file would be very functional to anything regardless. Appreciate your help and prompt replies! The only other thing I noticed in the backup logs was this: [10.04.2023 03:04:16] Separate archives enabled! [10.04.2023 03:04:16] Ignoring: . [10.04.2023 03:04:16] Ignoring: .. Is this ignoring the separate archives setting?
  22. The contents (sanitized): [InternetShortcut] URL=http://unRAIDIP:WebUIPort/webterminal/syslog/ SUPER weird. The URL when logged into unRAID returns a 502 What would the script even do? The new container editions this week have been: Xteve (two distros from different authors for testing) Emby GluetunVPN Binhex-privoxyVPN ChannelsDVR which is now removed A multitude of different distros of sabNZBD to find some that allowed for app level/internal container port changes
  23. For the first time I've noticed a file in appdata with the name "-usr-local-emhttp-webGui-scripts-run_cmd tail -f -n 90 -var-log-syslog (AvsHome).url". Opening it opens a browser with the text: Attempt to invoke interface method 'java.lang.String java.lang.CharSequence.toString()' on a null object reference Any idea what that is? Here's the entire directory. Some cleaning up of old folders needed: ApacheGuacamole nobody drwxrwxrwx <FOLDER> 2022-10-11 22:03 cache ... audiobookshelf nobody drwxr-xr-x <FOLDER> 2022-11-29 03:34 cache ... Authelia nobody drwxrwxrwx <FOLDER> 2022-05-01 13:09 cache ... authentik root drwxrwxrwx <FOLDER> 2022-11-11 01:14 cache ... bazarr nobody drwxrwxrwx <FOLDER> 2023-01-02 14:53 cache ... binhex-delugevpn nobody drwxrwxr-x <FOLDER> 2022-05-28 16:12 cache ... binhex-krusader nobody drwxrwxrwx <FOLDER> 2022-04-30 18:48 cache ... binhex-pqbittorrentvpn nobody drwxrwxr-x <FOLDER> 2022-05-26 01:04 cache ... binhex-privoxyvpn nobody drwxrwxr-x <FOLDER> 2023-04-10 11:31 cache ... binhex-qbittorrentvpn nobody drwxrwxrwx <FOLDER> 2022-04-29 23:47 cache ... binhex-qbittorrentvpn-1 nobody drwxrwxr-x <FOLDER> 2022-05-28 15:54 cache ... binhex-readarr nobody drwxrwxr-x <FOLDER> 2023-04-11 07:08 cache ... binhex-sabnzbd nobody drwxrwxr-x <FOLDER> 2023-04-04 18:45 cache ... binhex-sabnzbdvpn nobody drwxrwxr-x <FOLDER> 2022-05-26 17:01 cache ... binhex-sabnzbdvpn-1 nobody drwxrwxr-x <FOLDER> 2022-05-28 16:22 cache ... bookstack nobody drwxr-xr-x <FOLDER> 2022-11-25 17:42 cache ... calibre nobody drwxrwxrwx <FOLDER> 2023-04-09 03:45 cache ... calibre-web nobody drwxrwxrwx <FOLDER> 2023-04-11 04:00 cache ... channels-dvr nobody drwxr-xr-x <FOLDER> 2023-04-05 21:32 cache ... chrome nobody drwxrwx--- <FOLDER> 2022-06-08 21:29 cache ... code-server root drwxrwxrwx <FOLDER> 2022-09-19 03:22 cache ... data nobody drwxrwxrwx <FOLDER> 2022-04-25 14:31 cache ... emby nobody drwxr-xr-x <FOLDER> 2023-04-06 09:55 cache ... filebrowser nobody drwxr-xr-x <FOLDER> 2022-06-09 15:08 cache ... Firefox nobody drwxr-xr-x <FOLDER> 2023-04-07 23:13 cache ... gluetun root drwxr-xr-x <FOLDER> 2023-04-11 06:51 cache ... goaccess nobody drwxrwxrwx <FOLDER> 2022-09-21 09:28 cache ... jackett nobody drwxrwxrwx <FOLDER> 2022-09-12 03:19 cache ... jellyfin nobody drwxr-xr-x <FOLDER> 2022-09-16 03:33 cache ... kavita chrisavs drwxrwxrwx <FOLDER> 2023-04-11 06:52 cache ... komga chrisavs drwxrwxrwx <FOLDER> 2023-04-11 05:59 cache ... krusader nobody drwxrwx--- <FOLDER> 2022-06-09 11:23 cache ... lidarr nobody drwxr-xr-x <FOLDER> 2023-04-11 07:07 cache ... Logarr nobody drwxrwxrwx <FOLDER> 2022-06-07 23:15 cache ... macinabox nobody drwxr-xr-x <FOLDER> 2023-04-07 23:50 cache ... main-sabnzbd nobody drwxrwx--- <FOLDER> 2023-04-07 21:10 cache ... mariadb nobody drwxrwxrwx <FOLDER> 2022-09-16 03:33 cache ... mongodb UNKNOWN drwxrwxrwx <FOLDER> 2022-11-29 14:43 cache ... mongodb.old root drwxrwxrwx <FOLDER> 2022-09-09 16:12 cache ... Monitorr nobody drwxr-xr-x <FOLDER> 2022-06-07 21:21 cache ... mylar3 nobody drwxrwxrwx <FOLDER> 2022-09-21 03:35 cache ... netdata root drwxr-xr-x <FOLDER> 2022-09-20 23:13 cache ... nextcloud nobody drwxrwxrwx <FOLDER> 2022-11-17 11:47 cache ... Nginx-Proxy-Manager-Official nobody drwxrwxrwx <FOLDER> 2022-04-30 03:28 cache ... Notifiarr nobody drwxr-xr-x <FOLDER> 2022-12-06 22:04 cache ... nzbgetvpn nobody drwxr-xr-x <FOLDER> 2022-05-26 21:04 cache ... ombi nobody drwxr-xr-x <FOLDER> 2023-04-11 05:40 cache ... onlyofficeds root drwxr-xr-x <FOLDER> 2022-06-07 13:20 cache ... organizrv2 nobody drwxrwxrwx <FOLDER> 2023-04-09 10:05 cache ... overseerr nobody drwxrwxrwx <FOLDER> 2022-09-20 03:33 cache ... P3R-Brave-Browser chrisavs drwxr-xr-x <FOLDER> 2022-06-08 21:15 cache ... P3R-Firefox-Browser chrisavs drwxr-xr-x <FOLDER> 2022-06-08 21:40 cache ... P3R-OpenRGB nobody drwxrwxrwx <FOLDER> 2022-04-27 23:12 cache ... pihole-dot-doh root drwxr-xr-x <FOLDER> 2022-09-21 21:40 cache ... plex nobody drwxrwxrwx <FOLDER> 2022-09-21 03:35 cache ... portainer-ce nobody drwxr-xr-x <FOLDER> 2022-11-01 03:34 cache ... postgresql14 UNKNOWN drwx------ <FOLDER> 2023-04-11 06:51 cache ... prowlarr nobody drwxrwxr-x <FOLDER> 2023-04-11 07:07 cache ... PuTTY nobody drwxr-xr-x <FOLDER> 2022-11-10 03:34 cache ... pwm root drwxrwxrwx <FOLDER> 2022-11-08 23:26 cache ... pwm.old nobody drwxrwxrwx <FOLDER> 2022-05-18 20:35 cache ... qbittorrent nobody drwxrwxr-x <FOLDER> 2023-04-05 00:21 cache ... qbittorrentvpn nobody drwxr-xr-x <FOLDER> 2022-05-26 01:11 cache ... radarr nobody drwxrwxrwx <FOLDER> 2023-04-11 07:07 cache ... readarr nobody drwxrwxr-x <FOLDER> 2023-04-11 07:08 cache ... rebuild-dndc nobody drwxr-xr-x <FOLDER> 2023-04-10 13:25 cache ... redis chrisavs drwxrwxrwx <FOLDER> 2022-05-01 12:52 cache ... rocketchat nobody drwxr-xr-x <FOLDER> 2022-09-17 01:42 cache ... sabnzbd nobody drwxrwx--- <FOLDER> 2023-04-07 21:01 cache ... sonarr nobody drwxrwxrwx <FOLDER> 2023-04-11 06:52 cache ... stash nobody drwxrwxr-x <FOLDER> 2023-04-11 06:52 cache ... swag nobody drwxrwxrwx <FOLDER> 2022-04-25 13:28 cache ... tailscale nobody drwxr-xr-x <FOLDER> 2022-12-25 13:17 cache ... tautulli nobody drwxrwxrwx <FOLDER> 2023-04-11 07:08 cache ... torbrowser nobody drwxrwx--- <FOLDER> 2023-04-11 07:08 cache ... ubooquity nobody drwxrwxrwx <FOLDER> 2022-05-09 22:29 cache ... unpackerr nobody drwxrwxr-x <FOLDER> 2022-04-27 20:03 cache ... vaultwarden nobody drwxr-xr-x <FOLDER> 2023-04-11 06:51 cache ... vm_custom_icons nobody drwxrwxrwx <FOLDER> 2022-10-06 17:13 cache ... whisparr nobody drwxrwxr-x <FOLDER> 2023-04-11 07:07 cache ... xteve nobody drwxr-xr-x <FOLDER> 2023-04-05 14:04 cache ... xteve_dnsforge UNKNOWN drwxr-sr-x <FOLDER> 2023-04-11 06:53 cache ... -usr-local-emhttp-webGui-scripts-run_cmd tail -f -n 90 -var-log-syslog (AvsHome).url chrisavs -rw-rw-rw- 69.0 B 2023-04-04 22:55 cache ... 83 objects: 82 directories, 1 file (69.0 B total)
  24. Hey all, I'm having an issue with Privoxy not starting properly. I'm getting a lot of this in the logs on repeat: 2023-04-10 11:42:38,115 DEBG 'watchdog-script' stdout output: [info] Privoxy not running 2023-04-10 11:42:38,116 DEBG 'watchdog-script' stdout output: [info] Attempting to start Privoxy... 2023-04-10 11:42:50,154 DEBG 'watchdog-script' stdout output: [warn] Wait for Privoxy process to start aborted, too many retries [info] Showing output from command before exit... MicroSocks works fine. I'm running this with VPN set to off as I'm running this through another VPN container. I'm using this purely for the HTTP and SOCKS5 proxies. Also, what does DEBUG do? Does it show more in depth logs or something else? Ideally I'd like to confirm that the proxies are functioning normally with connections Thanks in advance
  25. I've managed to get SHADOWSOCKS to work. I'm not sure how but thanks for the help! The final issue I'm having is with tinyproxy. I get these in the logs. Is this normal? API keys redacted 23-04-10T11:02:45+10:00 WARN [http proxy] cannot process request for client 172.17.0.1:40200: Get "http://192.168.0.2:8070/api/v2/app/webapiVersion": read tcp 172.17.0.2:40684->192.168.0.2:8070: read: connection reset by peer 2023-04-10T11:02:45+10:00 WARN [http proxy] cannot process request for client 172.17.0.1:40202: Get "http://192.168.0.2:8070/api/v2/app/webapiVersion": read tcp 172.17.0.2:40688->192.168.0.2:8070: read: connection reset by peer 2023-04-10T11:12:35+10:00 WARN [http proxy] cannot process request for client 172.17.0.1:53262: Get "http://172.18.0.109:8989/api/system/status?apikey=": dial tcp 172.18.0.109:8989: i/o timeout 2023-04-10T11:13:05+10:00 WARN [http proxy] cannot process request for client 172.17.0.1:56110: Get "http://172.18.0.109:8989/api/v3/system/status?apikey=": dial tcp 172.18.0.109:8989: i/o timeout 2023-04-10T11:13:35+10:00 WARN [http proxy] cannot process request for client 172.17.0.1:50442: Get "http://172.18.0.109:8989/api/v3/series/?apikey=": dial tcp 172.18.0.109:8989: i/o timeout