tmchow

Members
  • Posts

    441
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

tmchow's Achievements

Enthusiast

Enthusiast (6/14)

11

Reputation

1

Community Answers

  1. @Eurotimmy I've updated the xml file to add the chown directions to avoid the permissions error. It should be picked up by CA within a few hours on the next refresh cycle.
  2. I've had tailscale running on my unraid server for awhile now, but have been using some script method I found way back. #!/bin/bash set -x # check latest version against what's installed VER=$(curl -sL https://api.github.com/repos/tailscale/tailscale/releases/latest | jq -r ".tag_name" | cut -c 2-) if [ "$VER" = "$(tailscale version | head -n1)" ]; then echo "$VER already installed, exiting..." exit 0 fi # download latest version, restart daemon echo "New version $VER available. Grabbing..." curl -fsSL -o /boot/config/tailscale/tailscale_static.tgz "https://pkgs.tailscale.com/stable/tailscale_${VER}_amd64.tgz" if [ $? -eq 0 ]; then pkill tailscaled sleep 1 /usr/sbin/tailscaled -cleanup bash /boot/config/tailscale/install.sh bash /boot/config/tailscale/start.sh fi I just noticed this plugin.. is this the recommended way to go vs rolling my own thing with this script? I cannot remember for the life of me why that script was recommended...perhaps before a plugin was created?
  3. what’s not working with this template that you can’t update to the latest version?
  4. Hmm. I don’t see this option at all in my configuration. https://imgur.com/a/OzZLKl6 I'm not sure how to update the firmware on my unit (I've also got a APC Smart-UPS X 1500). I recall trying to do this connecting the USB cable to a windows laptop but the software couldn't find it. According to the menus I’m currently on: firmware 09.8 ID:20 My date code is 2003 so it should be updated according to this page here: > According to that page my firmware update should work but when I previously tried this it didn't work. I got to 7% and it power cycles with no update successful:
  5. Basic auth isn’t supported anymore so those aren’t needed. As for the error it looks like a permission issue. Make sure the directory and file are accessible by the n8n user
  6. You’re not missing anything. Mistake on my part. I’ve patched the app.
  7. Hi, sorry! I haven't paid much attention to this container I created support for until now as I don't use n8n much. However, I have done updates which should fix this for n8n 1.x launch: - Changed home directory to `/home/node/.n8n` from `/root/.n8n` - Renamed webhook tunnel variable to `WEBHOOK_TUNNEL` - Dropped basic auth config since it's deprecated in n8n 1.x
  8. Thanks. I came to this conclusion after posting my original post. Appreciate you chiming in to reaffirm!
  9. you can also accomplish this within Plex server settings specify the transcode directory to be /transcode/PlexRamScratch instead of it being /transcode
  10. so no issue with a VM on the cache drive causing too many writes to the SSD? Not sure if it’s something to worry about or not
  11. my cache drives are in a cache pool actually. So instead of putting the imagined on a single ssd connected with unassigned drives plug-in, sounds like I should put it on the cache pool?
  12. Deleting the image shouldn't do anyting to your preferences (e.g. saved in /mnt/user/cache/appdata/n8n).
  13. Hey! Sorry, I'm not using this regularly anymore hence me not looking at this. I dived back into this and saw the same "not available" message you had. However, I deleted the container and reinstalled it from scratch and it seems to work. Not sure what is different as the XML is exactly the same. Try reinstalling from scratch?