soana

Members
  • Posts

    242
  • Joined

  • Last visited

Posts posted by soana

  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. 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.

     

    1039292965_ScreenShot2022-12-19at10_01_05PM.thumb.png.4939973913e21580b8ef845000c89783.png

    unraid-sandbox-diagnostics-20221219-2152.zip

  3. 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. 

    • Upvote 1
  4. 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

     

  5. 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.

  6. This seems to be a recurring issue for me - several months before I had this issue and for some time it seemed to go away now it's back again.

    I did take the flash drive and run a checkdisk with no errors, I even registered a new flash drive and the problem is still there.

    Attaching the diagnostics file.

     

    Not sure why this message below was generated, I did a shutdown using the icons from the dashboard

    Mar 15 09:29:49 Tower emhttpd: unclean shutdown detected

     

    Screen Shot 2021-03-15 at 9.50.35 AM.png

    tower-diagnostics-20210315-0938.zip

  7. From the log it seems that I have a memory issue

    Sep 11 16:37:25 Tower kernel: EDAC MC0: 1 CE memory scrubbing error on CPU_SrcID#0_Ha#0_Chan#2_DIMM#0 or CPU_SrcID#0_Ha#0_Chan#2_DIMM#1 (channel:2 page:0xac351d offset:0x0 grain:32 syndrome:0x0 -  area:DRAM err_code:0008:00c2 socket:0 ha:0 channel_mask:4 rank:255)

    It looks like it is CPU1 Channel 2 DIMM #0 or #1, I do have RAM in those two location and will double check them one by one but just wanted to see if there is something else that I might have missed.

     

    Thanks!

     

     

    tower-diagnostics-20200912-0841.zip

    Screen Shot 2020-09-12 at 8.48.04 AM.png

  8. On 7/20/2015 at 1:52 PM, kingfetty said:

    If you have multiple USB devices with the same Vendor and Product then the passthrough does not work as the UI currently builds the XML file with USB based on the Vendor / Product and not the Address Bus= Device=  syntax.  Since this is the case if you attempt to passthrough any usb devices that have duplicate Vendor/Product you will not be able to start your VM.

     

    The workaround is to manually edit the xml to the Address syntax.

     

    Examples:

     

    Bus 011 Device 003: ID 08bb:2704 Texas Instruments Audio Codec

    Bus 011 Device 002: ID 08bb:2704 Texas Instruments Audio Codec

     

     

    Current Syntax:

     

     

    
    <hostdev mode='subsystem' type='usb' managed='yes'>
          <source >
            <vendor id='0x08bb'/>
            <product id='0x2704'/>
          </source>
         </hostdev>
    
     

     

     

    This will result in a non booting VM

     

     

    Fixed Syntax:

     

     

    
    <hostdev mode='subsystem' type='usb' managed='yes'>
          <source>
            <address bus='11' device='2'/>
          </source>
        </hostdev>
    
     

     

    This workaround does not seem to work on my Windows VM running on 6.8.0-rc1 - anybody else having this issue or is it just me?

    I ended up passing a whole USB controller and everything is back up and running.

  9. This morning I decided to remove two drives from my cache pool.

    The cache pool consisted of 1Tb+500Gb+500Gb drives for a total of 1Tb.

    As a result of removing the two 500Gb drives the 1Tb is now un-mountable.

    Is there any option to recover data from the 1Tb or the two 500Gb drives?

     

    Reading the forums -after the fact- only one drive can be removed from the pool at a time and then rebalance before removing the second.

    I will try to put the two 500Gb back but in case this doesn't work I wanted to see if there are any options.

     

    Thank you.