iptvcld

Members
  • Posts

    15
  • Joined

  • Last visited

Everything posted by iptvcld

  1. i see 6.10.1 has been released but this has not fixed this issue yet. Is this bug still outstanding?
  2. Thanks, I ended up exporting my pfsense acme cert that's used for haproxy and enabled it on unraid. Now it shows secure on any browser
  3. Hello; I have been trying to get SSL enabled using my pfSense self-signed cert instead of the unraid.net cert - but I cannot get this going.. I have a CA Internal Cert with the CN=*.domain.ca and then i created a cert using this CA also with the CN=*.domain.ca and i have set the FQDN as unraid.domain.ca and also added the IP 192.168.x.x My unraid server name is: unRaid and i have taken those 2 certs and created the .pem file which is named unRaid_unraid_bundle.pem and all 3 files are stored under /boot/config/ssl/certs/ Under Management Access within unraid the local TLD is set to domain.ca and ssl/tls is set to Yes. I have rebooted the server and even cleared my cache but when i try accessing the gui i still get connection is not secure. Hoping someone can point me in the correct direction, than you
  4. anyone having issues with this on unraid 6.9.2?
  5. Ok so i deleted the event file that was made under the /boot/custom/bin location and ran the below 2 commands chmod a+x /usr/local/emhttp/webGui/event/starting/fetch_key -rwx--x--x 1 root root 255 Aug 7 16:23 fetch_key* chmod a+x /usr/local/emhttp/webGui/event/started/delete_key -rwx--x--x 1 root root 34 Aug 7 16:23 delete_key* Even tried chmod 777 for both files chmod 777 /usr/local/emhttp/webGui/event/started/delete_key -rwxrwxrwx 1 root root 34 Aug 7 16:23 /usr/local/emhttp/webGui/event/started/delete_key* The 2 files permission look ok now and then i ran this tar -czf /boot/custom/bin/events -C /usr/local/ emhttp/webGui/event/starting/fetch_key emhttp/webGui/event/started/delete_key emhttp/webGui/event/stopped/fetch_key and updated my go with this #!/bin/bash # Auto Unlock Array tar -xzf /boot/custom/bin/events -C /usr/local/ # Start the Management Utility /usr/local/sbin/emhttp & Rebooted and still did not start, nor did the keyfile come across to /root/ - but if i ran the commans in the fetch file manual, the file comes down ok. Any other thoughts as to what i am doing wrong here? Aug 7 19:07:48 unRaid emhttpd: shcmd (21): udevadm settle Aug 7 19:07:49 unRaid emhttpd: Opening encrypted volumes... Aug 7 19:07:49 unRaid emhttpd: Missing encryption key UPDATE..... After hours and hours the issue was that my fetch_key file had spurious CR characters and to fix that I ran the following: sed -i -e 's/\r$//' /boot/custom/bin/fetch_key This got rid of the CR chars (i had used Notepad++) i guess i should have used vi..
  6. Hello; thank you for taking the time to make this guide.. I am having some issues trying to make this work on unRaid version 6.9.2. I have my fetch_key as per below: #!/bin/bash if [[ ! -e /root/keyfile ]]; then mkdir -p /unlock mount -t cifs -o user=user,password='password',iocharset=utf8 //IP/share /unlock cp -f /unlock/keyfile /root/keyfile umount /unlock rm -r /unlock fi -- If i run each line in the shell it works and i can see the keyfile drop into /root. I had this in my go before: #!/bin/bash # Auto Unlock Array mkdir -p /usr/local/emhttp/webGui/event/starting mkdir -p /usr/local/emhttp/webGui/event/started mkdir -p /usr/local/emhttp/webGui/event/stopped cp -f /boot/custom/bin/fetch_key /usr/local/emhttp/webGui/event/starting cp -f /boot/custom/bin/delete_key /usr/local/emhttp/webGui/event/started cp -f /boot/custom/bin/fetch_key /usr/local/emhttp/webGui/event/stopped # Start the Management Utility /usr/local/sbin/emhttp & and then i ran your first tar command and then updated my go to this #!/bin/bash # Auto Unlock Array tar -xzf /boot/custom/bin/events -C /usr/local/ # Start the Management Utility /usr/local/sbin/emhttp & but the array still does not auto start and i dont see the keyfile under /root Any tips would be greatly appreciated please
  7. Thanks - while on this topic; any other methods you know of to perform this task? DOnt want to break my cache when i need to do this again down the road.
  8. So for that; my array is not encrypted and i was told that i would not be able to use the UD pluigin if atleast one of my drives were not encrypted. I had tried that first and marked it as format - XFS Ebcrypt and said failed.
  9. hmm; and the whole goal here was just to format one of my UD as XFS-Encrypt (which i did). Too bad there is not an easier way to format a drive that is not in the array as encrypted. This resorted me to swapping the cache and format my UD drive and now - 2 wiped cache drives..
  10. And this is the case for both cache drives? This is not good at all.
  11. Hello everyone; I have an issue here and i am really hoping someone will be able to help. Background: I following the video from space invaders on how to encrpt an unassigned drive by stopping the array - remove the cache drive (pool of 2) and add the UD into the cache slot then select XFS Encrypt and start the array, etc.. I placed the 2 cache drives back in their spots and changed the file system back to btrfs and when i started i array i now get an error Unmountable: No pool uuid Device is part of a cache pool I have also attached my diag logs. Thank you!