Jump to content
We're Hiring! Full Stack Developer ×

JonathanM

Moderators
  • Posts

    16,319
  • Joined

  • Last visited

  • Days Won

    65

Everything posted by JonathanM

  1. Yes, containers share many resources, so there is negligible waste by duplicating containers, and the benefit of keeping the changeable data separate is clear, especially for recovery like you are doing. If you eat sleep and breathe database building and maintenance, then maybe keeping multiple databases in a single container would be easier for you to manage, but for us mere mortals that often have to resort to copying from backups for disaster recovery, separate containers is the way to go.
  2. Pinned (recommended) Should I unpin the 30 Nov 2022 now?
  3. You can use a trial key to set up the new server, get it running, then when you are ready to decommission the old server move the config folder from the trial USB to your original licensed USB, just be sure to keep the old license key file. The rest of the config would be from the new server.
  4. Yes, or you can continue to use the old flash drive and license. You can freely move the config folder minus the license file from stick to stick.
  5. Squid's already done exactly what you are asking for, click on the apps tab, top left is installed and previous entries.
  6. Not at all, Unraid is ideal for keeping a backup of your important files. Backup means a SECOND copy of something, if it's the only copy, it's by definition not a backup. If you keep the ONLY copy of a file on Unraid, then yes, you need to figure out a second place to keep a backup copy. Some people upload to a cloud storage provider, others have 2 arrays, some have USB attached drives that they update periodically and keep in a safe place while not being actively updated. You get to decide how important a file is, and what level of protection you want for it. Some of your files that are easily recreated from the originals, like Blu-Ray rips, there is no need to keep a second copy. Family photos however, they probably need need MULTIPLE backups, probably follow the 321 strategy, 3 distinct files on 2 different devices and 1 offsite, so a catastrophic event like a flood or fire is still recoverable.
  7. No simple answers, other than fewer drives = less power = less heat. Unraid parity (or any RAID redundancy for that matter) is not backup, it's hardware redundancy. It doesn't protect against any of the common issues like accidental or malicious deletion or corruption. You need to plan for a versioned backup of any data that is important to you. I know you didn't ask about backups, but drive reliability and failures are only a small part of keeping data safe and available.
  8. Depends. https://wiki.unraid.net/Manual/Shares#Allocation_method
  9. rclone possibly. See if removing it changes the behaviour.
  10. Some plugins use the docker subsystem to download and install on boot. Any containers created without a name get random names. Which plugins do you use?
  11. XMP is overclocking. Don't overclock a server, it's not enough of a boost to notice, and the downsides can be catastrophic.
  12. So change it to do what you want. That's the point of my post, here are the building blocks, assemble as needed.
  13. You will have to rewrite this to do what you want, but I think the basic concept is there for you. This script pings an IP, waits until it responds, then runs a command. If you research the ping command you should be able to use the logic the way you want. #!/bin/bash printf "%s" "waiting for IP to respond ..." while ! ping -c 1 -n -w 1 192.168.1.1 &> /dev/null do printf "%c" "." done printf "\n%s\n" "IP is responding" docker start "Container"
  14. I'm guessing then that you never told windows to disconnect it, which should result in "It's now safe to remove" message? https://www.howtogeek.com/685934/how-to-safely-remove-a-drive-on-windows-10/
  15. Sometimes the USB enclosure alters the addressing, causing the partition not to start at the proper spot. Any way you can hook them up direct to SATA? Wouldn't hurt to collect diagnostics with them attached and attach the zip to your next post. In this case, either drive should be mountable, because as long as you used the parity1 slot, the two drives should essentially be a RAID1 mirror. It's possible only one drive will SHOW as mountable, because the XFS signature would be identical keeping the second drive from mounting. Since you only had 2 drives, you actually might be ok.
  16. IF you have ALL the drives EXACTLY as they were when one drive went missing, Unraid will emulate as many drives as there were parity drives assigned at that point. Sounds like you may have hosed yourself by actively using some of the drives. You CAN start the array with a missing drive, but all the rest have to be there. Parity doesn't contain any data, just the answer to the equation formed by the rest of the data drives. When you know A+B+C+D=P, you can find the value of any single missing variable by using the rest. As soon as you remove 2 values, the answer isn't solvable for sure. Hopefully your repair works out for you.
  17. Do what they did to make it work.
  18. Perfectly reasonable. The example I quote is I think from Tom (Limetech) himself, where he had a server in an unheated garage, spun up the drives and a large number of them failed. I forget the details, but it demonstrates that spinning up a dead cold drive is not healthy for it. 30c is warmish, 35 is just a little more warmish, NOTHING compared to spinning up a drive at 5c. You didn't state the environment in which you keep the server, so I gave my best answer given limited info.
  19. Some drives report temps regardless of spin state, others don't. Your technique would work fine.
  20. Spin up / down is less of an issue than temperature shock. If the temperature difference between spun up and spun down is small, spin them down as soon as you can, assuming they won't get spun back up minutes later. If, on the other hand, you see a huge temperature swing every time the drives spin up, I'd be less likely to spin them down. Better to keep the drives warmer than ideal but at a steady temperature than to cool them way down only to heat them way up comparatively.
×
×
  • Create New...