CorvinusLucian

Members
  • Posts

    18
  • Joined

  • Last visited

CorvinusLucian's Achievements

Noob

Noob (1/14)

7

Reputation

  1. Right next to the done button at the bottom of the page "Download current confirguration as Zip File (Apply changes first)"
  2. Reinstalling plugin resolved it for me. Thankfully it has backup/restore functions (although restore is convoluted)
  3. Yeah I'm using NPM, not sure what configuration changes I need to make to NPM to prevent disconnections.
  4. I've noticed after a couple mins of inactivity the webui will display the message "Tixati - Disconnected". Is there a way to either customize or disable this behaviour?
  5. Yeah I have UD preclear installed, I'll schedule a restart when I've got a spare 20 mins. Thanks for the help @ljm42
  6. That did the trick... <-----UNRAID-API-REPORT-----> SERVER_NAME: unraid ENVIRONMENT: production UNRAID_VERSION: 6.10.3 UNRAID_API_VERSION: 2.49.2 (running) NODE_VERSION: v14.15.3 API_KEY: valid MY_SERVERS: authenticated MY_SERVERS_USERNAME: username CLOUD: disconnected RELAY: disconnected MINI-GRAPH: disconnected ONLINE_SERVERS: OFFLINE_SERVERS: HAS_CRASH_LOGS: no </----UNRAID-API-REPORT----->
  7. root@unraid:~# ls -al /usr/local/sbin/unraid-api lrwxrwxrwx 1 root root 36 Jul 27 17:38 /usr/local/sbin/unraid-api -> /usr/local/bin/unraid-api/unraid-api root@unraid:~# ls -al /usr/local/bin/unraid-api/ /bin/ls: cannot access '/usr/local/bin/unraid-api/': No such file or directory
  8. At this point, I've probably reinstalled about 4-5 times, I always let it complete
  9. Also having same issue creating diagnostics. running unraid-api reports command not found (Output is anonymized, use '-vv' to see full details) Unraid OS 6.10.3 with My Servers plugin version 2022.07.26.1609 ✅ Signed in to Unraid.net as CorvinusLucian Use SSL is yes ✅ Rebind protection is disabled for myunraid.net Local Access url: https://[redacted]:44300 ✅ 10-0-2-254.hash.myunraid.net resolves to 10.0.2.254 Request: { "keyfile": "[redacted]", "plgversion": "2022.07.26.1609", "internalhostname": "[redacted]", "internalport": "44300", "internalprotocol": "https", "remoteaccess": "no", "servercomment": "", "servername": "[redacted]", "internalip": "10.0.2.254" } Response (HTTP 200): [] success
  10. I've just updated the My Servers plugin (2022.07.26.1609) and now get the following error: "The My Servers plugin is out-of-date and will not connect to Unraid's cloud services. Please update the plugin." My Servers section of unraid.net shows my server as offline. I uninstalled and then reinstall the plugin, no joy. I have no 0 byte files, and my server DNS was already set to cloudflare & google backup My webgui is on a different port for NPM (44300) In the interim is possible to manually rollback to previous release?
  11. Should it be of interest, I'm working round the limited notification agent options via Mailrise (uses apprise api). Thanks to the Compose Manager plugin, it is very easy to run on the unraid server itself.
  12. The ability to have Matrix as a notification agent would be great. Also having a section for custom agents. An example script to send a message to Matrix room (inc E2EE) 1 2 #!/bin/bash # https://gist.github.com/RickCogley/69f430d4418ae5498e8febab44d241c9 # https://gist.github.com/travnewmatic/769cd9532504e0f85983d69acd4a7d29 # # Get Access Token # curl -XPOST -d '{"type":"m.login.password", "user":"***your_username***", "password":"***your_password***"}' "https://matrix.org/_matrix/client/r0/login" msgtype=m.text homeserver=<homeserver> room=<room> accesstoken=<accesstoken> #Piped Version #curl -XPOST -d "$( jq -Rsc --arg msgtype "$msgtype" '{$msgtype, body:.}')" -H 'Authorization: Bearer $accesstoken' "https://$homeserver/_matrix/client/r0/rooms/$room/send/m.room.message" #Arg Version curl -XPOST -d '{'\"msgtype\":\"$msgtype\"', '\"body\"':'\""$*"\"'}' -H 'Authorization: Bearer $accesstoken' "https://$homeserver/_matrix/client/r0/rooms/$room/send/m.room.message" #RichText Version #curl -XPOST -d '{"msgtype":"m.text", "body":"**Hello**","format":"org.matrix.custom.html","formatted_body":"<strong>hello</strong>"}' -H 'Authorization: Bearer $accesstoken' "https://$homeserver/_matrix/client/r0/rooms/$room/send/m.room.message"