Jump to content

nitewolfgtr

Members
  • Posts

    19
  • Joined

Everything posted by nitewolfgtr

  1. @itimpi I tried setting up syslog to mirror to flash but when it froze again and I rebooted it, there was no previous logs in to the `/boot/logs` directory. I did however also setup logging to a remote syslog server and have attached the diagnostics and the syslogs as well. I notice there was a lot of BTRFS errors and some kernel panics but not sure what to make of it. nas-diagnostics-20230909-0929.zip syslog-20230909.zip
  2. My unraid server has been randomly freezing for awhile now.. 6+ months. I initially suspected it was due to my Ryzen 2700X CPU and tried various suggestions around c-state, power draw idle, etc. and none of them really solved the issue. During the onset of this issue, Unraid server would freeze every 3-5 days.. but in the past few weeks, it has been freezing every day. I would reboot the server after freeze, and it would happen the next day. Since Ryzen is known to cause freezes and hangs, I swapped out my CPU, RAM and Mobo to Intel Xeon E3-1245 v3. This was my old unraid hardware that had no issues in the past. I wanted a faster CPU so I upgraded to Ryzen. Swapping back to old hardware did not resolve my issue. Only changes I've made since upgrading from old Intel CPU to Ryzen CPU hardware is adding a 10GB NIC Card and replacing a faulty SAS expander card. I'm not sure what is causing it to freeze every day. I've attached my diagnostics. I would appreciate any help! Thank you! nas-diagnostics-20230906-1908.zip
  3. Hello, I've been getting this error often lately and trying to figure out what is happening. When I go to Docker tab in Unraid, I get this error message and none of my Docker apps work. I have tried rebuilding the docker image few weeks ago and it worked for couple weeks and started happening again. Warning: file_put_contents(/var/lib/docker/unraid/images/plex-icon.png): failed to open stream: Read-only file system in /usr/local/emhttp/plugins/dynamix.docker.manager/include/DockerClient.php on line 93 Warning: file_put_contents(/var/lib/docker/unraid/images/radarr-icon.png): failed to open stream: Read-only file system in /usr/local/emhttp/plugins/dynamix.docker.manager/include/DockerClient.php on line 93 I have attached the Diag zip file. What should I be looking for? Can someone please help? Thank you! nas-diagnostics-20230303-1705.zip
  4. Hello, For past few months, my Unraid server has been periodically locking up and freezes completely causing a reboot to recover it. I have my Unraid set to log to a remote syslog server and I noticed bunch of warnings and errors right around 2/24 at 00:00 - 00:18 hours and starts with a general protection fault error. Can anyone please help me make sense of what could be the cause of my system freezes? Here's an export of my syslog. Thank you! All_2023-2-24-12_58_37.csv
  5. Hello, I'm working on migrating my existing Unraid from Intel to AMD Ryzen and having some issues getting my 9211-8i card to recognize my hard drives. When I insert the 9211-8i card into any of the two PCIe x16 slots WITHOUT the GPU, it works fine. However, when I insert both GPU and 9211-8i, none of the drives are recognized by 9211-8i card. I have tried swapping the order of GPU and 9211 between either PICe x16 slots with no success. I have also attempted to reset CMOS, and BIOS without any success. I'm running latest F63a BIOS. Any suggestions? Thank you!
  6. Thank you Cpt. Chaz for this solution. It was very helpful in getting my automated backup cron job set-up. I did however make a small tweak so that it calls the native unraid zip script directly as part of a backup script within the user script plugin. This way I only have to set-up 1 cron job. 🙂 #!/bin/bash #backup directory - update to target backup directory BACKUP_DIR=/insert/your/path/here echo "Creating backup directory if it doesn't exist" mkdir -p $BACKUP_DIR # unraid flash drive backup to zip via native backup script # backup saved to dir /usr/local/emhttp echo 'Executing native unraid backup script' /usr/local/emhttp/webGui/scripts/flash_backup echo "" echo 'Remove symlink from emhttp' find /usr/local/emhttp/ -maxdepth 1 -name '*flash-backup-*.zip' -delete sleep 5 echo 'Move Flash Zip Backup from Root to Backup Destination' mv /*-flash-backup-*.zip $BACKUP_DIR sleep 5 echo 'Deleting Old Backups' #ENTER NUMERIC VALUE OF DAYS AFTER "-MTIME +" find $BACKUP_DIR* -mtime +30 -exec rm -rfv {} \; echo 'All Done' ***Full disclosure - I don't assume any liability here for data loss or anything else. Use at your own risk!
×
×
  • Create New...