-
[Support] Linuxserver.io - Nextcloud
I found it located at /app/www/public/core/Migrations/Version33000Date20251209123503.php
-
Command line for safely shutting down unraid server
Sure, I don't really use it anymore as I found 6.12 to resolve lots of my UPS issues. It currently pings 3 different devices and if it can't successfully ping the devices for about 10 minutes then unraid shuts down. Please adjust according to your needs. #!/bin/bash i=0 while true; do #computer 1 ping -c 1 10.0.1.1 if [ $? -eq 0 ] then i=0 #Pass echo '10.0.1.1 Pass i='$i else ((i++)) #Fail echo '10.0.1.1 Fail i='$i fi sleep 60 #computer 2 ping -c 1 10.0.1.5 if [ $? -eq 0 ] then i=0 #Pass echo '10.0.1.5 Pass i='$i else ((i++)) #Fail echo '10.0.1.5 Fail i='$i fi sleep 60 #computer 3 ping -c 1 8.8.8.8 if [ $? -eq 0 ] then i=0 #Pass echo '8.8.8.8 Pass i='$i else ((i++)) #Fail echo '8.8.8.8 Fail i='$i fi sleep 60 if [ $i -gt 10 ] then /sbin/powerdown fi done
-
[Support] HaveAGitGat - Tdarr: Audio/Video Library Analytics & Transcode Automation
Thank you. I was struggling with this for a few days. I figured I'd just wait for an update for the docker or something and didn't really want to bother going back to separate server and node dockers. Changing node IP to localhost was the trick. 👍
-
Wilkie started following Command line for safely shutting down unraid server
-
Command line for safely shutting down unraid server
Hello, what command should I be using to shutdown unraid? I have looked at /sbin/poweroff but unraid documentation says it is not sufficient or deprecated. Should I be using shutdown -f ? Does it safely shutdown unraid? To elaborate my UPS doesn't play nicely with unraid and loses USB connection every few minutes which causes it to not shutdown properly with APC or NUT. As a workaround I'm writing a script that pings a few devices every minute on my network and if successful pings aren't received for 10min or so, then run a shutdown command for unraid to shutdown in the event of a power failure. Thanks for any input.
Wilkie
Members
-
Joined
-
Last visited