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.

kri kri

Members
  • Joined

  • Last visited

Everything posted by kri kri

  1. Getting an error when updating / reinstalling this docker Error: Error while pulling image: Get https://index.docker.io/v1/repositories/linuxserver/radarr/images: x509: failed to load system roots and no roots provided
  2. Would it be possible to use my mounted rclone ACD location to download directly to ACD, or would it download to my server and then upload? I am just wondering if I can avoid getting a VPS.
  3. Really awesome thanks for making this. Could someone explain what I should be using for my rclone copy command? The rclone docs say: rclone copy remote:test.jpg /tmp/download But I don't know what to put for my paths.
  4. Getting an error when trying to update nzbhydra (from its webui). I tried to remove the docker and re-add with CA, no luck. 2016-10-28 13:57:49,315 - INFO - web - Thread-35 - Starting update 2016-10-28 13:57:49,315 - INFO - web - Thread-35 - Starting update 2016-10-28 13:57:49,551 - INFO - backup_debug - Thread-35 - Successfully backed up database and settings to /config/hydra/backup/nzbhydra-backup-2016-10-28-13-57.zip 2016-10-28 13:57:49,830 - INFO - update - Thread-35 - git output: warning: unable to access '/root/.config/git/attributes': Permission denied HEAD is now at b5e8c99 Show "Update query" in search history for update queries. See #388. 2016-10-28 13:57:50,214 - INFO - update - Thread-35 - git output: From https://github.com/theotherp/nzbhydra * branch master -> FETCH_HEAD Updating b5e8c99..ab4ee4f warning: unable to access '/root/.config/git/attributes': Permission denied warning: unable to access '/root/.config/git/ignore': Permission denied error: The following untracked working tree files would be overwritten by merge: nzbhydra.log.1 Please move or remove them before you can merge. Aborting 2016-10-28 13:57:50,215 - ERROR - update - Thread-35 - "git" pull origin master returned : From https://github.com/theotherp/nzbhydra * branch master -> FETCH_HEAD Updating b5e8c99..ab4ee4f warning: unable to access '/root/.config/git/attributes': Permission denied warning: unable to access '/root/.config/git/ignore': Permission denied error: The following untracked working tree files would be overwritten by merge: nzbhydra.log.1 Please move or remove them before you can merge. Aborting
  5. Having a really strange issue. I am not getting any response from the webUI in sonarr. Things I have done - Reinstalled from CA - Checked for updates manually - Rebooted router Every other docker of mine works fine (nzbget, CP, nzbhydra). I have not messed with appdata because the docker itself seems to be working fine. I just use the local IP of my server, I don't forward the port for sonarr. Logs below. Brought to you by linuxserver.io We do accept donations at: https://www.linuxserver.io/donations ------------------------------------- GID/UID ------------------------------------- User uid: 99 User gid: 100 ------------------------------------- [cont-init.d] 10-adduser: exited 0. [cont-init.d] 30-config: executing... [cont-init.d] 30-config: exited 0. [cont-init.d] done. [services.d] starting services [services.d] done. [info] Bootstrap: Starting Sonarr - /opt/NzbDrone/NzbDrone.exe - Version 2.0.0.4230 [info] AppFolderInfo: Data directory is being overridden to [/config] [info] MigrationLogger: *** Migrating data source=/config/nzbdrone.db;cache size=-10485760;datetimekind=Utc;journal mode=Wal;pooling=True;version=3 *** [info] MigrationLogger: *** Migrating data source=/config/logs.db;cache size=-10485760;datetimekind=Utc;journal mode=Wal;pooling=True;version=3 *** [info] Router: Application mode: Interactive [info] OwinHostController: Listening on the following URLs: [info] OwinHostController: http://*:8989/ [info] NancyBootstrapper: Starting NzbDrone API [info] RssSyncService: Starting RSS Sync [info] DownloadDecisionMaker: Processing 400 releases [info] RssSyncService: RSS Sync Completed. Reports found: 400, Reports grabbed: 0 [info] RssSyncService: Starting RSS Sync [info] DownloadDecisionMaker: Processing 400 releases [info] RssSyncService: RSS Sync Completed. Reports found: 400, Reports grabbed: 0
  6. I had some weird indexer errors this week, I use about 4 indexers. Sonarr would tell me the indexers are unavailable. I rebooted sonarr and checked a couple days later, no errors. Bizarre.
  7. Thanks for the reminder. I use the "Nginx-letsencrypt" docker and I managed to get it to work like this: nginx/site-confs/default upstream backend { # the netdata server server 192.168.2.130:19999; keepalive 64; } server { listen 80; listen 443 ssl http2; # server_name mysecretdomain.com www.mysecretdomain.com; include /config/nginx/proxy.conf; include /config/nginx/auth.conf; ssl_certificate /config/keys/fullchain.pem; ssl_certificate_key /config/keys/privkey.pem; ssl_dhparam /config/nginx/dhparams.pem; ssl_ciphers 'ECDHE-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'; ssl_prefer_server_ciphers on; location / { root /config/www; index index.html index.htm index.php; } # This exposes the unraid GUI, not a good idea ! # location / { # proxy_pass http://192.168.2.130/; # proxy_buffering off; # } location /coach { proxy_pass http://192.168.2.130:5050/coach; } location /sonarr { proxy_pass http://192.168.2.130:8989/sonarr; } location ~ /netdata/(?<ndpath>.*) { proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_pass http://backend/$ndpath$is_args$args; proxy_http_version 1.1; proxy_pass_request_headers on; proxy_set_header Connection "keep-alive"; proxy_store off; } } the URL needs to have a trailing /, I couldn't work that out yet. Hope it works for you. there are also official ngnix, apache, lighttpd and caddy examples https://github.com/firehol/netdata/wiki/Running-behind-nginx https://github.com/firehol/netdata/wiki/Running-behind-apache https://github.com/firehol/netdata/wiki/Running-behind-lighttpd https://github.com/firehol/netdata/wiki/Running-behind-caddy Thanks for this. Did you manually create the proxy.conf and auth.conf files? I am trying to wrap my head around this reverse proxy stuff.
  8. This is how mine is setup - works a treat: /config /mnt/cache/appdata/emby/ /mnt /mnt/user/media/

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.