Everything posted by sergiu.topan
-
[Support] Docker WebUI
Hello, Really nice automatic docker dashboard that you created. I have one question. It would be possible to have the WAN addres something like https://(container_name).domain.com
-
[Plugin] RAM-Disk for Docker logs
I thouth that this will move only the logs to the RAM.
-
[Plugin] RAM-Disk for Docker logs
Hello, Can I change the folder for backup? I want to put it in /dev/shm to be also in a ram drive. I don't care if the logs are deleted on reboot. Can you make it as an option of the plugin?
-
UNRAID not starting after reboot
These are the speecs of the motherboard. FUJITSU D3600-A1 , Version S26361-D3600-A1 FUJITSU // American Megatrends Inc., Version V5.0.0.13 R1.32.0 for D3600-A1x BIOS dated: Friday, 25.08.2023 Fast boot is disabled. I will check again to see if there are any options in bios that I can change.
-
UNRAID not starting after reboot
I reflashed the drive but still the same behaviour. On reboot not starting. After shutdown is starting.
-
UNRAID not starting after reboot
Hello, I have a strange issue with UNRAID not booting after a reboot. If I force it off then start again it's working. The step where is stopping is in the picture below. It stays like that fo a while and then see second picture. I attached the diagnostics also. Did anybody encounter that? What can I do to fix it? fi-tech-diagnostics-20250214-1143.zip
-
Problem with unclean shutdown
I managed to identify the issue. I'm not sure why but the Jellyseerr container caused the unclean shutdown. I had installed the hotio version. I erased that and replaced with IBRACORP version and now the restarts are ok.
-
Problem with unclean shutdown
I tried normal mode only with docker stopped and restart is good. so something from docker.
-
Problem with unclean shutdown
After starting in safe mode, without enabling docker and vms, the reboot works without issue
-
Problem with unclean shutdown
-
Problem with unclean shutdown
Hello everybody, I have a problem with unclean shutdown. in the logs I can see this: root: cannot unmount '/mnt/cache/appdata': pool or dataset is busy At that moment docker is stopped and I could not figure out what is keeping the dataset busy. Somebody else encountered that? unraid-diagnostics-20250118-0916.zip
-
[Plugin] Mover Tuning
The scripts mentioned by me are created using user script plugin and that is the location that is show in the app where the script is located. There is another location where I can find the scrips created by user scripts plugin?
-
[Plugin] Mover Tuning
I am trying to run some script before and after the mover with this plugin and with no luck. I created using User Scripts plugin 2 scripts: /boot/config/plugins/user.scripts/scripts/Mover_before/script /boot/config/plugins/user.scripts/scripts/Mover_after/script In the logs is get the error Before script file sh /boot/config/plugins/user.scripts/scripts/Mover_before/script does not exist or is not executable Where should I put the script to be executable for the plugin In other scripts I can execute the above ones if I add sh before the path.
-
Script to spindown unassigned USB HDDs
I tried this script and I noticed that doesn't detect properly when the drive is being used and every time I try to run it the drives are spinning down and up. I use unraid 6.12.6. After further investigation I changed stat_new=$(grep "${device}1 " /proc/diskstats | tr -dc "[:digit:]") to stat_new=$(grep "${device} " /proc/diskstats | tr -dc "[:digit:]") In this way it search for ativity on the drive not partition and like this is working properly.