Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

aglyons

Members
  • Joined

  • Last visited

Everything posted by aglyons

  1. This is due to a suspected update to Youtube's platform. We have to wait until a new YT-DL is released that addresses the changes before it can DL videos from the platform.
  2. I'll make the assumption that you are running containers in bridge mode with br0. This would also include you NPM container. Another assumption, all the "services" you are running are talking to each other via the internal Docker network, 172.xxx.xxx.xxx. It would also mean that you access all of your services through the hosts IP with different port assignments, 192.168.xxx.xxx:port. If that is the case and you are not able to access those services, I would check the network settings in UR and look at the bridge settings there. Although it is interesting that you state you can access them through the domain. I run things a little different in that I have most public accessible services in their own VLAN running from a 2nd NIC, seperate from the hosts network. This keeps them segregated from my local network systems. In that instance, each service gets its own dedicated IP on that VLAN manually assigned. Docker containers either don't request or respond to DHCP so they won't be assigned an IP. I wish that wasn't the case as I would rather reserve IP's in my router.
  3. I have noticed that when you make this level of change to the Docker network, you will have to go through all of your containers networking config. You might find that IP addresses may have changed or the network type may be missing. I've even seen it where it all looks right but doesn't work until you force update the container for it to be rebuilt.
  4. As usual, I was greeted this morning with some container updates. Rather than update all automatically, I checked to see if any were in use, containers like postgres, apps that you don't want shutdown if someone is working with it. I updated NPM, Vaultwarden and PHPMyAdmin, one by one as needed. Once I go to the less important containers, I clicked the Update All button. That process went and tried to update containers I already updated. It tried to DL the images, realized it already had the latest versions, shutdown the up-to-date container, deleted it and then spun it back up again. Some containers it did this multiple times on the same container. You can see this happen in the log below. I had already updated NPM, Vaultwarden and PHPMyAdmin manually and then clicked the Update All button. The first thing it tried to do is update NPM and Vaultwarden. Shutting them down, deleting the container, and re-creating the container. Later on in the process it does the same thing to PHPMyAdmin. And that one it processed multiple times. Further down the list you'll start to see Radarr and Sonarr entries. While I do have two Radarr containers, both Radarr and Sonarr containers are updated more than once during the Update All process. Both of those containers I did not manually update prior to pressing the Update All button. ** Just to note as to why I marked this as urgent. It's because containers that are current and don't need an update are getting shutdown and rebuilt. If you did have a DB and someone/thing started to use it when the system killed it, it could lead to data corruption and the loss of the DB data. If you don't agree with that assesment, by all means set it to the level you feel appropriate. Update All Process Log Pulling image: jc21/nginx-proxy-manager:latest IMAGE ID [51855260]: Pulling from jc21/nginx-proxy-manager. Status: Image is up to date for jc21/nginx-proxy-manager:latest TOTAL DATA PULLED: 0 B Stopping container: Nginx-Proxy-Manager-Official Successfully stopped container: Nginx-Proxy-Manager-Official Removing container: Nginx-Proxy-Manager-Official Successfully removed container: Nginx-Proxy-Manager-Official Command execution docker run -d --name='Nginx-Proxy-Manager-Official' --net='eth1' --ip='192.168.xxx.xxx' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="Nginx-Proxy-Manager-Official" -e 'TCP_PORT_81'='81' -e 'TCP_PORT_80'='80' -e 'TCP_PORT_443'='443' -e 'DB_SQLITE_FILE'='/data/database.sqlite' -e 'TCP_PORT_3000'='3000' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:81]' -l net.unraid.docker.icon='https://nginxproxymanager.com/icon.png' -v '/mnt/user/appdata/Nginx-Proxy-Manager-Official/data':'/data':'rw' -v '/mnt/user/appdata/Nginx-Proxy-Manager-Official/letsencrypt':'/etc/letsencrypt':'rw' -v '/tmp/Nginx-Proxy-Manager-Official/var/log':'/var/log':'rw' --memory=1G --no-healthcheck 'jc21/nginx-proxy-manager' bcb6c33e858f04db6f903e09c1d1f1c0277cd307980de95e21280f41daee8689 The command finished successfully! Pulling image: vaultwarden/server:latest IMAGE ID [1772728349]: Pulling from vaultwarden/server. Status: Image is up to date for vaultwarden/server:latest TOTAL DATA PULLED: 0 B Stopping container: vaultwarden Successfully stopped container: vaultwarden Removing container: vaultwarden Successfully removed container: vaultwarden Command execution docker run -d --name='vaultwarden' --net='eth1' --ip='192.168.XXX.XXX' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="vaultwarden" -e 'TCP_PORT_80'='80' -e 'SIGNUPS_ALLOWED'='false' -e 'INVITATIONS_ALLOWED'='true' -e 'WEBSOCKET_ENABLED'='true' -e 'ADMIN_TOKEN'='XXXXXXXXXXXXXXXXXXXXXX' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:80]/admin' -l net.unraid.docker.icon='https://raw.githubusercontent.com/selfhosters/unRAID-CA-templates/master/templates/img/bitwardenrs.png' -v '/mnt/user/appdata/vaultwarden':'/data':'rw' 'vaultwarden/server' 4568218b4404cf0fa49191c6e608e80129c773adb73cf874eea47e0d462e5b03 The command finished successfully! Pulling image: phpmyadmin/phpmyadmin:latest IMAGE ID [1487451533]: Pulling from phpmyadmin/phpmyadmin. Status: Image is up to date for phpmyadmin/phpmyadmin:latest TOTAL DATA PULLED: 0 B Stopping container: phpmyadmin Successfully stopped container: phpmyadmin Removing container: phpmyadmin Successfully removed container: phpmyadmin Command execution docker run -d --name='phpmyadmin' --net='bridge' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="phpmyadmin" -e 'MYSQL_USER'='root' -e 'MYSQL_PASSWORD'='XXXXXXXXXXXXXX' -e 'PMA_HOST'='172.17.0.3' -e 'PMA_PORT'='3306' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:80]' -l net.unraid.docker.icon='https://secure.gravatar.com/avatar/4be7d922dc46f22e6b0cf1162f0e329b.jpg' -p '8181:80/tcp' 'phpmyadmin/phpmyadmin' ee3b4890eb4532d77143615452013286fc83d89e0b29a62babc14ec7aad59c11 The command finished successfully! Pulling image: randomninjaatk/sonarr-extended:latest IMAGE ID [2044845357]: Pulling from randomninjaatk/sonarr-extended. IMAGE ID [3751dd3182d5]: Already exists. IMAGE ID [48f754c837b5]: Already exists. IMAGE ID [cec0326ce8b4]: Already exists. IMAGE ID [d0e90526e3df]: Already exists. IMAGE ID [3987af20e7c8]: Pulling fs layer.Downloading 100% of 65 MB.Verifying Checksum.Download complete.Extracting.Pull complete. IMAGE ID [ffe17d43eb4c]: Pulling fs layer.Downloading 100% of 918 B.Verifying Checksum.Download complete.Extracting.Pull complete. IMAGE ID [84043728f635]: Pulling fs layer.Downloading 100% of 186 MB.Verifying Checksum.Download complete.Extracting.Pull complete. IMAGE ID [863ae8a93da6]: Pulling fs layer.Downloading 100% of 31 MB.Verifying Checksum.Download complete.Extracting.Pull complete. IMAGE ID [4f4fb700ef54]: Pulling fs layer.Downloading 100% of 32 B.Verifying Checksum.Download complete.Extracting.Pull complete.Pulling fs layer.Downloading 100% of 32 B.Verifying Checksum.Download complete.Extracting.Pull complete. IMAGE ID [e2f0eb47cc6e]: Pulling fs layer.Downloading 100% of 14 KB.Download complete.Extracting.Pull complete. Status: Downloaded newer image for randomninjaatk/sonarr-extended:latest TOTAL DATA PULLED: 281 MB Stopping container: Sonarr-Extended Successfully stopped container: Sonarr-Extended Removing container: Sonarr-Extended Successfully removed container: Sonarr-Extended Command execution docker run -d --name='Sonarr-Extended' --net='bridge' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="Sonarr-Extended" -e 'enableAutoConfig'='true' -e 'enableRecyclarr'='false' -e 'enableQueueCleaner'='false' -e 'enableExtras'='true' -e 'extrasType'='all' -e 'extrasLanguages'='en-US' -e 'extrasOfficialOnly'='false' -e 'plexUrl'='http://x.x.x.x:32400' -e 'plexToken'='' -e 'PUID'='99' -e 'PGID'='100' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:8989]' -l net.unraid.docker.icon='https://raw.githubusercontent.com/RandomNinjaAtk/unraid-templates/master/randomninjaatk/img/sonarr.png' -p '8803:8989/tcp' -v '/mnt/user/appdata/sonarr-extended':'/config':'rw' -v '/dev/rtc':'/dev/rtc':'rw' -v '/mnt/remotes/DS1515_DVR/':'/dvr':'rw,slave' 'randomninjaatk/sonarr-extended' 8f30aeff64ee3418d353fc5b78c2a6eb01e1b023ea142ca7acc71b65faf3dc65 The command finished successfully! Removing orphan image: 1b409a2b7618 Successfully removed orphan image: 1b409a2b7618 Pulling image: randomninjaatk/radarr-extended:latest IMAGE ID [424215705]: Pulling from randomninjaatk/radarr-extended. IMAGE ID [6f0fdad1ce92]: Already exists. IMAGE ID [c61fe2056171]: Already exists. IMAGE ID [604d992cfe46]: Already exists. IMAGE ID [e4bccb8e029e]: Already exists. IMAGE ID [8df0d2280990]: Already exists. IMAGE ID [cc0dd1489249]: Already exists. IMAGE ID [5ff21c841fd5]: Already exists. IMAGE ID [9ef21b554bb3]: Already exists. IMAGE ID [1c424689551d]: Pulling fs layer.Downloading 100% of 14 KB.Verifying Checksum.Download complete.Extracting.Pull complete. Status: Downloaded newer image for randomninjaatk/radarr-extended:latest TOTAL DATA PULLED: 14 KB Stopping container: radarr-extended Successfully stopped container: radarr-extended Removing container: radarr-extended Successfully removed container: radarr-extended Command execution docker run -d --name='radarr-extended' --net='bridge' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="radarr-extended" -e 'enableAutoConfig'='true' -e 'enableRecyclarr'='false' -e 'enableQueueCleaner'='false' -e 'enableExtras'='true' -e 'extrasType'='all' -e 'extrasLanguages'='en-US' -e 'extrasOfficialOnly'='true' -e 'extrasSingle'='true' -e 'extrasKodiCompatibility'='true' -e 'plexUrl'='http://x.x.x.x:32400' -e 'plexToken'='' -e 'PUID'='99' -e 'PGID'='100' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:7878]' -l net.unraid.docker.icon='https://raw.githubusercontent.com/RandomNinjaAtk/unraid-templates/master/randomninjaatk/img/radarr.png' -p '8802:7878/tcp' -v '/mnt/user/appdata/radarr-extended':'/config':'rw' -v '/mnt/remotes/DS1515_DVR/':'/ssync':'rw,slave' 'randomninjaatk/radarr-extended' 39f2f3fb55bb6c89175fba165f4c18a980a5424e1a78dbb32e0619ed754222b6 The command finished successfully! Removing orphan image: 4995824d4653 Error: Image can not be deleted, in use by other container(s) Pulling image: randomninjaatk/radarr-extended:latest IMAGE ID [432242607]: Pulling from randomninjaatk/radarr-extended. Status: Image is up to date for randomninjaatk/radarr-extended:latest TOTAL DATA PULLED: 0 B Stopping container: radarr-extended-3D Successfully stopped container: radarr-extended-3D Removing container: radarr-extended-3D Successfully removed container: radarr-extended-3D Command execution docker run -d --name='radarr-extended-3D' --net='bridge' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="radarr-extended-3D" -e 'enableAutoConfig'='true' -e 'enableRecyclarr'='true' -e 'enableQueueCleaner'='false' -e 'enableExtras'='false' -e 'extrasType'='all' -e 'extrasLanguages'='en-US' -e 'extrasOfficialOnly'='true' -e 'extrasSingle'='true' -e 'extrasKodiCompatibility'='true' -e 'plexUrl'='http://x.x.x.x:32400' -e 'plexToken'='' -e 'PUID'='99' -e 'PGID'='100' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:7878]' -l net.unraid.docker.icon='https://raw.githubusercontent.com/RandomNinjaAtk/unraid-templates/master/randomninjaatk/img/radarr.png' -p '8805:7878/tcp' -v '/mnt/user/appdata/radarr-extended-3d':'/config':'rw' -v '/mnt/remotes/DS1515_DVR/':'/ssync':'rw,slave' 'randomninjaatk/radarr-extended' 83948ae7b10ab7b58b1f7cb21d174fc360fbd9bcde9aacf9eb8ebddb0d88769e The command finished successfully! Pulling image: vaultwarden/server:latest IMAGE ID [1268246491]: Pulling from vaultwarden/server. Status: Image is up to date for vaultwarden/server:latest TOTAL DATA PULLED: 0 B Stopping container: vaultwarden Successfully stopped container: vaultwarden Removing container: vaultwarden Successfully removed container: vaultwarden Command execution docker run -d --name='vaultwarden' --net='eth1' --ip='192.168.XXX.XXX' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="vaultwarden" -e 'TCP_PORT_80'='80' -e 'SIGNUPS_ALLOWED'='false' -e 'INVITATIONS_ALLOWED'='true' -e 'WEBSOCKET_ENABLED'='true' -e 'ADMIN_TOKEN'='XXXXXXXXXXXXXX' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:80]/admin' -l net.unraid.docker.icon='https://raw.githubusercontent.com/selfhosters/unRAID-CA-templates/master/templates/img/bitwardenrs.png' -v '/mnt/user/appdata/vaultwarden':'/data':'rw' 'vaultwarden/server' f151269cebc5799271e9d75e003a9870d3c3683d23d29afbeb176fd8e7d55e32 The command finished successfully! Pulling image: phpmyadmin/phpmyadmin:latest IMAGE ID [1507640128]: Pulling from phpmyadmin/phpmyadmin. Status: Image is up to date for phpmyadmin/phpmyadmin:latest TOTAL DATA PULLED: 0 B Stopping container: phpmyadmin Successfully stopped container: phpmyadmin Removing container: phpmyadmin Successfully removed container: phpmyadmin Command execution docker run -d --name='phpmyadmin' --net='bridge' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="phpmyadmin" -e 'MYSQL_USER'='root' -e 'MYSQL_PASSWORD'='XXXXXXXXXXXXXX' -e 'PMA_HOST'='172.17.0.3' -e 'PMA_PORT'='3306' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:80]' -l net.unraid.docker.icon='https://secure.gravatar.com/avatar/4be7d922dc46f22e6b0cf1162f0e329b.jpg' -p '8181:80/tcp' 'phpmyadmin/phpmyadmin' 32692203a42693708070b76ebcaaa0cbe6a92b62a17f3ba4c899e727c9748a6d The command finished successfully! Pulling image: randomninjaatk/sonarr-extended:latest IMAGE ID [2128215845]: Pulling from randomninjaatk/sonarr-extended. Status: Image is up to date for randomninjaatk/sonarr-extended:latest TOTAL DATA PULLED: 0 B Stopping container: Sonarr-Extended Successfully stopped container: Sonarr-Extended Removing container: Sonarr-Extended Successfully removed container: Sonarr-Extended Command execution docker run -d --name='Sonarr-Extended' --net='bridge' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="Sonarr-Extended" -e 'enableAutoConfig'='true' -e 'enableRecyclarr'='false' -e 'enableQueueCleaner'='false' -e 'enableExtras'='true' -e 'extrasType'='all' -e 'extrasLanguages'='en-US' -e 'extrasOfficialOnly'='false' -e 'plexUrl'='http://x.x.x.x:32400' -e 'plexToken'='' -e 'PUID'='99' -e 'PGID'='100' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:8989]' -l net.unraid.docker.icon='https://raw.githubusercontent.com/RandomNinjaAtk/unraid-templates/master/randomninjaatk/img/sonarr.png' -p '8803:8989/tcp' -v '/mnt/user/appdata/sonarr-extended':'/config':'rw' -v '/dev/rtc':'/dev/rtc':'rw' -v '/mnt/remotes/DS1515_DVR/':'/dvr':'rw,slave' 'randomninjaatk/sonarr-extended' b6e2fb622045d5170219eefc701afa5a29736d0c02441fb26535dbbe7e1908a7 The command finished successfully! Pulling image: randomninjaatk/radarr-extended:latest IMAGE ID [1588594277]: Pulling from randomninjaatk/radarr-extended. Status: Image is up to date for randomninjaatk/radarr-extended:latest TOTAL DATA PULLED: 0 B Stopping container: radarr-extended Successfully stopped container: radarr-extended Removing container: radarr-extended Successfully removed container: radarr-extended Command execution docker run -d --name='radarr-extended' --net='bridge' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="radarr-extended" -e 'enableAutoConfig'='true' -e 'enableRecyclarr'='false' -e 'enableQueueCleaner'='false' -e 'enableExtras'='true' -e 'extrasType'='all' -e 'extrasLanguages'='en-US' -e 'extrasOfficialOnly'='true' -e 'extrasSingle'='true' -e 'extrasKodiCompatibility'='true' -e 'plexUrl'='http://x.x.x.x:32400' -e 'plexToken'='' -e 'PUID'='99' -e 'PGID'='100' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:7878]' -l net.unraid.docker.icon='https://raw.githubusercontent.com/RandomNinjaAtk/unraid-templates/master/randomninjaatk/img/radarr.png' -p '8802:7878/tcp' -v '/mnt/user/appdata/radarr-extended':'/config':'rw' -v '/mnt/remotes/DS1515_DVR/':'/ssync':'rw,slave' 'randomninjaatk/radarr-extended' 38b6e2139cc03a7ee00ce3873fb06b796af230a3be6a4343bfcf1b5ad7062196 The command finished successfully! Pulling image: randomninjaatk/radarr-extended:latest IMAGE ID [1411147329]: Pulling from randomninjaatk/radarr-extended. Status: Image is up to date for randomninjaatk/radarr-extended:latest TOTAL DATA PULLED: 0 B Stopping container: radarr-extended-3D Successfully stopped container: radarr-extended-3D Removing container: radarr-extended-3D Successfully removed container: radarr-extended-3D Command execution docker run -d --name='radarr-extended-3D' --net='bridge' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="radarr-extended-3D" -e 'enableAutoConfig'='true' -e 'enableRecyclarr'='true' -e 'enableQueueCleaner'='false' -e 'enableExtras'='false' -e 'extrasType'='all' -e 'extrasLanguages'='en-US' -e 'extrasOfficialOnly'='true' -e 'extrasSingle'='true' -e 'extrasKodiCompatibility'='true' -e 'plexUrl'='http://x.x.x.x:32400' -e 'plexToken'='' -e 'PUID'='99' -e 'PGID'='100' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:7878]' -l net.unraid.docker.icon='https://raw.githubusercontent.com/RandomNinjaAtk/unraid-templates/master/randomninjaatk/img/radarr.png' -p '8805:7878/tcp' -v '/mnt/user/appdata/radarr-extended-3d':'/config':'rw' -v '/mnt/remotes/DS1515_DVR/':'/ssync':'rw,slave' 'randomninjaatk/radarr-extended' a4f8fedc650436fea527b736a0885b7ed48aedd18c65281e0160490a4d8f6fb3 The command finished successfully! Pulling image: phpmyadmin/phpmyadmin:latest IMAGE ID [958672631]: Pulling from phpmyadmin/phpmyadmin. Status: Image is up to date for phpmyadmin/phpmyadmin:latest TOTAL DATA PULLED: 0 B Stopping container: phpmyadmin Successfully stopped container: phpmyadmin Removing container: phpmyadmin Successfully removed container: phpmyadmin Command execution docker run -d --name='phpmyadmin' --net='bridge' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="phpmyadmin" -e 'MYSQL_USER'='root' -e 'MYSQL_PASSWORD'='XXXXXXXXXXXXXX' -e 'PMA_HOST'='172.17.0.3' -e 'PMA_PORT'='3306' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:80]' -l net.unraid.docker.icon='https://secure.gravatar.com/avatar/4be7d922dc46f22e6b0cf1162f0e329b.jpg' -p '8181:80/tcp' 'phpmyadmin/phpmyadmin' 5991e39090ea47179c894b751a59a833e24387a116b72e6bc7af2f2ffead08c5 The command finished successfully! Pulling image: randomninjaatk/sonarr-extended:latest IMAGE ID [1786763402]: Pulling from randomninjaatk/sonarr-extended. Status: Image is up to date for randomninjaatk/sonarr-extended:latest TOTAL DATA PULLED: 0 B Stopping container: Sonarr-Extended Successfully stopped container: Sonarr-Extended Removing container: Sonarr-Extended Successfully removed container: Sonarr-Extended Command execution docker run -d --name='Sonarr-Extended' --net='bridge' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="Sonarr-Extended" -e 'enableAutoConfig'='true' -e 'enableRecyclarr'='false' -e 'enableQueueCleaner'='false' -e 'enableExtras'='true' -e 'extrasType'='all' -e 'extrasLanguages'='en-US' -e 'extrasOfficialOnly'='false' -e 'plexUrl'='http://x.x.x.x:32400' -e 'plexToken'='' -e 'PUID'='99' -e 'PGID'='100' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:8989]' -l net.unraid.docker.icon='https://raw.githubusercontent.com/RandomNinjaAtk/unraid-templates/master/randomninjaatk/img/sonarr.png' -p '8803:8989/tcp' -v '/mnt/user/appdata/sonarr-extended':'/config':'rw' -v '/dev/rtc':'/dev/rtc':'rw' -v '/mnt/remotes/DS1515_DVR/':'/dvr':'rw,slave' 'randomninjaatk/sonarr-extended' 49b5f9c866ad9c4f11530839bcb82d8ca54c19212d2967f997355031d6301727 The command finished successfully! Pulling image: randomninjaatk/radarr-extended:latest IMAGE ID [594919306]: Pulling from randomninjaatk/radarr-extended. Status: Image is up to date for randomninjaatk/radarr-extended:latest TOTAL DATA PULLED: 0 B Stopping container: radarr-extended Successfully stopped container: radarr-extended Removing container: radarr-extended Successfully removed container: radarr-extended Command execution docker run -d --name='radarr-extended' --net='bridge' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="radarr-extended" -e 'enableAutoConfig'='true' -e 'enableRecyclarr'='false' -e 'enableQueueCleaner'='false' -e 'enableExtras'='true' -e 'extrasType'='all' -e 'extrasLanguages'='en-US' -e 'extrasOfficialOnly'='true' -e 'extrasSingle'='true' -e 'extrasKodiCompatibility'='true' -e 'plexUrl'='http://x.x.x.x:32400' -e 'plexToken'='' -e 'PUID'='99' -e 'PGID'='100' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:7878]' -l net.unraid.docker.icon='https://raw.githubusercontent.com/RandomNinjaAtk/unraid-templates/master/randomninjaatk/img/radarr.png' -p '8802:7878/tcp' -v '/mnt/user/appdata/radarr-extended':'/config':'rw' -v '/mnt/remotes/DS1515_DVR/':'/ssync':'rw,slave' 'randomninjaatk/radarr-extended' a0b918e0a6a80194d03c224d0c3e2d96643c0913c503f44faf900450296bed6a The command finished successfully! Pulling image: randomninjaatk/radarr-extended:latest IMAGE ID [799742618]: Pulling from randomninjaatk/radarr-extended. Status: Image is up to date for randomninjaatk/radarr-extended:latest TOTAL DATA PULLED: 0 B Stopping container: radarr-extended-3D Successfully stopped container: radarr-extended-3D Removing container: radarr-extended-3D Successfully removed container: radarr-extended-3D Command execution docker run -d --name='radarr-extended-3D' --net='bridge' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="radarr-extended-3D" -e 'enableAutoConfig'='true' -e 'enableRecyclarr'='true' -e 'enableQueueCleaner'='false' -e 'enableExtras'='false' -e 'extrasType'='all' -e 'extrasLanguages'='en-US' -e 'extrasOfficialOnly'='true' -e 'extrasSingle'='true' -e 'extrasKodiCompatibility'='true' -e 'plexUrl'='http://x.x.x.x:32400' -e 'plexToken'='' -e 'PUID'='99' -e 'PGID'='100' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:7878]' -l net.unraid.docker.icon='https://raw.githubusercontent.com/RandomNinjaAtk/unraid-templates/master/randomninjaatk/img/radarr.png' -p '8805:7878/tcp' -v '/mnt/user/appdata/radarr-extended-3d':'/config':'rw' -v '/mnt/remotes/DS1515_DVR/':'/ssync':'rw,slave' 'randomninjaatk/radarr-extended' 9d8dcd87ae8dc11ecbeefc09bedd1368cafdfed0832153fb86e67d8db46090ce The command finished successfully! Pulling image: randomninjaatk/sonarr-extended:latest IMAGE ID [464443020]: Pulling from randomninjaatk/sonarr-extended. Status: Image is up to date for randomninjaatk/sonarr-extended:latest TOTAL DATA PULLED: 0 B Stopping container: Sonarr-Extended Successfully stopped container: Sonarr-Extended Removing container: Sonarr-Extended Successfully removed container: Sonarr-Extended Command execution docker run -d --name='Sonarr-Extended' --net='bridge' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="Sonarr-Extended" -e 'enableAutoConfig'='true' -e 'enableRecyclarr'='false' -e 'enableQueueCleaner'='false' -e 'enableExtras'='true' -e 'extrasType'='all' -e 'extrasLanguages'='en-US' -e 'extrasOfficialOnly'='false' -e 'plexUrl'='http://x.x.x.x:32400' -e 'plexToken'='' -e 'PUID'='99' -e 'PGID'='100' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:8989]' -l net.unraid.docker.icon='https://raw.githubusercontent.com/RandomNinjaAtk/unraid-templates/master/randomninjaatk/img/sonarr.png' -p '8803:8989/tcp' -v '/mnt/user/appdata/sonarr-extended':'/config':'rw' -v '/dev/rtc':'/dev/rtc':'rw' -v '/mnt/remotes/DS1515_DVR/':'/dvr':'rw,slave' 'randomninjaatk/sonarr-extended' 1ca558631dc04cd00a3fcedd2a232208eed22b3fb7933eda95621b6b8ae7a89e The command finished successfully! Pulling image: randomninjaatk/radarr-extended:latest IMAGE ID [492415863]: Pulling from randomninjaatk/radarr-extended. Status: Image is up to date for randomninjaatk/radarr-extended:latest TOTAL DATA PULLED: 0 B Stopping container: radarr-extended Successfully stopped container: radarr-extended Removing container: radarr-extended Successfully removed container: radarr-extended Command execution docker run -d --name='radarr-extended' --net='bridge' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="radarr-extended" -e 'enableAutoConfig'='true' -e 'enableRecyclarr'='false' -e 'enableQueueCleaner'='false' -e 'enableExtras'='true' -e 'extrasType'='all' -e 'extrasLanguages'='en-US' -e 'extrasOfficialOnly'='true' -e 'extrasSingle'='true' -e 'extrasKodiCompatibility'='true' -e 'plexUrl'='http://x.x.x.x:32400' -e 'plexToken'='' -e 'PUID'='99' -e 'PGID'='100' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:7878]' -l net.unraid.docker.icon='https://raw.githubusercontent.com/RandomNinjaAtk/unraid-templates/master/randomninjaatk/img/radarr.png' -p '8802:7878/tcp' -v '/mnt/user/appdata/radarr-extended':'/config':'rw' -v '/mnt/remotes/DS1515_DVR/':'/ssync':'rw,slave' 'randomninjaatk/radarr-extended' 114453618c85281bcea3ada320983f6fb4a02d4d7b772e44bd3fd8369773a3ec The command finished successfully! Pulling image: randomninjaatk/radarr-extended:latest IMAGE ID [1112258170]: Pulling from randomninjaatk/radarr-extended. Status: Image is up to date for randomninjaatk/radarr-extended:latest TOTAL DATA PULLED: 0 B Stopping container: radarr-extended-3D Successfully stopped container: radarr-extended-3D Removing container: radarr-extended-3D Successfully removed container: radarr-extended-3D Command execution docker run -d --name='radarr-extended-3D' --net='bridge' -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="KNOXX" -e HOST_CONTAINERNAME="radarr-extended-3D" -e 'enableAutoConfig'='true' -e 'enableRecyclarr'='true' -e 'enableQueueCleaner'='false' -e 'enableExtras'='false' -e 'extrasType'='all' -e 'extrasLanguages'='en-US' -e 'extrasOfficialOnly'='true' -e 'extrasSingle'='true' -e 'extrasKodiCompatibility'='true' -e 'plexUrl'='http://x.x.x.x:32400' -e 'plexToken'='' -e 'PUID'='99' -e 'PGID'='100' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:7878]' -l net.unraid.docker.icon='https://raw.githubusercontent.com/RandomNinjaAtk/unraid-templates/master/randomninjaatk/img/radarr.png' -p '8805:7878/tcp' -v '/mnt/user/appdata/radarr-extended-3d':'/config':'rw' -v '/mnt/remotes/DS1515_DVR/':'/ssync':'rw,slave' 'randomninjaatk/radarr-extended' 6ba041227e8d0c65fe26f6f7fdedd8455e4e416eaa4a8961dcb56d0c72575a71 The command finished successfully! knoxx-diagnostics-20230327-1006.zip
  5. So I've seen this come up before. Not that often but it happened again. Pulling up the login screen and at the top are two lines of error output. Once you log in, the screen is white and these lines are at the top. Warning: parse_ini_file(state/var.ini): failed to open stream: No such file or directory in /usr/local/emhttp/login.php on line 11 Warning: session_start(): Cannot start session when headers already sent in /usr/local/emhttp/plugins/dynamix/include/.login.php on line 8 Warning: session_start(): Cannot start session when headers already sent in /usr/local/emhttp/plugins/dynamix/include/.login.php on line 214 Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /usr/local/emhttp/plugins/dynamix/include/.login.php on line 217 Warning: Cannot modify header information - headers already sent by (output started at /usr/local/emhttp/login.php:11) in /usr/local/emhttp/plugins/dynamix/include/.login.php on line 222 SSH still works and I was able to create a diagnostics. I looked around and there was mention that this happens durint the appdata backup process. I looked at my backups and I noticed that they had not been runnign for a few days now. The last backup 'attempt' was on the 19th and was showing '-error' in the filename. This is the content of the AppDataBackup plugin; [19.02.2023 03:00:01] Backup of appData starting. This may take awhile [19.02.2023 03:00:01] Not stopping : Not started! [ / Up 3 hours] [19.02.2023 03:00:01] Not stopping : Not started! [ / Up 3 hours (healthy)] [19.02.2023 03:00:01] Not stopping : Not started! [ / Up 3 hours] [19.02.2023 03:00:01] Not stopping : Not started! [ / Up 3 hours (healthy)] [19.02.2023 03:00:01] Not stopping : Not started! [ / Up 3 hours] [19.02.2023 03:00:01] Not stopping : Not started! [ / Up 3 hours] [19.02.2023 03:00:01] Not stopping : Not started! [ / Up 3 hours] [19.02.2023 03:00:01] Not stopping : Not started! [ / Created] [19.02.2023 03:00:01] Not stopping : Not started! [ / Up 3 hours] [19.02.2023 03:00:01] Not stopping : Not started! [ / Up 3 hours] [19.02.2023 03:00:01] Not stopping : Not started! [ / Up 3 hours] [19.02.2023 03:00:01] Not stopping : Not started! [ / Up 3 hours] [19.02.2023 03:00:01] Not stopping : Not started! [ / Exited (0) 3 hours ago] [19.02.2023 03:00:01] Not stopping : Not started! [ / Up 3 hours] [19.02.2023 03:00:01] Not stopping : Not started! [ / Up 3 hours] [19.02.2023 03:00:01] Not stopping : Not started! [ / Exited (137) 3 hours ago] [19.02.2023 03:00:01] Not stopping : Not started! [ / Exited (143) 3 hours ago] [19.02.2023 03:00:01] Not stopping : Not started! [ / Up 3 hours (healthy)] [19.02.2023 03:00:01] Stopping binhex-prowlarr... done! (took 1 seconds) [19.02.2023 03:00:02] Stopping binhex-urbackup... done! (took 2 seconds) [19.02.2023 03:00:04] Backing Up appData from /mnt/cache/appdata/ to /mnt/remotes/192.168.200.89_Backups/KNOXX/appdatabu/[email protected] [19.02.2023 03:00:04] Separate archives enabled! [19.02.2023 03:00:04] Ignoring: . [19.02.2023 03:00:04] Ignoring: .. [19.02.2023 03:00:04] Backing Up: binhex-prowlarr [19.02.2023 03:00:04] Verifying Backup binhex-prowlarr [19.02.2023 03:00:04] Backing Up: binhex-urbackup [19.02.2023 03:00:14] Verifying Backup binhex-urbackup [19.02.2023 03:00:17] Backing Up: dashy [19.02.2023 03:00:17] Verifying Backup dashy [19.02.2023 03:00:17] Backing Up: FileBot [19.02.2023 03:00:17] Verifying Backup FileBot [19.02.2023 03:00:17] Backing Up: homeassistant [19.02.2023 03:00:22] Verifying Backup homeassistant [19.02.2023 03:00:23] Backing Up: Home-Assistant-Core [19.02.2023 03:00:23] Verifying Backup Home-Assistant-Core [19.02.2023 03:00:23] Backing Up: mariadb [19.02.2023 03:00:46] Verifying Backup mariadb [19.02.2023 03:00:51] Backing Up: nextcloud [19.02.2023 03:01:06] Verifying Backup nextcloud [19.02.2023 03:01:08] Backing Up: Nginx-Proxy-Manager-Official [19.02.2023 03:01:08] Verifying Backup Nginx-Proxy-Manager-Official [19.02.2023 03:01:08] Backing Up: pihole [19.02.2023 03:01:46] Verifying Backup pihole [19.02.2023 03:01:52] Backing Up: radarr-extended [19.02.2023 03:04:53] Verifying Backup radarr-extended [19.02.2023 03:05:30] Backing Up: radarr-extended-3d [19.02.2023 03:05:32] Verifying Backup radarr-extended-3d [19.02.2023 03:05:33] Backing Up: seedsync [19.02.2023 03:05:33] Verifying Backup seedsync [19.02.2023 03:05:33] Backing Up: sonarr-extended [19.02.2023 03:05:59] Verifying Backup sonarr-extended [19.02.2023 03:06:04] Backing Up: TubeArchivist [19.02.2023 03:06:05] Verifying Backup TubeArchivist [19.02.2023 03:06:05] Backing Up: vaultwarden [19.02.2023 03:06:05] Verifying Backup vaultwarden [19.02.2023 03:06:05] done [19.02.2023 03:06:05] Starting binhex-urbackup... (try #1) Error while starting container! - Code: Server error [19.02.2023 03:06:10] Starting binhex-urbackup... (try #2) Error while starting container! - Code: Server error [19.02.2023 03:06:16] Starting binhex-urbackup... (try #3) Error while starting container! - Code: Server error [19.02.2023 03:06:16] Container did not started after multiple tries, skipping. [19.02.2023 03:06:18] Starting binhex-prowlarr... (try #1) Error while starting container! - Code: Server error [19.02.2023 03:06:23] Starting binhex-prowlarr... (try #2) Error while starting container! - Code: Server error [19.02.2023 03:06:28] Starting binhex-prowlarr... (try #3) Error while starting container! - Code: Server error [19.02.2023 03:06:28] Container did not started after multiple tries, skipping. [19.02.2023 03:06:37] A error occurred somewhere. Not deleting old backup sets of appdata [19.02.2023 03:06:37] Backup / Restore Completed knoxx-diagnostics-20230324-0939.zip
  6. That's my biggest issue with IPVLAN. I'm not 100% sure if it might be causing problems with Unifi, specifically Unifi's threat detection/blocking. I'm not 100% sure how they approach this feature, whether it is IP based or MAC based and how it affects what I will call a 'floating MAC'; the same MAC for multiple systems.
  7. The option is in the Unraid Docker settings. You'll need to stop Docker first, then you can change the option. I don't think you can see it until Docker is down.
  8. Hey all, I was looking at various pen-testing tools that are out there and got to thinking about if there was a docker container that I could run in Unraid. That would allow anyone to do proper penetration testing and take security steps if anything is amiss. I did come across the OWASP tool Venom . There is a Docker container for it on DH and the GIT (https://github.com/ovh/venom#docker-image) but there is no template in Unraid. I've got no clue how to build a template ATM. I'm still learning all this stuff. But, I was wondering if there's more to test than just the Venom tool. Maybe there is something already out there that does all the penetration testing, preferably in a UI, that we can get up and running on UR. Suggestions?
  9. Hey @Squid, Thanks for jumping in here. And, not to be snarky. But I think you missd the part in my post that aluded to not having a clue how to do that.
  10. Happened across this post. I have exactly the same problem. The container I am using, as far as I can tell, does not implement anything regarding UMASK on files created inside the container. As such, while the files are owned by 'nobody', the permissions are "nobody drwxr-xr-x". The share that is being written to does have public access. But, while users on the network can view and copy files/folders, they just can't do anything else. They can't edit or delete anything. As I mentioned, I believe this is down to the containers DEV not implementing the UMASK functions. I suspect that there may be other DEV's that miss this as well. In my case I am using Seedsync and the DEV has been MIA for quite some time and this problem persists. As a possble solution, if there was a way to inotify specific folders and trigger a New Safe Permissions process on it, that would be great. Would solve a lot of peoples problems. Yes, I know you can do that easily with a script. Alas, I and many many others are not scripters and would risk breaking our Unraid server in the attempt to create such a thing. Hence why we went the Unraid route to begin with. I will say that getting started in Unraid has opened me up to so many new things and has taught me a lot. But I am not at the level of creating a script, getting it into Unraid and telling Unraid to run it on a regular basis.
  11. First, apologies if posting here an in the Discord is a no-no. I've got a Seedsync snafu that's got me stuck. I've been running it for years but noticed something odd and now it's acting up on me. I've managed to figure out the UID:GID issue so now the container is writing the DL's under 'nobody' but the permissions are all messed up for new files getting written. It sets them in a way that no external system can delete/move the files. I can't figure out how to correct this problem. I've run the Docker New Permissions tool on the entire system but while that fixed previous files/folder, it does nothing for new ones. I've searched for the better part of 2+ hours and tried many things. I've added a 'umask 0000' variable to the template. I've open the console of the Seedsync container and ran 'umask 0000'. The mapped DIR in the container is 777 and is owned by user 99. Nothing changes. All new downloads have the permissions set above in the screenshot. I'd be pulling my hair out but I don't have any left.
  12. I moved TA to my Docker network with a dedicated NIC. I also moved ES and Redis to the same network each with dedicated IP's. I updated the TA config so it can connect to those services and then changed the port in TA from 8000 to 80. But it won't take. It still shows port 8000. I don't see any error messages in logs referring to that. Everything was working fine prior and still does aside form the port issue.
  13. I saw that and did put stuff there. The problem I see going that route though is any time you want to edit that content, it has to stop the container, rebuild it and start it back up. Just to change a note. Perhaps if there was a way to edit that content without going through the whole rebuild process?
  14. I'd like to see a little notepad option for the Docker containers where we could write our own notes. Things like CLI commands and such. I've added a curated whitelist to my PiHole install and would like to keep notes on the GIT for it and the CLI command to update the list from time to time. Yes, I could write these things down in a Notion page or Google Keep or......whatever. But having them right there next to the container would be helpful. It's a little quality of life thing.
  15. Let's get the immediate things out of the way first. 1. You installed TubeArchivist-ES 2. You've installed TubeArchivist-Redis (using redis/redis-stack-server:latest image) 3. You've added the 'path.repo' variable to the Redis template and pointed it to the right user share for ES snapshots 4. You've configured the right paths in the TA template such as ES, Redis and where it's going to store DL's Did you install the Chrome Add-on and check off 'sync cookies'
  16. Can you make a screen recording of what you are doing? When you subscribe to a channel, the entire channel will be queued up to download. The queue will run on the scheduler settings, but it is limited to not connecting to YT to download more than once per hour. If you click on the Channels page, it should list all your subscribed channels. If you click on one of the channels, it should bring you to a page listing all the downloaded videos. Are you saying that this is not happening? The other thing that I should mention in the event that his makes a difference. There is a Chrome plugin for TA that will allow you to subscribe to channels and add individual videos to the download queue. This plugin also syncs the YT cookie with TA. It is this cookie sync that may be the difference and what might be stopping your install from downloading properly.
  17. Can you be a bit clearer here? Do you mean that in TA channels, you see the subscribed channels and there are videos listed there? If you click on one can you watch it in TA? That would mean the TA is working fine. If that's not what you mean, I would take a look at the Scheduler Setup (in TA not the Docker template settings) and check what the rescan and start download frequency are set to.
  18. I came across this article regarding recently discovered Docker container vulnerabilities that were previously missed by regular scan methods. https://www.helpnetsecurity.com/2023/02/23/hidden-vulnerabilities-docker-containers/ Apparently many Dockerhub containers were all identified as having significant security issues that could leave them open to be hacked and compromised. It would be awesome if there was a way an Unraid plugin could query a list of vulnerable images, if there is one.
  19. Don't be so fast to judge that. If volatility of the data on the cache was not a concern then we wouldn't have the CA Autobackup plugin for the appdata folder. Clearly it was looked at as a potential problem of losing data. In my searching I have seen other posts that ring similar to what I am suggesting. The last post in that thread read as follows; So others have created a script to achieve this result. That tells me that this is a feature that should be built in. And before anyone jumps on his choice of words, yes Unraid is not backup. I posed the question of what harm would leaving the data on the array rather than outright moving it? So far I haven't seen a strong negative effect. That's the spirit! Now we're talking about scenarios and how to handle them. I would think that it would be possible to either bury the array data that makes it almost impossible to not know what you are touching. Or, even simpler, a warning message telling the user that they are touching non-cache data of a cached share. Another option is clicking on the file browser doesn't bring you to the array contents but rather the cache contents. That is actually how it works right now. That would effectively make it impossible to touch the array files. None of these solutions would be impossible to implement. Can we at least agree that having data sit on the cache drives at all times that never hit the array ever is asking for data loss at some point. And that this should be given some thought and attention? Everything I have written are ideas that I have just quickly put out for discussion. I am not the creator, I'm not a developer. I have no power to say that this is how it is going to work going forward. I'm a customer that has run into a gotcha that had me pay a price. My intention is to help other new users of Unraid not experience the same thing. And with that, I rest my case.
  20. In the meantime, yes. I think this would work. Thanks for the suggestion. At the very least, the current data in the cache pool would be somewhat protected from my fat fingers. I haven't found anything like that other than the CA Autobackup for appdata. I should point out though, using your analogy of 'fat fingers'. Mother nature graced me with fat fingers. Developers are the ones that put the buttons very close together. Should we blame mother nature or could the developers space the buttons out a bit?
  21. On the contrary. my original observation was an assumption and my error. My suggestion is to fundamentally change the cache function from a move operation to a clone operation. I'm not suggesting it is or should be a backup. But what harm could come from leaving the data on the array and use the cache data as the working version? I know the general consensus from IT professionals is, as you put it, "if you need to protect against data loss due to fat finger operations, you need a backup." That's not really how the world works. Some enterprising IT professionals accept this and provide some solutions. I can't count how many times the recycle bin on my Synology has saved my butt. It's a simple thing, but effective. The Unraid platform has always been referred to by others as non-professional and for hobbyists use. So maybe providing the non-professional users some level of 'oops control' would be a nice addition. I understand that this is most likely a significant change and not a small feat. But I do hope that this is approached with an open mind and some consideration in the future.
  22. I guess I have misunderstood them. That being said, I would appreciate those that run the show consider this observation. Consider retaining the array data in its place. When the array is shutdown, copy from the cache back to the array. In the very least that would help to avert complete data loss in the event of a hardware problem. If the cache is blown up (for some reason) the cache 'copy' would be toast but at least there would be a copy of the data -albeit maybe not the most recent. Yes, that could slow down the array shutdown process. Updated files in the cache would have to be compiled and moved back to the array. To me, this is a win-win trade off. There is speed in the cache and security in the array. fingers crossed.
  23. So I was re-working my cache drive situation. I bought two SSD drives to add a secondary cache in RAID0 for larger data transfers. Previously, I had 2 x 250GB ssd drives and set those up as a RAID1 array for smaller, more important cache content. All of these share were set to be cache:prefer. During the alignment process of the RAID1 array, I checked the files on the drive. I noticed that one of the shares had a folder sitting on the RAID1 cache that I had already re-assigned to the larger RAID0 cache earlier. So I didn't give a second thought when I deleted that folder on the RAID1 cache. Well, I found out the hard way that deleting that folder on the RAID1 cache told the system to ALSO delete the entire share on the main array. The entire share was blown away! I searched for a solution to restore deleted files/folders. The first step was determine which drive had the original share. That was impossible because it no longer existed so checking each of the drives showed nothing. While I would like to restore that data, it wasn't the end of the world. I can chalk it up to a learning experience. But if there is a solution I am all ears. While this might be a very unique situation. Does this sound like it could be an unexpected function? I mean, the cache is a working copy of the original source content, especially so when set to 'prefer'. AFAIK the only time that content moves is when the array is stopped. The mover then moves the cache copies back to the array. In this situation, deleting the folder on the cache IMMEDIATELY deleted the share on the array. @limetech Any suggestions/comments?
  24. Now I'm not the dumbest guy in the room so when I'm looking at this, it doesn't seem to make sense why it's working the way it is. I have two NIC's in the system (well, three but one I ma not using so it's port down). I only have a bridge set on the eth0 NIC with that NIC the only member. The eth1 port does not have a bridge or bond set. I have some containers set to use the 'Bridge' network. For some reason, those containers can be reached via the IP assigned to the eth0 nic AND the eth1 nic IP addresses. This doesn't make sense to me. On a side note; I first went to look at the documentation but I was surprised to see how thin the content there was. There was nothing in detail explaining each setting on that page. https://wiki.unraid.net/Manual/Additional_Settings#Network_Settings knoxx-diagnostics-20230220-1159.zip
  25. Thanks @CorneliousJD, I rebuilt the container with the new image and I noticed something in the logs. 8:M 19 Feb 2023 16:43:48.852 # WARNING Memory overcommit must be enabled! Without it, a background save or replication may fail under low memory condition. Being disabled, it can can also cause failures without low memory condition, see https://github.com/jemalloc/jemalloc/issues/1328. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect. Did you see this as well? I wonder if this error is specifically for container use and could cause an issue or, if this issue is specifically for running REDIS on bare metal? I also added the now required variable 'path.repo' to the containers config. I think I passed the path correctly. I didn't see any errors in any logs in either REDIS or ES. TA seems to work ok too. EDIT: WOW, I tried to go though the bug report in the git and thought I was reading a different language lol. I'm not really sure if this issue was resolved or if it's still a problem or what!?!

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.