Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

ChuckBuilds

Members
  • Joined

  • Last visited

Everything posted by ChuckBuilds

  1. This looks like a super cool feature and something I think should help me minimize spin-up time, however it seems like it is keeping my disks awake more often than not. Any advice on how tune this better for my needs?
  2. Not the original poster but I am having the error after updating. Weird part is it is trying to download v565.77 but I am choosing v575.57.08 . Diagnotstics attached. Thanks for the fix below. Sorry I missed it the first time. theblender-diagnostics-20250602-2335.zip
  3. Flash passed tests but still formatted and restored from a backup. Fingers crossed for smooth sailing. Thanks.
  4. Thanks for the response. I am going to look into some way to test the disk on module. It does have a unique GUID and plugs into the USB header on my motherboard. Before I put it in Unraid, Windows saw it just like any other flash drive. Somewhere on the forums people were recommending it for reliability and durability. Flash back up on the way. Testing to come after. Thanks
  5. Hello, I've been on 7.1.2 for a few days now and randomly had my server become unresponsive. I couldn't ping it on local network, couldn't ssh, couldn't get the display connected to it to light up, couldn't access web gui or hosted containers. So, I did a hard restart by smothering the power button (didn't respond to just a click) and then booted into safe mode. It seemed fine in safe mode so I rebooted from there into the regular mode and immediately noticed some issues. my drives were no longer assigned, brief scare but I was able to put them back. My server name was re-named / reset to "Tower" Web Gui is very slow to load Is this just a symptom of a dirty shutdown? Is there anything in my diagnostic that looks damaged? Should I just rename my server back to what it was and carry on or should I restore from an unraid connect backup? I am using a Disk on Module instead of a flash drive for more robustness and it has been rock solid for a year or more with active cooling, so I don't think it's the usual failing usb disk. I think I'm just confused right now and looking for any pointers. Thanks for any insight you can provide. tower-diagnostics-20250526-1611.zip
  6. 13 days later got a crash. I had just re-enabled disk spin-down after 12 days so I can't help but feel that it is related. At the beginning of 13 days I reseated CPU, RAM, updated BIOS, and loaded defaults on BIOS. Disabled C States, disabled XMP, disabled "Game Mode" CPU Overclock. Timer is reset, but I am running out of ideas on what is messing up! I could access the command line locally on the machine with a connected monitor and keyboard. I tried to login as root and got the Error that login timed out after 60 seconds. Just documenting at this point, if someone stumbles across this I hope I get a definitive resolution at some point.
  7. Unfortunately it struck again today. 15 days later. Which is a lot better up-time but I was right next to the machine this time. I was able to use the Local command line on the machine and got an error when logging in that it was timing out after 60 seconds. This led me to google and a result elsewhere on these forums that it was related to their Intel C-States. I just went to BIOS and disabled Intel C-States. Hope to be marking this the solution in the near future.
  8. I think I narrowed it down to my BIOS settings trying to Overclock the CPU automatically and maybe crashing during peak usage. It wasn't abundantly clear how to get it off but eventually got it disabled and it seems more solid. Just hit 10 days without an issue, which is more than I could say before. I hope it continues. I am a bit surprised that is the issue as I don't recall ever turning that feature on but maybe when I was swapping the case and doing fan tuning I accidentally tuned it on. That doesn't really explain it as I swear I had issues before the case swap - but either way it seems good now (for now!). Thanks for checking JorgeB, it helped convince me it was a hardware issue and not a bad Unraid setting.
  9. Still working on this. It is seemingly random. I had a log message of a disk spinning down right before it went unresponsive so I disabled disk spindown. Not even 24 hours later it is unresponsive and the last syslog message was from 2 hours ago when I successfully logged into the WEBGUI. I've run an extended memtest with no errors. CPU and system temps are cool. I suppose my next step is safe mode but I am not looking forward to 24+ hours without my homeassistant running. Any direction is appreciated.
  10. Hello, I've been experiencing some (seemingly) random system lockups and instability. I am sure I have something configured poorly but can't seem to find it. Symptoms: Can't access GUI or running containers. Sometimes not even SSH into the machine. What's new: I've recently swapped cases for my machine but have had these symptoms sporadically before. What I'm doing about it: I'm not entirely sure what the issue is. I have the Syslog open on my windows machine via TFTPD64 and I don't really see any errors. (Exception: when my webgui was frozen on a blank screen I tried to change the trailing "/main" to "/docker" to see if I could identify a problem container. It had an error for that). I have previously run Memtest (in the last month or so) and did not have any errors after it finished. I'm hopeful I've got a dumb setting somewhere but I can't seem to identify it. The below image shows the High IO and the subsequent lockup / unavailability. Version 6.12.11 Diagnostics attached. Thanks for your time! theblender-diagnostics-20240810-2012.zip
  11. That would explain why Frigate has been crashing on me lately. I'll investigate further. Thank you
  12. Hello, I have gotten an Out of Memory error that Fix Uncommon Problems is reporting. I have restarted but it comes back each day. I've attached my Diagnostics as requested. I am on version 6.12.8 and am not seeing much error log activity outside of Fix Uncommon Problems telling me about it. Any direction is appreciated, thanks for your time! unraid diagnostics 31724.zip
  13. No, I had decent luck with the StreamMaster Discord - got it fixed up without needing gpu but then started having issues again. I'll look into it soon fruther
  14. Hello, I am getting error : ER_FK_INCOMPATIBLE_COLUMNS when updating ghost to :latest or :5.74 , works fine on 5.59.1 . I haven't been able to find any reason why on the Ghost Forums. Thought I'd ask here if anyone else has solved this. Thanks. UPDATE: I think I solved my own issue. Instead of deleting, just going to leave a breadcrumb for future folks (or myself). https://ghost.org/docs/faq/troubleshooting-mysql-database/#error-er_cant_create_table-with-_foreign-key-constraint-is-incorrectly-formed_ Using Adminer (community Apps) Container to connect to my MYSQL, I had the wrong (old) collation. Updated from utf8mb4_general_ci to utf8mb4_0900_ai_ci using Adminer. Execute the following SQL Statement: SELECT CONCAT('ALTER TABLE ', table_name, ' CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;') AS sql_statement FROM information_schema.tables WHERE table_schema = 'ghost'; Using the output from above, execute the following sql statement: -- Disable foreign key checks SET foreign_key_checks = 0; -- Execute the generated ALTER TABLE statements ALTER TABLE actions CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci; ALTER TABLE api_keys CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci; -- ... (paste whole output from previous step) -- Enable foreign key checks SET foreign_key_checks = 1;
  15. I will ask the on app specific support too but was curious if you knew if we needed to / could passthrough a nvidia card for improved ffmpeg or streammaster performance? by default the video stream is choppy through the docker container.
  16. Hello, I am trying to pass a Logitech C920 (Crystal Cam) to an Octoprint Docker on Unraid 6.11.1. I have DVB Drivers installed, USB Manager installed, and have gotten the webcam to work in the docker by passing "/dev/video0" through as CAMERA_DEV and webcam device. The webcam will show in the docker when I start it, work for several hours, and seemingly randomly fail. No settings inside the docker container for octoprint seems to fix it. Inside Octoprint the stream and snapshot URL are: http://192.168.86.182:5003/webcam/?action=snapshot and it works when I restart the container without changing it, but after an undetermined period of time the link goes dead and both stream and snapshot can't access it. This makes me think it's an Unraid issue and not Octoprint. When I stop then reseat the usb cable then start the docker container it works, but if I click the restart or stop then start without replugging the webcam it fails. Unraid commands "lsusb" shows the Logitech CrystalCam and "ls /dev/" shows video0 and video1. The logs in Unraid and octoprint don't seem to indicate any issues. USB Webcam became unresponsive around Nov 28 18:30 or so. I downloaded USB Manager plugin in an effort to fix this but it didn't seem to change anything, but thought it was worth mentioning. Any ideas on where I need to look to diagnose this? Thank you! theblender-diagnostics-20221128-1932.zip theblender-syslog-20221129-0128.zip
  17. I had this previously working but seemingly overnight I cannot get the webcam to work anymore. I also have a video0 and video1 now, both seemingly pointing to the same camera, but both don't work. Any insight? EDIT: somehow changing it to video1 and back to video0 for -both- CAMERA_DEV and webcam in the template fixed for now.
  18. I am also getting this today after updating my docker image to ":latest". Hope for a new update soon to fix
  19. Thank you! That fixed it!
  20. Hello, First time posting so let me know if I miss anything. Problem: When my unraid turns on, I can access it gui via local network until my windows VM loads. At first I didn't know why I would lose the gui after like 1 minute, many restarts and using the gui mode on the actual computer, I can get it booted but when I start my windows 10 VM (but not my Homeassistant VM), I lose connection over local network. On the GUI on the computer (better way to word this? local host? physical screen attached to computer) I see that my interfaces bond0 and eth0 are down. A restart will fix this as long as my windows 10 vm is not auto-starting. Starting the VM promptly breaks it again. Hardware: Unraid 6.10.3 intel 12700k MSI MAG Z690 Tomahawk G.Skill Ripjaws V Series 4x16GB Nvidia P2000 Nvidia GTX 980ti Cache: Samsung 980 Dell H310 6Gbps SAS HBA w/ LSI 9211-8i P20 IT Mode Context: Updated my Unraid hardware last week and really had no issues, went from a 4790k to 12700k. Still using P2000 until I figure out how to use the intel igpu (just haven't gotten around to it). Unraid worked for about a week with no issues. My new cache drive arrived and after swapping it, I'm having this "eth0 down" issue. I will admit I've been screwing with this for a day now and am not sure what setting my PCIE ACS Override used to be. I don't think I changed an bios settings between old-working-unraid and new-issues-unraid. I have tried new ethernet cables, no change. I deleted the network.cfg file per some other posts but no change . Diagnostics attached. theblender-diagnostics-20220721-0921.zip

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.