chaosratt

Members
  • Posts

    45
  • Joined

  • Last visited

Everything posted by chaosratt

  1. Awesome, I know what I'm doing this weekend.
  2. You say you use it for KVM docker, do the pools get properly mounted and unmounted at startup/shutdown?
  3. I deleted the /boot/config/plugins/dynamix.plg file, but not the associated folder (I notice every *.plg has a matching folder) and rebooted, no change.
  4. I do have this: https://img.computing.zone/image/lyx9
  5. So I tried uninstalling the plugin (which was installed from the "apps" tab) and installing manually from the link in the first post. The installed version number is the same in both. No change. Syslog from today is attached. syslog.txt
  6. I've tried it even in incognito, still happens. One thing to mention, I did move the Unraid interface off port 80, everything else works just fine, just not this IPMI plugin. Regarding which pages generate the error, both the Setting and Fan Control tab have this error whenever I click apply.
  7. Interesting, I do now. When I replied earlier they were broken image icons.
  8. Awesome idea, but you might want to revisit your images from the original post, they're not working now.
  9. I'm having some issues with this plugin. It seems to be pulling the data just fine from my SuperMicro board, but I am unable to change any of its settings. The screen simply refreshes and the settings do not appear to "stick". Reviewing the Unraid logs I see this: Unraid root: error: update.php: missing csrf_token Doing some googling I see that there was a change to the webui in 6.3.0 RC that needs to be accounted for in plugins:
  10. I'll second this, I guess I should have said that myself. If a drive has an assigned location when removed, then that should be included with the drive data in the historical listing with the other metrics that are retained.
  11. So I've just run across a rather interesting flaw. When a drive is "removed" it is also imediatly removed from any layout settings and is only listed under historical devices. Which makes it impossible to figure out which of the 24 bays is occupied by a drive that just shat itself. If it was full I guess I could look for the empty one, but since its only half full, I guess I can just go and start yanking supposedly empty bays until I find one with a drive in it.
  12. You will receive a notice in the "Docker" tab of Unraid under the version column. When the author updates the docker image the "up-to-date" text will change to "update available" I believe, and its a link that can be clicked to stop/update/restart the docker image. This only happens with the docker author updates the image, which is about once a week currently. The built-in updater for Radarr is disabled I believe. So you will receive a notice in the app that an update is available, but you should wait until docker reports an update.
  13. I stand corrected, I had noticed the more frequent docker updates and faster start times, but had not correlated the two. I actually used the CA plugin to automate the docker updates now, since they're such a PITA to do manually (*click*, *click*, wait... *click*, next one, etc...). Everything except plex docker now auto-update once a week.
  14. most of the LinxServer.io dockers actually "install/update" their apps on first start, or if they have not been started in a while. Or they used to, I notice I get "docker update" notices a lot now, so don't know if that's changed. I used to be able to get many of their dockers to update the contained app just be restarting it.
  15. I believe the only "server" that MCMA can build or fetch on its own is the stock/vanilla jar. Everything else you have to fetch or build manually, and then place in the correct folder with the correct filename (from my personal experience using Forge). MCMA is a nice bit of software, but the documentation behind it is abysmal.
  16. Alright, I've gotten Let's Encrypt working in this. Its *very* crude, and this method voids your warranty from LS.io! Add an environmental variable to your docker: ADVANCED_SCRIPT = true in your appdata/apache/ folder (note, the root! not the appdata/apache/apache/!) make two files: userscript.sh apt-get install git -y git clone https://github.com/letsencrypt/letsencrypt /opt/letsencrypt /opt/letsencrypt/letsencrypt-auto --apache --config /config/letsencrypt.ini letsencrypt.ini # This is an example of the kind of things you can do in a configuration file. # All flags used by the client can be configured here. Run Certbot with # "--help" to learn more about the available options. # Use a 4096 bit RSA key instead of 2048 rsa-key-size = 4096 # Uncomment and update to register with the specified e-mail address email = <VALID EMAIL> # Uncomment and update to generate certificates for the specified # domains. domains = <YOU FQDN> # Uncomment to use a text interface instead of ncurses text = True # Uncomment to use the standalone authenticator on port 443 # authenticator = standalone # standalone-supported-challenges = tls-sni-01 # Uncomment to use the webroot authenticator. Replace webroot-path with the # path to the public_html / webroot folder being served by your web server. #authenticator = webroot #webroot-path = /config/www/ agree-tos At this point go to your appdata/apache/apache/site-confs/defualt.conf and change the key locations: SSLCertificateFile "/etc/letsencrypt/live/<domain>/cert.pem" SSLCertificateKeyFile "/etc/letsencrypt/live/<domain>/privkey.pem" SSLCertificateChainFile "/etc/letsencrypt/live/<domain>/chain.pem" This doesn't have any kind of cron to auto-renew every 60 days like is recommended, and there's no checking if it already has a cert so it tries to re-issue on every reboot of the docker, but it should be a good starting point. I welcome any feedback on this.
  17. Also, are your writes to existing files, or new files? In my experience, new files get written to cache, existing files get re-written in-situ (on the array).
  18. Anyone gotten mcmyadmin to behave behind a reverse proxy? It seems all the css/img paths are hardcoded and I can't find anything in the docs or configs to edit the default web path.
  19. Any idea if this will be added?? I've noticed the nginx docker with it, but I'm more comfortable with apache myself. +1 I hate doing this .... but +1
  20. IS there a special trick to getting the SMART system working? A previous post mention smartmontools as not being included.