elibosley
Administrators
-
Joined
-
Last visited
-
Currently
Viewing Topic: Introducing Apprise-Go: Universal Notifications in a Single Binary
Solutions
-
elibosley's post in Copy Fail Exploit?? (URGENT) CVE-2026-31431 was marked as the answerPlease see our post in our public CVE reports board here for updates on this: https://product.unraid.net/p/copy-fail-cve-2026-31431?b=cve-reports
-
elibosley's post in Unraid Connect Plugin Announcements was marked as the answerThis thread is being discontinued in favor of live updates from Github, follow them here:
https://github.com/unraid/api/releases
We may also post additional changelog updates in the Discord server (https://discord.unraid.net) and will continue to monitor the forums for support, we just won't continue to post release notes here.
-
elibosley's post in Cleaning up API keys was marked as the answerIt is not but I’m working on a more permanent solution now. These internal keys should be generated on first boot and not regenerated, We will be moving to a more maintainable system in a coming release.
-
elibosley's post in Primary server flaps Offline/Online; can’t add second server was marked as the answerThis all seems to be related to the issue we discovered today causing problems with the database backing mothership. Please try signing out and back in and let me know if issues persist.
-
elibosley's post in Can't Unregister Unraid Server from Unraid Connect was marked as the answerThis was a bug in our registration system. This is now fixed, please try again!
-
elibosley's post in Unraid Connect Plugin error was marked as the answerPlease update Unraid Connect and let me know if you’re still having this issue!
-
elibosley's post in Unraid logo disappears after I install the unraid connect plugin was marked as the answerCan you please install the plugin, and then enter this command:
unraid-api plugins install -b unraid-api-plugin-connect
Then please let me know if that works or errors out and I can help out from there.
-
elibosley's post in Unraid Connect Plugin breaks NGINX on server was marked as the answerWe’ve released quite a few updates that fixed docker and lifecycle issues since March, I’d recommend trying out the latest release if you’re willing as I’d love to know if it has solved these issues.
-
elibosley's post in Remote Access not working after upgrading to 7.1.4 — “✕ You have provisioned a valid SSL certificate” was marked as the answerThe latest update has fixed this lifecycle issue. Please update your Connect plugin.
-
elibosley's post in Huge graphql-api logs was marked as the answerThis is fixed as of our Monday, July 28 release, we’ve set a timer job to truncate logs over 5mb rather than relying on Logrotate.
-
elibosley's post in error: error writing to /var/log/graphql-api.log.1: No space left on device was marked as the answerThis is fixed as of our Monday, July 28th update - we now truncate logs every 20 minutes if they grow over 5 megabytes, which should prevent this going forwards.
-
elibosley's post in Connect Plugin Shows Backup Error was marked as the answerThank you for flagging this. We'll be releasing a hotfix today that should solve these issues.
-
elibosley's post in Unable to install My Server plugin was marked as the answerThat prior response is no longer the case. We no longer symlink the API in a way that would break zsh but not bash. I'm not sure why the issue still occurs and will need some community support to figure out what process exactly is failing.
Here is the updated solution that is confirmed working: https://forums.unraid.net/topic/191889-cannot-update-to-the-latest-version-of-the-plugin/#findComment-1568640
-
elibosley's post in Cannot update to the latest version of the plugin was marked as the answerI think that the way you're setting up zsh is likely breaking a lot of boot scripts (not just ours).
TL;DR
Yes, your line can and will break Unraid plugin installs by hijacking the login shell. Fix it by guarding with -t 1 to only exec Zsh in actual interactive terminals.
✅ Solution: Detect interactive terminal only
Modify the logic in .bash_profile to only launch Zsh if it's an interactive terminal (i.e., not from a script or system process):
Replace:
echo "if [ -d /mnt/user/appdata/zsh/.oh-my-zsh ]; then if [ -f /bin/zsh ]; then /bin/zsh; exit; fi fi" >> /root/.bash_profile
With something safer:
echo 'if [[ -t 1 && -f /bin/zsh && -d /mnt/user/appdata/zsh/.oh-my-zsh ]]; then exec /bin/zsh; fi' >> /root/.bash_profile
Explanation:
[[ -t 1 ]]: Only true if the shell has a terminal attached (i.e. interactive session)
exec /bin/zsh: Replaces the shell process only in interactive cases
This ensures:
Normal user terminals get Zsh
Plugin scripts, cron jobs, and Unraid boot/install logic remain unaffected
Note: I have NOT tested this logic and using Zsh like this (as default shell) is entirely outside of Unraid supported functionality. You will continue to have issues doing this in the future.
-
elibosley's post in Dashboard page stuck at loading was marked as the answerIt looks possible that your Connect client isn't installed. Please reinstall the plugin if possible and let me know if you see more options in that menu (flash backup, etc.)
-
elibosley's post in Cannot activate Flash Backup although logged in was marked as the answer@luve04 Please update your Connect plugin to the latest version. We've just shipped a release that should fix this issue.
-
elibosley's post in Unraid Connect webgui issues was marked as the answerI believe I've fixed this now! Please make sure to click on the "Reload" banner in Connect and report back if there are still issues.
-
elibosley's post in Unable to create a USB disk using the unraid USB Create v1.0.1 was marked as the answerThanks for reporting - please restart the USB creator and try again if you were having issues, we've fixed the download URL.
-
elibosley's post in Attention: This application template has been blacklisted. was marked as the answerSorry, we changed plugin URLs today. We've been working with @AndrewZ to minimize this, but something may have slipped through. Don't worry about the "Blacklisted" status, it's temporary and will be lifted once he sets the new URL to be valid.
-
elibosley's post in Error generating flash backup was marked as the answerHi!
Thanks for bringing our attention to this.
Please try again - we've fixed the issue.
Thank you!
-
elibosley's post in Unknown Unraid Server/license key in my unraid connect dashboard was marked as the answerCan you give it another check? Should have you sorted out.
-
elibosley's post in Unraid-api filling up logs was marked as the answerThe log max size is set to 10MB, so it should never exceed this. It looks like yours is 7.5M here, so it shouldn't get much bigger before being rotated (aka deleted)
We'll be changing this to 2.5MB in the next Connect plugin release.
-
elibosley's post in Unraid-API log growing daily was marked as the answerThe log max size is set to 10MB, so it should never exceed this. It looks like yours is 7.5M here, so it shouldn't get much bigger before being rotated (aka deleted)
We'll be changing this to 2.5MB in the next Connect plugin release.
-
elibosley's post in DNS issue with USB tool download was marked as the answerIt should be fixed now! Just wait for your DNS to clear or try a different browser!
-
elibosley's post in unraid-api not starting was marked as the answerHi Everyone! We've narrowed this down to a field that used to be inside of the myservers.cfg file but is no longer present. For some reason our ini serializer cannot support this field so it crashes when it tries to write it.
The easiest solution is to delete the file which is located at /boot/config/plugins/dynamix.my.servers/myservers.cfg. This will log you out but My Servers will work after it restarts.