soana

Members
  • Posts

    242
  • Joined

  • Last visited

Converted

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

soana's Achievements

Explorer

Explorer (4/14)

12

Reputation

  1. Started to get these messages in the container log. The lines bellow keep repeating in the log and there is no access to the WebUI of the container I think the cypher was there before when it used to work OK. 2023-05-31 21:14:10,641 DEBG 'start-script' stdout output: 2023-05-31 21:14:10 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts 2023-05-31 21:14:10,645 DEBG 'start-script' stdout output: 2023-05-31 21:14:10 TCP/UDP: Preserving recently used remote address: [AF_INET]185.2.30.216:80 2023-05-31 21:14:10 Attempting to establish TCP connection with [AF_INET]185.2.30.216:80 2023-05-31 21:14:10,748 DEBG 'start-script' stdout output: 2023-05-31 21:14:10 TCP connection established with [AF_INET]185.2.30.216:80 2023-05-31 21:14:10 TCPv4_CLIENT link local: (not bound) 2023-05-31 21:14:10 TCPv4_CLIENT link remote: [AF_INET]185.2.30.216:80 2023-05-31 21:14:10,851 DEBG 'start-script' stdout output: 2023-05-31 21:14:10 Connection reset, restarting [0] 2023-05-31 21:14:10,852 DEBG 'start-script' stdout output: 2023-05-31 21:14:10 SIGHUP[soft,connection-reset] received, process restarting 2023-05-31 21:14:10,853 DEBG 'start-script' stdout output: 2023-05-31 21:14:10 DEPRECATED OPTION: --cipher set to 'AES-256-CBC' but missing in --data-ciphers (AES-256-GCM:AES-128-GCM:CHACHA20-POLY1305). OpenVPN ignores --cipher for cipher negotiations. 2023-05-31 21:14:10,856 DEBG 'start-script' stdout output: 2023-05-31 21:14:10 WARNING: file 'credentials.conf' is group or others accessible 2023-05-31 21:14:10 OpenVPN 2.6.3 [git:makepkg/94aad8c51043a805+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] [DCO] built on Apr 13 2023 2023-05-31 21:14:10,856 DEBG 'start-script' stdout output: 2023-05-31 21:14:10 library versions: OpenSSL 3.0.8 7 Feb 2023, LZO 2.10 2023-05-31 21:14:10 DCO version: N/A
  2. That worked. I did not think of checking the domains folder because I usually delete the both the VM and the disk. Thanks SimonF and ChatNoir for your help!
  3. The clear cache and other browser solutions did not work
  4. Wondering what am I missing here, using the latest unraid version but for some reason when creating a Win10 VM the primary vDisk Size option is not available, the second vDisk does show the size option - as seen in the screenshot below. It only happens for Win10, when trying to create a Win11 or Win8 VM the vDisk Size is present, also on my primary server the Win10 creation works just fine. unraid-sandbox-diagnostics-20221219-2152.zip
  5. With several dockers running (Plex, mariaDB, Photoprism, nextcloud, etc) the appdata tar backup file is getting to about 250Gb and that is for about 3.6million files. While I know how to just extract the folder needed in case let's say plex appdata files are getting corrupted, just for the tar command to go trough the 3.6million files it can take hours. Would it be possible during the backup process to create tarballs for individual appdata folders rather than the whole appdata.
  6. Made no difference for me - using Catalina macOS - not sure if that matters. Edit: I had a typo in my smb-settings.conf file, after fixing it the shares seem to be working OK but the TimeMachine share is not working with macOS
  7. Issue is still present on the 6.10 RC-4
  8. Check the post below it looks like rc2 and MacOS are not playing nice 😒
  9. I have a similar issue with Catalina, samba is on and off. Reverted back to rc1 and everything seems to be OK. In my case the connection to the Tower samba shares will drop on a random basis. Not sure how to reproduce this issue.
  10. Here is my script I did not put too much time into it since it did the job from the first time. Line 4 and 5 define the source and the destination. The backup (rsync) and notification bits are in the ACTION block #!/bin/bash PATH=/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin source="/mnt/user/Personal/" destination="/mnt/disks/My_Book_3Tb/" ## Available variables: # AVAIL : available space # USED : used space # SIZE : partition size # SERIAL : disk serial number # ACTION : if mounting, ADD; if unmounting, UNMOUNT; if unmounted, REMOVE; if error, ERROR_MOUNT, ERROR_UNMOUNT # MOUNTPOINT : where the partition is mounted # FSTYPE : partition filesystem # LABEL : partition label # DEVICE : partition device, e.g /dev/sda1 # OWNER : "udev" if executed by UDEV, otherwise "user" # PROG_NAME : program name of this script # LOGFILE : log file for this script case $ACTION in 'ADD' ) # do your stuff here /usr/local/emhttp/webGui/scripts/notify -e "Unraid Server Notice" -s "Unassigned Devices" -d "Device mounted" -i "normal" date >/var/log/My_Book_3Tb_Backup.log /usr/bin/rsync -avrtH --delete $source $destination >>/var/log/My_Book_3Tb_Backup.log /usr/local/emhttp/webGui/scripts/notify -e "Unraid Server Notice" -s "My_Book_3Tb" -d "Backup to My_Book_3Tb finished see /var/log/My_Book_3Tb_Backup.log for details" -i "normal" # This will refresh the UD webpage when the script is finished. /usr/local/sbin/rc.unassigned refresh $DEVICE ;; 'UNMOUNT' ) # do your stuff here /usr/local/emhttp/webGui/scripts/notify -e "Unraid Server Notice" -s "Unassigned Devices" -d "Device unmounting" -i "normal" ;; 'REMOVE' ) # do your stuff here /usr/local/emhttp/webGui/scripts/notify -e "Unraid Server Notice" -s "Unassigned Devices" -d "Device unmounted" -i "normal" ;; 'ERROR_MOUNT' ) # do your stuff here /usr/local/emhttp/webGui/scripts/notify -e "Unraid Server Notice" -s "Unassigned Devices" -d "Error mounting device" -i "alert" ;; 'ERROR_UNMOUNT' ) # do your stuff here /usr/local/emhttp/webGui/scripts/notify -e "Unraid Server Notice" -s "Unassigned Devices" -d "Error unmounting device" -i "alert" ;; esac
  11. The unassigned devices plugin has a very nice option to run a script when external drive is plugged in. Use the default script button to start with a default script and build from there, I have something similar build but not with encryption.
  12. I did two array stop/start and no issues, next I did a reboot and no more parity check started. Not sure why.
  13. Pre-shutdown diagnostics files attached. tower-diagnostics-20210315-0924.zip
  14. Thanks JorgeB but the change to 100s did not do the trick.