Jump to content

Docker


Luke

Recommended Posts

vaise

Im converting from an old socket 1150 DDR3 Intel quad core based unraid server to a modern Ryzen 7 2700 based server.

All is new except the disks.

I have all the hardware built as a test bed, with a few old drives in there for testing/playing/burning in.

 

My old Intel integrated GPU config had hardware encoding for emby configured with :

 

flash\config\go :

modprobe i915

chown -R nobody:users /dev/dri
chmod -R 777 /dev/dri

 

container edit with :

--device /dev/dri/renderD128

 

Emby was configured with 'Advanced' in transcoding section and VAAPI was selected for all areas.  All seemed to be working fine for ages.

 

Now to the new system :

I have twice the cores/threads now so software encoding will likely be fine, but I am wondering what are my hardware encoding options, if any ?

I had to install a cheap GPU as Ryzen does not have integrated graphics (learn something new every day) and so I put in an Radeon R5 230 (cheapest I could find to complete the build).

 

Question - What are my hardware transcoding options for Emby - if any ?

 

I'm not a linux expert at all and have just been googling and it appears that VAAPI does support Radeon, but I believe the modprobe above relates to intel only and the /dev/dri is not created on the ryzen/amd system if I make these same mods to the flash.  Emby container says file not found for them.

Edited by vaise
Link to comment
Share on other sites

  • 3 weeks later...
BobbyDing

Hi. Been having repeated issues with Unraid Emby Docker running out of temp space within the appdata folder and crashing all the docker apps. This happens when my wife uses Emby on our Roku to watch TV and falls asleep with the live tv still running into the night. In the mornings I find the appdata\embyserver\transcode-temp folder full and no space left on the ssd cache drives. Thus crashing Docker and all its minions. It must be something I have set wrong. How can I correct this? It last happened on the 16th. Emptying the folder fixes it. Logs attached.

 

Thanks!!

Emby_Logs.7z

Edited by BobbyDing
Link to comment
Share on other sites

BAlGaInTl

I had that issue when I first set up Emby in an unRaid docker.  I was planning on upgrading my cache drive anyway though and haven't seen the issue since.

 

How big is your cache drive?

Link to comment
Share on other sites

mastrmind11

Im converting from an old socket 1150 DDR3 Intel quad core based unraid server to a modern Ryzen 7 2700 based server.

All is new except the disks.

I have all the hardware built as a test bed, with a few old drives in there for testing/playing/burning in.

 

My old Intel integrated GPU config had hardware encoding for emby configured with :

 

flash\config\go :

modprobe i915

chown -R nobody:users /dev/dri
chmod -R 777 /dev/dri

 

container edit with :

--device /dev/dri/renderD128

 

Emby was configured with 'Advanced' in transcoding section and VAAPI was selected for all areas.  All seemed to be working fine for ages.

 

Now to the new system :

I have twice the cores/threads now so software encoding will likely be fine, but I am wondering what are my hardware encoding options, if any ?

I had to install a cheap GPU as Ryzen does not have integrated graphics (learn something new every day) and so I put in an Radeon R5 230 (cheapest I could find to complete the build).

 

Question - What are my hardware transcoding options for Emby - if any ?

 

I'm not a linux expert at all and have just been googling and it appears that VAAPI does support Radeon, but I believe the modprobe above relates to intel only and the /dev/dri is not created on the ryzen/amd system if I make these same mods to the flash.  Emby container says file not found for them.

Google search "vaapi radeon".  Should get a bunch of links on how to get and enable the proper drivers for the radeon (vdpau and mesa iirc)

Link to comment
Share on other sites

BobbyDing

I had that issue when I first set up Emby in an unRaid docker.  I was planning on upgrading my cache drive anyway though and haven't seen the issue since.

 

How big is your cache drive?

 

There is 145GB available normally in a 240GB cache pool. I was considering adding a separate ssd to use as a cache, but I'm not sure what would be large enough?? And also, is this truly the problem (before I go spend $$$).

 

Thanks!

 

Bobby

Link to comment
Share on other sites

shokinn

Hey there I'm currently facing the issue that outgoing connections (emby -> internet) are sometimes working and sometimes not.

It's a bit flaky.

For the media scanning process it works sometimes, sometimes not.

Getting the EmbyPackages.json and the developers blog are always timing out.
Then I was trying to download the "https://www.mb3admin.com/admin/service/EmbyPackages.json"with wget in the docker container and it worked totally fine.

My System:

I deploy my system with ansible this is the part for the Emby docker container deployment:

- name: Deploy Emby Media Server (incl. HW accellaration)
  docker_container:
    name: "emby"
    image: "emby/embyserver:latest"
    # currently broken see https://github.com/ansible/ansible/pull/56687
    # networks_cli_compatible: yes
    purge_networks: yes
    networks:
      - name: "docker2_br"
        ipv4_address: "172.42.0.42"
        ipv6_address: "fc00:dead:beef:404::42" # I changed the address because it is a public IPv6 IP assigend to my server
    volumes:
      - /docker/emby:/config
      - /mnt/media:/mnt/media
    devices:
      - /dev/dri/renderD128
    env:
      UID: "998"
      GID: "997"
      GIDLIST: "997,44"
    restart_policy: unless-stopped
  when: stat_hw_accelleratoin_exists.stat.exists == True

Emby server log*:
* note I changed my domain to emby.example.tld and my home ip address to 42.42.42.42
 

2019-06-19 19:25:50.176 Info Main: Application path: /system/EmbyServer.dll
2019-06-19 19:25:50.459 Info Main: Emby
	Command line: /system/EmbyServer.dll -programdata /config -ffdetect /bin/ffdetect -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
	Operating system: Unix 4.18.0.22
	64-Bit OS: True
	64-Bit Process: True
	User Interactive: True
	Runtime: file:///system/System.Private.CoreLib.dll
	Processor count: 12
	Program data path: /config
	Application directory: /system
2019-06-19 19:25:50.507 Info App: Application version: 4.1.1.0
2019-06-19 19:25:50.510 Info App: Loading assemblies
2019-06-19 19:25:50.564 Info App: File /config/plugins/OpenSubtitles.dll has version 1.0.15.0
2019-06-19 19:25:50.565 Info App: File /system/plugins/OpenSubtitles.dll has version 1.0.15.0
2019-06-19 19:25:50.565 Info App: File /config/plugins/MovieDb.dll has version 1.0.8.0
2019-06-19 19:25:50.565 Info App: File /system/plugins/MovieDb.dll has version 1.0.8.0
2019-06-19 19:25:50.565 Info App: File /config/plugins/NfoMetadata.dll has version 1.0.11.0
2019-06-19 19:25:50.565 Info App: File /system/plugins/NfoMetadata.dll has version 1.0.11.0
2019-06-19 19:25:50.565 Info App: File /config/plugins/MusicBrainz.dll has version 1.0.5.0
2019-06-19 19:25:50.566 Info App: File /system/plugins/MusicBrainz.dll has version 1.0.5.0
2019-06-19 19:25:50.566 Info App: File /config/plugins/Tvdb.dll has version 1.0.6.0
2019-06-19 19:25:50.566 Info App: File /system/plugins/Tvdb.dll has version 1.0.6.0
2019-06-19 19:25:50.566 Info App: File /config/plugins/AudioDb.dll has version 1.0.4.0
2019-06-19 19:25:50.566 Info App: File /system/plugins/AudioDb.dll has version 1.0.4.0
2019-06-19 19:25:50.566 Info App: File /config/plugins/OMDb.dll has version 1.0.5.0
2019-06-19 19:25:50.567 Info App: File /system/plugins/OMDb.dll has version 1.0.5.0
2019-06-19 19:25:50.567 Info App: File /config/plugins/StudioImages.dll has version 1.0.0.0
2019-06-19 19:25:50.567 Info App: File /system/plugins/StudioImages.dll has version 1.0.0.0
2019-06-19 19:25:50.567 Info App: File /config/plugins/Emby.Server.CinemaMode.dll has version 1.0.14.0
2019-06-19 19:25:50.567 Info App: File /system/plugins/Emby.Server.CinemaMode.dll has version 1.0.14.0
2019-06-19 19:25:50.567 Info App: File /config/plugins/Emby.PortMapper.dll has version 1.0.1.0
2019-06-19 19:25:50.567 Info App: File /system/plugins/Emby.PortMapper.dll has version 1.0.1.0
2019-06-19 19:25:50.568 Info App: File /config/plugins/Fanart.dll has version 1.0.2.0
2019-06-19 19:25:50.568 Info App: File /system/plugins/Fanart.dll has version 1.0.2.0
2019-06-19 19:25:50.577 Info App: Loading OpenSubtitles, Version=1.0.15.0, Culture=neutral, PublicKeyToken=null from /config/plugins/OpenSubtitles.dll
2019-06-19 19:25:50.577 Info App: Loading MovieDb, Version=1.0.8.0, Culture=neutral, PublicKeyToken=null from /config/plugins/MovieDb.dll
2019-06-19 19:25:50.577 Info App: Loading NfoMetadata, Version=1.0.11.0, Culture=neutral, PublicKeyToken=null from /config/plugins/NfoMetadata.dll
2019-06-19 19:25:50.577 Info App: Loading MusicBrainz, Version=1.0.5.0, Culture=neutral, PublicKeyToken=null from /config/plugins/MusicBrainz.dll
2019-06-19 19:25:50.577 Info App: Loading Tvdb, Version=1.0.6.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Tvdb.dll
2019-06-19 19:25:50.577 Info App: Loading AudioDb, Version=1.0.4.0, Culture=neutral, PublicKeyToken=null from /config/plugins/AudioDb.dll
2019-06-19 19:25:50.577 Info App: Loading OMDb, Version=1.0.5.0, Culture=neutral, PublicKeyToken=null from /config/plugins/OMDb.dll
2019-06-19 19:25:50.577 Info App: Loading StudioImages, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null from /config/plugins/StudioImages.dll
2019-06-19 19:25:50.577 Info App: Loading Emby.Server.CinemaMode, Version=1.0.14.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Emby.Server.CinemaMode.dll
2019-06-19 19:25:50.577 Info App: Loading Emby.PortMapper, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Emby.PortMapper.dll
2019-06-19 19:25:50.577 Info App: Loading Fanart, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Fanart.dll
2019-06-19 19:25:50.577 Info App: Loading MediaBrowser.Api, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading MediaBrowser.WebDashboard, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading MediaBrowser.Model, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading MediaBrowser.Common, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading MediaBrowser.Controller, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading MediaBrowser.Providers, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading Emby.Photos, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading Emby.Server.Implementations, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading Emby.LiveTV, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading Emby.Server.MediaEncoding, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading MediaBrowser.LocalMetadata, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading Emby.Notifications, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.578 Info App: Loading Emby.Codecs.Dxva, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.578 Info App: Loading Emby.Codecs, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.578 Info App: Loading Emby.Server.Connect, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.578 Info App: Loading Emby.Server.Sync, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.578 Info App: Loading EmbyServer, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.766 Info SqliteUserRepository: Sqlite version: 3.26.0
2019-06-19 19:25:50.767 Info SqliteUserRepository: Sqlite compiler options: COMPILER=gcc-6.3.0,ENABLE_COLUMN_METADATA,ENABLE_DBSTAT_VTAB,ENABLE_FTS3_PARENTHESIS,ENABLE_FTS3_TOKENIZER,ENABLE_FTS4,ENABLE_FTS5,ENABLE_JSON1,ENABLE_PREUPDATE_HOOK,ENABLE_RTREE,ENABLE_SESSION,ENABLE_UNLOCK_NOTIFY,ENABLE_UPDATE_DELETE_LIMIT,LIKE_DOESNT_MATCH_BLOBS,MAX_SCHEMA_RETRY=25,MAX_VARIABLE_NUMBER=250000,OMIT_LOOKASIDE,SECURE_DELETE,THREADSAFE=1
2019-06-19 19:25:50.797 Info SqliteUserRepository: Default journal_mode for /config/data/users.db is wal
2019-06-19 19:25:50.800 Info SqliteUserRepository: PRAGMA synchronous=1
2019-06-19 19:25:50.855 Info AuthenticationRepository: Default journal_mode for /config/data/authentication.db is wal
2019-06-19 19:25:50.855 Info AuthenticationRepository: PRAGMA synchronous=1
2019-06-19 19:25:50.916 Info ActivityRepository: Default journal_mode for /config/data/activitylog.db is wal
2019-06-19 19:25:50.916 Info ActivityRepository: PRAGMA synchronous=1
2019-06-19 19:25:50.919 Info SqliteDisplayPreferencesRepository: Default journal_mode for /config/data/displaypreferences.db is wal
2019-06-19 19:25:50.919 Info SqliteDisplayPreferencesRepository: PRAGMA synchronous=1
2019-06-19 19:25:50.931 Info HttpServer: Adding HttpListener prefix http://+:8096/
2019-06-19 19:25:50.931 Info HttpServer: Adding HttpListener prefix https://+:8920/
2019-06-19 19:25:51.057 Debug XmlSerializer: Deserializing file /config/config/users/ecb63fa31daa4d4398f09d626c8f292e/policy.xml
2019-06-19 19:25:51.114 Info SqliteItemRepository: Default journal_mode for /config/data/library.db is wal
2019-06-19 19:25:51.115 Info SqliteItemRepository: PRAGMA synchronous=1
2019-06-19 19:25:51.301 Debug XmlSerializer: Deserializing file /config/config/encoding.xml
2019-06-19 19:25:52.245 Info Skia: SkiaSharp version: 1.68.0.0
2019-06-19 19:25:52.295 Info TaskManager: Daily trigger for Thumbnail image extraction set to fire at 6/20/19 2:00:00 AM, which is 394.128403661667 minutes from now.
2019-06-19 19:25:52.308 Info TaskManager: Daily trigger for Rotate log file set to fire at 6/20/19 12:00:00 AM, which is 274.128200373333 minutes from now.
2019-06-19 19:25:52.317 Info App: ServerId: 97f2b44fb7654321b6980c80ebbb2c3c
2019-06-19 19:25:52.379 Info App: Starting entry point Emby.Server.MediaEncoding.Encoder.MediaEncoderEntryPoint
2019-06-19 19:25:52.382 Info MediaEncoder: FFMpeg: /bin/ffmpeg
2019-06-19 19:25:52.382 Info MediaEncoder: FFProbe: /bin/ffprobe
2019-06-19 19:25:52.382 Info MediaEncoder: FFDetect: /bin/ffdetect
2019-06-19 19:25:52.383 Info MediaEncoder: Validating ffmpeg capabilities at /bin/ffmpeg
2019-06-19 19:25:52.393 Info MediaEncoder: ProcessRun 'ffmpeg -hide_banner -version' Execute: /bin/ffmpeg -hide_banner -version
2019-06-19 19:25:52.406 Info MediaEncoder: ProcessRun 'ffmpeg -hide_banner -version' Started.
2019-06-19 19:25:52.448 Info MediaEncoder: ProcessRun 'ffmpeg -hide_banner -version' Process exited with code 0
2019-06-19 19:25:52.456 Info MediaEncoder: ffmpeg validation complete
2019-06-19 19:25:52.460 Debug SoftwareCodecProvider: Start GetCodecList()
2019-06-19 19:25:52.561 Info SoftwareCodecProvider: h264, libx264, libx264 Software Encoder, V-E-libx264
2019-06-19 19:25:52.561 Info SoftwareCodecProvider: hevc, libx265, libx264 Software Encoder, V-E-libx265
2019-06-19 19:25:52.561 Info SoftwareCodecProvider: mpeg4, mpeg4, MPEG-4 part 2 Software Encoder, V-E-mpeg4
2019-06-19 19:25:52.561 Info SoftwareCodecProvider: msmpeg4v3, msmpeg4, MPEG-4 part 2 (MS Variant 3) Software Encoder, V-E-msmpeg4
2019-06-19 19:25:52.562 Info SoftwareCodecProvider: vp8, libvpx, libvpx VP8, V-E-libvpx
2019-06-19 19:25:52.563 Debug SoftwareCodecProvider: End GetCodecList()
2019-06-19 19:25:52.565 Debug OpenMaxCodecProvider: Start GetCodecList()
2019-06-19 19:25:52.572 Debug OpenMaxCodecProvider: End GetCodecList()
2019-06-19 19:25:52.575 Debug VaapiCodecProvider: Start GetCodecList()
2019-06-19 19:25:52.580 Info VaapiCodecProvider: ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 vaencdec -print_format json 
2019-06-19 19:25:52.580 Info VaapiCodecProvider: ProcessRun 'ffdetect_vaencdec' Execute: /bin/ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 vaencdec -print_format json 
2019-06-19 19:25:52.613 Info VaapiCodecProvider: ProcessRun 'ffdetect_vaencdec' Started.
2019-06-19 19:25:52.614 Info VaapiCodecProvider: ProcessRun 'ffdetect_vaencdec' Process exited with code 0
2019-06-19 19:25:52.639 Info App: Entry point completed: Emby.Server.MediaEncoding.Encoder.MediaEncoderEntryPoint. Duration: 0.2599754 seconds
2019-06-19 19:25:52.640 Info App: Starting entry point Emby.Server.Connect.ConnectEntryPoint
2019-06-19 19:25:52.669 Info App: Loading data from /config/data/connect.txt
2019-06-19 19:25:52.670 Info App: Loading data from /config/data/wan.dat
2019-06-19 19:25:52.709 Info App: Entry point completed: Emby.Server.Connect.ConnectEntryPoint. Duration: 0.0695623 seconds
2019-06-19 19:25:52.709 Info App: Core startup complete
2019-06-19 19:25:52.709 Info App: Post-init migrations complete
2019-06-19 19:25:52.709 Info App: Starting entry point NfoMetadata.EntryPoint
2019-06-19 19:25:52.710 Info App: Entry point completed: NfoMetadata.EntryPoint. Duration: 0.0006538 seconds
2019-06-19 19:25:52.710 Info App: Starting entry point Emby.Security.PluginSecurityManager
2019-06-19 19:25:52.710 Info App: Entry point completed: Emby.Security.PluginSecurityManager. Duration: 3.79E-05 seconds
2019-06-19 19:25:52.710 Info App: Starting entry point Emby.Server.CinemaMode.IntrosEntryPoint
2019-06-19 19:25:52.710 Info App: Entry point completed: Emby.Server.CinemaMode.IntrosEntryPoint. Duration: 0.0002134 seconds
2019-06-19 19:25:52.710 Info App: Starting entry point Emby.PortMapper.ExternalPortForwarding
2019-06-19 19:25:52.711 Info App: Entry point completed: Emby.PortMapper.ExternalPortForwarding. Duration: 0.0006733 seconds
2019-06-19 19:25:52.711 Info App: Starting entry point MediaBrowser.Api.ApiEntryPoint
2019-06-19 19:25:52.711 Info App: Entry point completed: MediaBrowser.Api.ApiEntryPoint. Duration: 3.49E-05 seconds
2019-06-19 19:25:52.711 Info App: Starting entry point Emby.Server.Implementations.Udp.UdpServerEntryPoint
2019-06-19 19:25:52.714 Info App: Entry point completed: Emby.Server.Implementations.Udp.UdpServerEntryPoint. Duration: 0.0025427 seconds
2019-06-19 19:25:52.714 Info App: Starting entry point Emby.Server.Implementations.News.NewsEntryPoint
2019-06-19 19:25:52.714 Info App: Entry point completed: Emby.Server.Implementations.News.NewsEntryPoint. Duration: 0.0003401 seconds
2019-06-19 19:25:52.714 Info App: Starting entry point Emby.Server.Implementations.Library.DeviceAccessEntryPoint
2019-06-19 19:25:52.715 Info App: Entry point completed: Emby.Server.Implementations.Library.DeviceAccessEntryPoint. Duration: 0.000616 seconds
2019-06-19 19:25:52.715 Info App: Starting entry point Emby.Server.Implementations.IO.LibraryMonitorStartup
2019-06-19 19:25:52.868 Info VaapiCodecProvider: Adapter #0: 'Device 32902:16022' Id:16022 (Driver: Intel i965 driver for Intel(R) Coffee Lake - 2.2.0, Vendor: 32902)
2019-06-19 19:25:52.888 Debug VaapiCodecProvider: Adding video decoder for type: mpeg2video
2019-06-19 19:25:52.932 Debug VaapiCodecProvider: Adding video decoder for type: h264
2019-06-19 19:25:52.974 Debug VaapiCodecProvider: Adding video decoder for type: wmv3
2019-06-19 19:25:52.975 Debug VaapiCodecProvider: Video decoder of unsupported type (wmv3) detected: wmv3 
2019-06-19 19:25:52.975 Debug VaapiCodecProvider: Adding video decoder for type: vc1
2019-06-19 19:25:53.033 Debug VaapiCodecProvider: Adding video decoder for type: mjpeg
2019-06-19 19:25:53.037 Debug VaapiCodecProvider: Video decoder of unsupported type (mjpeg) detected: mjpeg 
2019-06-19 19:25:53.037 Debug VaapiCodecProvider: Adding video decoder for type: vp8
2019-06-19 19:25:53.068 Debug VaapiCodecProvider: Adding video decoder for type: hevc
2019-06-19 19:25:53.102 Debug VaapiCodecProvider: Adding video decoder for type: vp9
2019-06-19 19:25:53.191 Debug VaapiCodecProvider: Adding video decoder for type: mpeg2video
2019-06-19 19:25:53.191 Debug VaapiCodecProvider: Video encoder of unsupported type (mpeg2video) detected: mpeg2video 
2019-06-19 19:25:53.191 Debug VaapiCodecProvider: Adding video decoder for type: h264
2019-06-19 19:25:53.197 Debug VaapiCodecProvider: Adding video decoder for type: vp8
2019-06-19 19:25:53.197 Debug VaapiCodecProvider: Video encoder of unsupported type (vp8) detected: vp8 
2019-06-19 19:25:53.197 Debug VaapiCodecProvider: Adding video decoder for type: hevc
2019-06-19 19:25:53.201 Debug VaapiCodecProvider: Adding video decoder for type: vp9
2019-06-19 19:25:53.201 Debug VaapiCodecProvider: Video encoder of unsupported type (vp9) detected: vp9 
2019-06-19 19:25:53.206 Debug QuickSyncCodecProvider: Start GetCodecList()
2019-06-19 19:25:53.207 Info QuickSyncCodecProvider: ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 qsvencdec -print_format json 
2019-06-19 19:25:53.207 Info QuickSyncCodecProvider: ProcessRun 'ffdetect_qsvencdec' Execute: /bin/ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 qsvencdec -print_format json 
2019-06-19 19:25:53.218 Info QuickSyncCodecProvider: ProcessRun 'ffdetect_qsvencdec' Started.
2019-06-19 19:25:53.221 Info QuickSyncCodecProvider: ProcessRun 'ffdetect_qsvencdec' Process exited with code 0
2019-06-19 19:25:53.301 Debug NvidiaCodecProvider: Start GetCodecList()
2019-06-19 19:25:53.301 Info NvidiaCodecProvider: ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 nvencdec -print_format json 
2019-06-19 19:25:53.301 Info NvidiaCodecProvider: ProcessRun 'ffdetect_nvencdec' Execute: /bin/ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 nvencdec -print_format json 
2019-06-19 19:25:53.308 Info NvidiaCodecProvider: ProcessRun 'ffdetect_nvencdec' Started.
2019-06-19 19:25:53.309 Debug XmlSerializer: Deserializing file /config/root/default/Movies/options.xml
2019-06-19 19:25:53.310 Info NvidiaCodecProvider: ProcessRun 'ffdetect_nvencdec' Process exited with code 1
2019-06-19 19:25:53.320 Info HttpClient: GET https://emby.media/community/index.php?/blog/rss/1-media-browser-developers-blog
2019-06-19 19:25:53.778 Info App: Entry point completed: Emby.Server.Implementations.IO.LibraryMonitorStartup. Duration: 1.0632761 seconds
2019-06-19 19:25:53.778 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.AutomaticRestartEntryPoint
2019-06-19 19:25:53.786 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.AutomaticRestartEntryPoint. Duration: 0.0077478 seconds
2019-06-19 19:25:53.786 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.KeepServerAwake
2019-06-19 19:25:53.786 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.KeepServerAwake. Duration: 0.0003114 seconds
2019-06-19 19:25:53.786 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.LibraryChangedNotifier
2019-06-19 19:25:53.793 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.LibraryChangedNotifier. Duration: 0.0022085 seconds
2019-06-19 19:25:53.793 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.ServerEventNotifier
2019-06-19 19:25:53.834 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.ServerEventNotifier. Duration: 0.0400552 seconds
2019-06-19 19:25:53.835 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.StartupWizard
2019-06-19 19:25:53.857 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.StartupWizard. Duration: 0.020566 seconds
2019-06-19 19:25:53.857 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.SystemEvents
2019-06-19 19:25:53.861 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.SystemEvents. Duration: 0.0037078 seconds
2019-06-19 19:25:53.862 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.UserDataChangeNotifier
2019-06-19 19:25:53.863 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.UserDataChangeNotifier. Duration: 0.001652 seconds
2019-06-19 19:25:53.863 Info App: Starting entry point Emby.Server.Implementations.Channels.ChannelsEntryPoint
2019-06-19 19:25:53.870 Info App: Entry point completed: Emby.Server.Implementations.Channels.ChannelsEntryPoint. Duration: 0.0066813 seconds
2019-06-19 19:25:53.870 Info App: Starting entry point Emby.Server.Implementations.Activity.ActivityLogEntryPoint
2019-06-19 19:25:53.880 Info App: Entry point completed: Emby.Server.Implementations.Activity.ActivityLogEntryPoint. Duration: 0.0090039 seconds
2019-06-19 19:25:53.880 Info App: Starting entry point Emby.LiveTV.EntryPoint
2019-06-19 19:25:53.893 Info App: Loading live tv data from /config/data/livetv/timers
2019-06-19 19:25:53.918 Debug XmlSerializer: Deserializing file /config/config/livetv.xml
2019-06-19 19:25:53.947 Info App: Entry point completed: Emby.LiveTV.EntryPoint. Duration: 0.0669977 seconds
2019-06-19 19:25:53.947 Info App: Starting entry point Emby.LiveTV.RecordingNotifier
2019-06-19 19:25:53.951 Info App: Entry point completed: Emby.LiveTV.RecordingNotifier. Duration: 0.0035198 seconds
2019-06-19 19:25:53.951 Info App: Starting entry point Emby.Server.MediaEncoding.Api.EncodingManagerEntryPoint
2019-06-19 19:25:53.953 Info App: Entry point completed: Emby.Server.MediaEncoding.Api.EncodingManagerEntryPoint. Duration: 0.0023315 seconds
2019-06-19 19:25:53.953 Info App: Starting entry point Emby.Notifications.Notifications
2019-06-19 19:25:53.955 Info App: Entry point completed: Emby.Notifications.Notifications. Duration: 0.0015423 seconds
2019-06-19 19:25:53.957 Info App: Starting entry point Emby.Server.Sync.SyncManagerEntryPoint
2019-06-19 19:25:53.969 Info App: SyncRepository Initialize taking write lock
2019-06-19 19:25:53.969 Info App: SyncRepository Initialize write lock taken
2019-06-19 19:25:53.970 Info App: Entry point completed: Emby.Server.Sync.SyncManagerEntryPoint. Duration: 0.0128478 seconds
2019-06-19 19:25:53.971 Info App: Starting entry point Emby.Server.Sync.SyncNotificationEntryPoint
2019-06-19 19:25:53.977 Info App: Entry point completed: Emby.Server.Sync.SyncNotificationEntryPoint. Duration: 0.0062691 seconds
2019-06-19 19:25:53.980 Info App: Starting entry point EmbyServer.Windows.LoopUtilEntryPoint
2019-06-19 19:25:53.980 Info App: Entry point completed: EmbyServer.Windows.LoopUtilEntryPoint. Duration: 0.0007427 seconds
2019-06-19 19:25:53.980 Info App: All entry points have started
2019-06-19 19:25:55.305 Info TaskManager: StartupTrigger fired for task: Check for plugin updates
2019-06-19 19:25:55.308 Info TaskManager: Queueing task PluginUpdateTask
2019-06-19 19:25:55.308 Info TaskManager: StartupTrigger fired for task: Check for application updates
2019-06-19 19:25:55.308 Info TaskManager: Queueing task SystemUpdateTask
2019-06-19 19:25:55.323 Info TaskManager: Executing Check for plugin updates
2019-06-19 19:25:55.326 Info TaskManager: Executing Check for application updates
2019-06-19 19:25:55.346 Info HttpClient: GET https://www.mb3admin.com/admin/service/EmbyPackages.json
2019-06-19 19:25:55.421 Debug App: No application update available.
2019-06-19 19:25:55.423 Info TaskManager: Check for application updates Completed after 0 minute(s) and 0 seconds
2019-06-19 19:25:55.446 Info TaskManager: ExecuteQueuedTasks
2019-06-19 19:25:56.415 Info LibraryMonitor: Watching directory /mnt/media/Filme
2019-06-19 19:26:10.666 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Logs/Log?name=embyserver.txt. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:10.770 Debug XmlSerializer: Deserializing file /config/config/users/ecb63fa31daa4d4398f09d626c8f292e/config.xml
2019-06-19 19:26:10.801 Debug HttpResultFactory: Transmit file /config/logs/embyserver.txt offset: 0
2019-06-19 19:26:10.813 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 156ms. http://emby.example.tld:8096/System/Logs/Log?name=embyserver.txt
2019-06-19 19:26:13.331 Error HttpClient: Connection to https://emby.media/community/index.php?/blog/rss/1-media-browser-developers-blog timed out
2019-06-19 19:26:13.336 Error App: Error downloading news
	*** Error Report ***
	Version: 4.1.1.0
	Command line: /system/EmbyServer.dll -programdata /config -ffdetect /bin/ffdetect -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
	Operating system: Unix 4.18.0.22
	64-Bit OS: True
	64-Bit Process: True
	User Interactive: True
	Runtime: file:///system/System.Private.CoreLib.dll
	Processor count: 12
	Program data path: /config
	Application directory: /system
	MediaBrowser.Model.Net.HttpException: MediaBrowser.Model.Net.HttpException: Connection to https://emby.media/community/index.php?/blog/rss/1-media-browser-developers-blog timed out ---> System.OperationCanceledException: The operation was canceled.
	   at System.Net.Http.HttpClient.HandleFinishSendAsyncError(Exception e, CancellationTokenSource cts)
	   at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	   --- End of inner exception stack trace ---
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
	   at Emby.Server.Implementations.News.NewsEntryPoint.DownloadNews(String path)
	   at Emby.Server.Implementations.News.NewsEntryPoint.OnTimerFired(Object state)
	Source: Emby.Server.Implementations
	TargetSite: Void MoveNext()
	InnerException: System.OperationCanceledException: The operation was canceled.
	Source: System.Net.Http
	TargetSite: Void HandleFinishSendAsyncError(System.Exception, System.Threading.CancellationTokenSource)
	   at System.Net.Http.HttpClient.HandleFinishSendAsyncError(Exception e, CancellationTokenSource cts)
	   at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	
2019-06-19 19:26:13.358 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/bower_components/emby-webcomponents/strings/en-GB.json?v=1560972373439. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:13.358 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/strings/en-GB.json?v=1560972373439. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:13.358 Debug HttpResultFactory: Transmit file /system/dashboard-ui/strings/en-GB.json offset: 0
2019-06-19 19:26:13.358 Debug HttpResultFactory: Transmit file /system/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json offset: 0
2019-06-19 19:26:13.359 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/web/bower_components/emby-webcomponents/strings/en-GB.json?v=1560972373439
2019-06-19 19:26:13.359 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/web/strings/en-GB.json?v=1560972373439
2019-06-19 19:26:15.351 Error HttpClient: Connection to https://www.mb3admin.com/admin/service/EmbyPackages.json timed out
2019-06-19 19:26:15.357 Error TaskManager: Error
	*** Error Report ***
	Version: 4.1.1.0
	Command line: /system/EmbyServer.dll -programdata /config -ffdetect /bin/ffdetect -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
	Operating system: Unix 4.18.0.22
	64-Bit OS: True
	64-Bit Process: True
	User Interactive: True
	Runtime: file:///system/System.Private.CoreLib.dll
	Processor count: 12
	Program data path: /config
	Application directory: /system
	MediaBrowser.Model.Net.HttpException: MediaBrowser.Model.Net.HttpException: Connection to https://www.mb3admin.com/admin/service/EmbyPackages.json timed out ---> System.OperationCanceledException: The operation was canceled.
	   at System.Net.Http.HttpClient.HandleFinishSendAsyncError(Exception e, CancellationTokenSource cts)
	   at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	   --- End of inner exception stack trace ---
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
	   at Emby.Server.Implementations.Updates.InstallationManager.GetAvailablePackagesWithoutRegistrationInfo(Boolean enableCache, CancellationToken cancellationToken)
	   at Emby.Server.Implementations.Updates.InstallationManager.GetAvailablePluginUpdates(Version applicationVersion, CancellationToken cancellationToken)
	   at Emby.Server.Implementations.ScheduledTasks.PluginUpdateTask.Execute(CancellationToken cancellationToken, IProgress`1 progress)
	   at Emby.Server.Implementations.ScheduledTasks.ScheduledTaskWorker.ExecuteInternal(TaskOptions options)
	Source: Emby.Server.Implementations
	TargetSite: Void MoveNext()
	InnerException: System.OperationCanceledException: The operation was canceled.
	Source: System.Net.Http
	TargetSite: Void HandleFinishSendAsyncError(System.Exception, System.Threading.CancellationTokenSource)
	   at System.Net.Http.HttpClient.HandleFinishSendAsyncError(Exception e, CancellationTokenSource cts)
	   at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	
2019-06-19 19:26:15.357 Info TaskManager: Check for plugin updates Failed after 0 minute(s) and 20 seconds
2019-06-19 19:26:15.362 Debug XmlSerializer: Deserializing file /config/config/notifications.xml
2019-06-19 19:26:15.366 Info TaskManager: ExecuteQueuedTasks
2019-06-19 19:26:15.688 Debug XmlSerializer: Deserializing file /config/config/branding.xml
2019-06-19 19:26:15.955 Info HttpServer: HTTP GET http://emby.example.tld:8096/emby/system/info/public. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:15.996 Debug App: Ping test result to http://172.42.0.42:8096/system/ping. Success: True
2019-06-19 19:26:16.002 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 46ms. http://emby.example.tld:8096/emby/system/info/public
2019-06-19 19:26:16.123 Info HttpServer: HTTP GET http://emby.example.tld:8096/emby/System/Info. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:16.167 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 44ms. http://emby.example.tld:8096/emby/System/Info
2019-06-19 19:26:16.371 Info HttpServer: HTTP GET http://emby.example.tld:8096/DisplayPreferences/usersettings?userId=ecb63fa31daa4d4398f09d626c8f292e&client=emby. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:16.413 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 42ms. http://emby.example.tld:8096/DisplayPreferences/usersettings?userId=ecb63fa31daa4d4398f09d626c8f292e&client=emby
2019-06-19 19:26:16.538 Info HttpServer: WS http://emby.example.tld:8096/socket?api_key=2ad098c2b4534a39a07b6dfa8d7c3b89&deviceId=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NDsgcnY6NjcuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Ny4wfDE1NjA5NjY3MjM1ODQ1. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:16.559 Debug HttpServer: Web socket connection allowed
2019-06-19 19:26:16.586 Debug SessionManager: Creating new WebSocketController
2019-06-19 19:26:16.757 Info HttpServer: HTTP POST http://emby.example.tld:8096/Sessions/Capabilities/Full. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:16.763 Info HttpServer: HTTP GET http://emby.example.tld:8096/Users/ecb63fa31daa4d4398f09d626c8f292e. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:16.793 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 30ms. http://emby.example.tld:8096/Users/ecb63fa31daa4d4398f09d626c8f292e
2019-06-19 19:26:16.809 Info HttpServer: HTTP Response 204 to 42.42.42.42. Time: 52ms. http://emby.example.tld:8096/Sessions/Capabilities/Full
2019-06-19 19:26:16.846 Info HttpServer: HTTP GET http://emby.example.tld:8096/Users/ecb63fa31daa4d4398f09d626c8f292e. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:16.849 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 3ms. http://emby.example.tld:8096/Users/ecb63fa31daa4d4398f09d626c8f292e
2019-06-19 19:26:18.014 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Logs/Log?name=embyserver.txt. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.015 Debug HttpResultFactory: Transmit file /config/logs/embyserver.txt offset: 0
2019-06-19 19:26:18.016 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 2ms. http://emby.example.tld:8096/System/Logs/Log?name=embyserver.txt
2019-06-19 19:26:18.229 Info HttpServer: HTTP GET http://emby.example.tld:8096/favicon.ico. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.232 Debug HttpResultFactory: Transmit file /system/dashboard-ui/favicon.ico offset: 0
2019-06-19 19:26:18.234 Info HttpServer: SocketException: http://emby.example.tld:8096/favicon.ico
2019-06-19 19:26:18.236 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 7ms. http://emby.example.tld:8096/favicon.ico
2019-06-19 19:26:18.380 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/ActivityLog/Entries?startIndex=0&limit=4&minDate=2019-06-12T19%3A26%3A18.466Z&hasUserId=false. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.380 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/ActivityLog/Entries?startIndex=0&limit=7&minDate=2019-06-18T19%3A26%3A18.465Z&hasUserId=true. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.380 Info HttpServer: HTTP GET http://emby.example.tld:8096/Sessions?ActiveWithinSeconds=960. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.381 Info HttpServer: HTTP GET http://emby.example.tld:8096/ScheduledTasks. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.381 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Info. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.381 Info HttpServer: HTTP GET http://emby.example.tld:8096/News/Product?StartIndex=0&Limit=4. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.381 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/configurationpages?pageType=PluginConfiguration&EnableInMainMenu=true. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.381 Info HttpServer: HTTP GET http://emby.example.tld:8096/LiveTv/Recordings?UserId=ecb63fa31daa4d4398f09d626c8f292e&IsInProgress=true&Fields=CanDelete%2CPrimaryImageAspectRatio&EnableTotalRecordCount=false&EnableImageTypes=Primary%2CThumb%2CBackdrop. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.381 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/System/Info
2019-06-19 19:26:18.398 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 18ms. http://emby.example.tld:8096/News/Product?StartIndex=0&Limit=4
2019-06-19 19:26:18.400 Debug App: SessionInfoWebSocketListener Begin transmitting over websocket to [::ffff:172.42.0.1]:51502
2019-06-19 19:26:18.400 Debug App: ScheduledTasksWebSocketListener Begin transmitting over websocket to [::ffff:172.42.0.1]:51502
2019-06-19 19:26:18.400 Debug App: ActivityLogWebSocketListener Begin transmitting over websocket to [::ffff:172.42.0.1]:51502
2019-06-19 19:26:18.400 Debug App: ActivityLogWebSocketListener Begin transmitting over websocket to [::ffff:172.42.0.1]:51502
2019-06-19 19:26:18.413 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 32ms. http://emby.example.tld:8096/ScheduledTasks
2019-06-19 19:26:18.416 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 35ms. http://emby.example.tld:8096/web/configurationpages?pageType=PluginConfiguration&EnableInMainMenu=true
2019-06-19 19:26:18.420 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 41ms. http://emby.example.tld:8096/System/ActivityLog/Entries?startIndex=0&limit=7&minDate=2019-06-18T19%3A26%3A18.465Z&hasUserId=true
2019-06-19 19:26:18.420 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 41ms. http://emby.example.tld:8096/System/ActivityLog/Entries?startIndex=0&limit=4&minDate=2019-06-12T19%3A26%3A18.466Z&hasUserId=false
2019-06-19 19:26:18.448 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 68ms. http://emby.example.tld:8096/Sessions?ActiveWithinSeconds=960
2019-06-19 19:26:18.462 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 81ms. http://emby.example.tld:8096/LiveTv/Recordings?UserId=ecb63fa31daa4d4398f09d626c8f292e&IsInProgress=true&Fields=CanDelete%2CPrimaryImageAspectRatio&EnableTotalRecordCount=false&EnableImageTypes=Primary%2CThumb%2CBackdrop
2019-06-19 19:26:18.565 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/bower_components/emby-webcomponents/themes/light/theme.json?v=4.1.1.0&r=0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.566 Info HttpServer: HTTP Response 304 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/web/bower_components/emby-webcomponents/themes/light/theme.json?v=4.1.1.0&r=0
2019-06-19 19:26:22.362 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Endpoint. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:22.375 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 12ms. http://emby.example.tld:8096/System/Endpoint
2019-06-19 19:26:22.515 Info HttpServer: HTTP GET http://emby.example.tld:8096/Playback/BitrateTest?Size=500000. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:22.552 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 37ms. http://emby.example.tld:8096/Playback/BitrateTest?Size=500000
2019-06-19 19:26:22.652 Info HttpServer: HTTP GET http://emby.example.tld:8096/Playback/BitrateTest?Size=1000000. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:22.705 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 54ms. http://emby.example.tld:8096/Playback/BitrateTest?Size=1000000
2019-06-19 19:26:29.347 Debug App: SessionInfoWebSocketListener stop transmitting over websocket to [::ffff:172.42.0.1]:51502
2019-06-19 19:26:29.347 Debug App: ScheduledTasksWebSocketListener stop transmitting over websocket to [::ffff:172.42.0.1]:51502
2019-06-19 19:26:29.402 Info HttpServer: HTTP GET http://emby.example.tld:8096/Notifications/Types. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:29.408 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 7ms. http://emby.example.tld:8096/Notifications/Types
2019-06-19 19:26:36.940 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Configuration. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:36.941 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Logs. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:36.951 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 11ms. http://emby.example.tld:8096/System/Logs
2019-06-19 19:26:36.953 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 13ms. http://emby.example.tld:8096/System/Configuration
2019-06-19 19:26:38.605 Debug App: ActivityLogWebSocketListener stop transmitting over websocket to [::ffff:172.42.0.1]:51502
2019-06-19 19:26:38.605 Debug App: ActivityLogWebSocketListener stop transmitting over websocket to [::ffff:172.42.0.1]:51502
2019-06-19 19:26:38.657 Info HttpServer: HTTP GET http://emby.example.tld:8096/Plugins. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:38.664 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 7ms. http://emby.example.tld:8096/Plugins
2019-06-19 19:26:38.791 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/configurationpages?pageType=PluginConfiguration. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:38.792 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/web/configurationpages?pageType=PluginConfiguration
2019-06-19 19:26:40.589 Info HttpServer: HTTP GET http://emby.example.tld:8096/Packages?TargetSystems=Server&IsAdult=false&IsAppStoreSafe=true&PackageType=UserInstalled. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:40.589 Info HttpServer: HTTP GET http://emby.example.tld:8096/Plugins. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:40.592 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 3ms. http://emby.example.tld:8096/Plugins
2019-06-19 19:26:40.599 Error HttpServer: Error processing request
	*** Error Report ***
	Version: 4.1.1.0
	Command line: /system/EmbyServer.dll -programdata /config -ffdetect /bin/ffdetect -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
	Operating system: Unix 4.18.0.22
	64-Bit OS: True
	64-Bit Process: True
	User Interactive: True
	Runtime: file:///system/System.Private.CoreLib.dll
	Processor count: 12
	Program data path: /config
	Application directory: /system
	MediaBrowser.Model.Net.HttpException: MediaBrowser.Model.Net.HttpException: Cancelling connection to https://www.mb3admin.com/admin/service/EmbyPackages.json due to a previous timeout.
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
	   at Emby.Server.Implementations.Updates.InstallationManager.GetAvailablePackagesWithoutRegistrationInfo(Boolean enableCache, CancellationToken cancellationToken)
	   at Emby.Server.Implementations.Updates.InstallationManager.GetAvailablePackages(CancellationToken cancellationToken, Boolean withRegistration, String packageType, Version applicationVersion)
	   at MediaBrowser.Api.PackageService.Get(GetPackages request)
	   at Emby.Server.Implementations.Services.ServiceExecGeneral.GetTaskResult(Task task)
	   at Emby.Server.Implementations.Services.ServiceHandler.ProcessRequestAsync(HttpListenerHost appHost, IRequest httpReq, IResponse httpRes, ILogger logger, String operationName, CancellationToken cancellationToken)
	   at Emby.Server.Implementations.HttpServer.HttpListenerHost.RequestHandler(IRequest httpReq, String urlString, String host, String localPath, CancellationToken cancellationToken)
	Source: Emby.Server.Implementations
	TargetSite: Void MoveNext()
	
2019-06-19 19:26:40.601 Info HttpServer: HTTP Response 500 to 42.42.42.42. Time: 12ms. http://emby.example.tld:8096/Packages?TargetSystems=Server&IsAdult=false&IsAppStoreSafe=true&PackageType=UserInstalled
2019-06-19 19:26:58.330 Debug SessionManager: Disposing session controller WebSocketController
2019-06-19 19:26:58.941 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/touchicon114.png. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:58.941 Debug HttpResultFactory: Transmit file /system/dashboard-ui/touchicon114.png offset: 0
2019-06-19 19:26:58.943 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 2ms. http://emby.example.tld:8096/web/touchicon114.png
2019-06-19 19:27:00.537 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/bower_components/emby-webcomponents/strings/en-GB.json?v=1560972420544. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:00.537 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/strings/en-GB.json?v=1560972420544. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:00.538 Debug HttpResultFactory: Transmit file /system/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json offset: 0
2019-06-19 19:27:00.538 Debug HttpResultFactory: Transmit file /system/dashboard-ui/strings/en-GB.json offset: 0
2019-06-19 19:27:00.538 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/web/bower_components/emby-webcomponents/strings/en-GB.json?v=1560972420544
2019-06-19 19:27:00.539 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 2ms. http://emby.example.tld:8096/web/strings/en-GB.json?v=1560972420544
2019-06-19 19:27:03.370 Info HttpServer: HTTP GET http://emby.example.tld:8096/emby/system/info/public. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:03.371 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/emby/system/info/public
2019-06-19 19:27:03.594 Info HttpServer: HTTP GET http://emby.example.tld:8096/emby/System/Info. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:03.596 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 2ms. http://emby.example.tld:8096/emby/System/Info
2019-06-19 19:27:03.743 Info HttpServer: HTTP GET http://emby.example.tld:8096/DisplayPreferences/usersettings?userId=ecb63fa31daa4d4398f09d626c8f292e&client=emby. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:03.745 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 2ms. http://emby.example.tld:8096/DisplayPreferences/usersettings?userId=ecb63fa31daa4d4398f09d626c8f292e&client=emby
2019-06-19 19:27:03.918 Info HttpServer: WS http://emby.example.tld:8096/socket?api_key=2ad098c2b4534a39a07b6dfa8d7c3b89&deviceId=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NDsgcnY6NjcuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Ny4wfDE1NjA5NjY3MjM1ODQ1. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:03.918 Debug HttpServer: Web socket connection allowed
2019-06-19 19:27:03.919 Debug SessionManager: Creating new WebSocketController
2019-06-19 19:27:04.078 Info HttpServer: HTTP POST http://emby.example.tld:8096/Sessions/Capabilities/Full. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:04.082 Info HttpServer: HTTP Response 204 to 42.42.42.42. Time: 4ms. http://emby.example.tld:8096/Sessions/Capabilities/Full
2019-06-19 19:27:05.245 Info HttpServer: HTTP GET http://emby.example.tld:8096/Packages?TargetSystems=Server&IsAdult=false&IsAppStoreSafe=true&PackageType=UserInstalled. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:05.246 Info HttpClient: GET https://www.mb3admin.com/admin/service/EmbyPackages.json
2019-06-19 19:27:05.251 Info HttpServer: HTTP GET http://emby.example.tld:8096/Plugins. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:05.251 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 0ms. http://emby.example.tld:8096/Plugins
2019-06-19 19:27:05.253 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/configurationpages?pageType=PluginConfiguration&EnableInMainMenu=true. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:05.253 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 0ms. http://emby.example.tld:8096/web/configurationpages?pageType=PluginConfiguration&EnableInMainMenu=true
2019-06-19 19:27:05.360 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/bower_components/emby-webcomponents/themes/light/theme.json?v=4.1.1.0&r=0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:05.361 Debug HttpResultFactory: Transmit file /system/dashboard-ui/bower_components/emby-webcomponents/themes/light/theme.json offset: 0
2019-06-19 19:27:05.361 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/web/bower_components/emby-webcomponents/themes/light/theme.json?v=4.1.1.0&r=0
2019-06-19 19:27:05.585 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/css/images/logoblack.png. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:05.586 Debug HttpResultFactory: Transmit file /system/dashboard-ui/css/images/logoblack.png offset: 0
2019-06-19 19:27:05.586 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/web/css/images/logoblack.png
2019-06-19 19:27:09.707 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Endpoint. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:09.709 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 2ms. http://emby.example.tld:8096/System/Endpoint
2019-06-19 19:27:09.821 Info HttpServer: HTTP GET http://emby.example.tld:8096/Playback/BitrateTest?Size=500000. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:09.825 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 5ms. http://emby.example.tld:8096/Playback/BitrateTest?Size=500000
2019-06-19 19:27:09.974 Info HttpServer: HTTP GET http://emby.example.tld:8096/Playback/BitrateTest?Size=1000000. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:09.979 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 5ms. http://emby.example.tld:8096/Playback/BitrateTest?Size=1000000
2019-06-19 19:27:24.965 Info HttpServer: HTTP GET http://emby.example.tld:8096/Users/ecb63fa31daa4d4398f09d626c8f292e. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:24.968 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 3ms. http://emby.example.tld:8096/Users/ecb63fa31daa4d4398f09d626c8f292e
2019-06-19 19:27:25.250 Error HttpClient: Connection to https://www.mb3admin.com/admin/service/EmbyPackages.json timed out
2019-06-19 19:27:25.255 Error HttpServer: Error processing request
	*** Error Report ***
	Version: 4.1.1.0
	Command line: /system/EmbyServer.dll -programdata /config -ffdetect /bin/ffdetect -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
	Operating system: Unix 4.18.0.22
	64-Bit OS: True
	64-Bit Process: True
	User Interactive: True
	Runtime: file:///system/System.Private.CoreLib.dll
	Processor count: 12
	Program data path: /config
	Application directory: /system
	MediaBrowser.Model.Net.HttpException: MediaBrowser.Model.Net.HttpException: Connection to https://www.mb3admin.com/admin/service/EmbyPackages.json timed out ---> System.OperationCanceledException: The operation was canceled.
	   at System.Net.Http.HttpClient.HandleFinishSendAsyncError(Exception e, CancellationTokenSource cts)
	   at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	   --- End of inner exception stack trace ---
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
	   at Emby.Server.Implementations.Updates.InstallationManager.GetAvailablePackagesWithoutRegistrationInfo(Boolean enableCache, CancellationToken cancellationToken)
	   at Emby.Server.Implementations.Updates.InstallationManager.GetAvailablePackages(CancellationToken cancellationToken, Boolean withRegistration, String packageType, Version applicationVersion)
	   at MediaBrowser.Api.PackageService.Get(GetPackages request)
	   at Emby.Server.Implementations.Services.ServiceExecGeneral.GetTaskResult(Task task)
	   at Emby.Server.Implementations.Services.ServiceHandler.ProcessRequestAsync(HttpListenerHost appHost, IRequest httpReq, IResponse httpRes, ILogger logger, String operationName, CancellationToken cancellationToken)
	   at Emby.Server.Implementations.HttpServer.HttpListenerHost.RequestHandler(IRequest httpReq, String urlString, String host, String localPath, CancellationToken cancellationToken)
	Source: Emby.Server.Implementations
	TargetSite: Void MoveNext()
	InnerException: System.OperationCanceledException: The operation was canceled.
	Source: System.Net.Http
	TargetSite: Void HandleFinishSendAsyncError(System.Exception, System.Threading.CancellationTokenSource)
	   at System.Net.Http.HttpClient.HandleFinishSendAsyncError(Exception e, CancellationTokenSource cts)
	   at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	
2019-06-19 19:27:25.256 Info HttpServer: HTTP Response 500 to 42.42.42.42. Time: 20011ms. http://emby.example.tld:8096/Packages?TargetSystems=Server&IsAdult=false&IsAppStoreSafe=true&PackageType=UserInstalled
2019-06-19 19:27:26.533 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Configuration. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:26.533 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Logs. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:26.535 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 3ms. http://emby.example.tld:8096/System/Configuration
2019-06-19 19:27:26.538 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 5ms. http://emby.example.tld:8096/System/Logs
2019-06-19 19:27:27.672 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Logs/Log?name=embyserver.txt. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:27.673 Debug HttpResultFactory: Transmit file /config/logs/embyserver.txt offset: 0


Link to comment
Share on other sites

mastrmind11

 

Hey there I'm currently facing the issue that outgoing connections (emby -> internet) are sometimes working and sometimes not.

It's a bit flaky.

For the media scanning process it works sometimes, sometimes not.

Getting the EmbyPackages.json and the developers blog are always timing out.

Then I was trying to download the "https://www.mb3admin.com/admin/service/EmbyPackages.json"with wget in the docker container and it worked totally fine.

 

My System:

I deploy my system with ansible this is the part for the Emby docker container deployment:

- name: Deploy Emby Media Server (incl. HW accellaration)
  docker_container:
    name: "emby"
    image: "emby/embyserver:latest"
    # currently broken see https://github.com/ansible/ansible/pull/56687
    # networks_cli_compatible: yes
    purge_networks: yes
    networks:
      - name: "docker2_br"
        ipv4_address: "172.42.0.42"
        ipv6_address: "fc00:dead:beef:404::42" # I changed the address because it is a public IPv6 IP assigend to my server
    volumes:
      - /docker/emby:/config
      - /mnt/media:/mnt/media
    devices:
      - /dev/dri/renderD128
    env:
      UID: "998"
      GID: "997"
      GIDLIST: "997,44"
    restart_policy: unless-stopped
  when: stat_hw_accelleratoin_exists.stat.exists == True

Emby server log*:

* note I changed my domain to emby.example.tld and my home ip address to 42.42.42.42

 

2019-06-19 19:25:50.176 Info Main: Application path: /system/EmbyServer.dll
2019-06-19 19:25:50.459 Info Main: Emby
	Command line: /system/EmbyServer.dll -programdata /config -ffdetect /bin/ffdetect -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
	Operating system: Unix 4.18.0.22
	64-Bit OS: True
	64-Bit Process: True
	User Interactive: True
	Runtime: file:///system/System.Private.CoreLib.dll
	Processor count: 12
	Program data path: /config
	Application directory: /system
2019-06-19 19:25:50.507 Info App: Application version: 4.1.1.0
2019-06-19 19:25:50.510 Info App: Loading assemblies
2019-06-19 19:25:50.564 Info App: File /config/plugins/OpenSubtitles.dll has version 1.0.15.0
2019-06-19 19:25:50.565 Info App: File /system/plugins/OpenSubtitles.dll has version 1.0.15.0
2019-06-19 19:25:50.565 Info App: File /config/plugins/MovieDb.dll has version 1.0.8.0
2019-06-19 19:25:50.565 Info App: File /system/plugins/MovieDb.dll has version 1.0.8.0
2019-06-19 19:25:50.565 Info App: File /config/plugins/NfoMetadata.dll has version 1.0.11.0
2019-06-19 19:25:50.565 Info App: File /system/plugins/NfoMetadata.dll has version 1.0.11.0
2019-06-19 19:25:50.565 Info App: File /config/plugins/MusicBrainz.dll has version 1.0.5.0
2019-06-19 19:25:50.566 Info App: File /system/plugins/MusicBrainz.dll has version 1.0.5.0
2019-06-19 19:25:50.566 Info App: File /config/plugins/Tvdb.dll has version 1.0.6.0
2019-06-19 19:25:50.566 Info App: File /system/plugins/Tvdb.dll has version 1.0.6.0
2019-06-19 19:25:50.566 Info App: File /config/plugins/AudioDb.dll has version 1.0.4.0
2019-06-19 19:25:50.566 Info App: File /system/plugins/AudioDb.dll has version 1.0.4.0
2019-06-19 19:25:50.566 Info App: File /config/plugins/OMDb.dll has version 1.0.5.0
2019-06-19 19:25:50.567 Info App: File /system/plugins/OMDb.dll has version 1.0.5.0
2019-06-19 19:25:50.567 Info App: File /config/plugins/StudioImages.dll has version 1.0.0.0
2019-06-19 19:25:50.567 Info App: File /system/plugins/StudioImages.dll has version 1.0.0.0
2019-06-19 19:25:50.567 Info App: File /config/plugins/Emby.Server.CinemaMode.dll has version 1.0.14.0
2019-06-19 19:25:50.567 Info App: File /system/plugins/Emby.Server.CinemaMode.dll has version 1.0.14.0
2019-06-19 19:25:50.567 Info App: File /config/plugins/Emby.PortMapper.dll has version 1.0.1.0
2019-06-19 19:25:50.567 Info App: File /system/plugins/Emby.PortMapper.dll has version 1.0.1.0
2019-06-19 19:25:50.568 Info App: File /config/plugins/Fanart.dll has version 1.0.2.0
2019-06-19 19:25:50.568 Info App: File /system/plugins/Fanart.dll has version 1.0.2.0
2019-06-19 19:25:50.577 Info App: Loading OpenSubtitles, Version=1.0.15.0, Culture=neutral, PublicKeyToken=null from /config/plugins/OpenSubtitles.dll
2019-06-19 19:25:50.577 Info App: Loading MovieDb, Version=1.0.8.0, Culture=neutral, PublicKeyToken=null from /config/plugins/MovieDb.dll
2019-06-19 19:25:50.577 Info App: Loading NfoMetadata, Version=1.0.11.0, Culture=neutral, PublicKeyToken=null from /config/plugins/NfoMetadata.dll
2019-06-19 19:25:50.577 Info App: Loading MusicBrainz, Version=1.0.5.0, Culture=neutral, PublicKeyToken=null from /config/plugins/MusicBrainz.dll
2019-06-19 19:25:50.577 Info App: Loading Tvdb, Version=1.0.6.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Tvdb.dll
2019-06-19 19:25:50.577 Info App: Loading AudioDb, Version=1.0.4.0, Culture=neutral, PublicKeyToken=null from /config/plugins/AudioDb.dll
2019-06-19 19:25:50.577 Info App: Loading OMDb, Version=1.0.5.0, Culture=neutral, PublicKeyToken=null from /config/plugins/OMDb.dll
2019-06-19 19:25:50.577 Info App: Loading StudioImages, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null from /config/plugins/StudioImages.dll
2019-06-19 19:25:50.577 Info App: Loading Emby.Server.CinemaMode, Version=1.0.14.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Emby.Server.CinemaMode.dll
2019-06-19 19:25:50.577 Info App: Loading Emby.PortMapper, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Emby.PortMapper.dll
2019-06-19 19:25:50.577 Info App: Loading Fanart, Version=1.0.2.0, Culture=neutral, PublicKeyToken=null from /config/plugins/Fanart.dll
2019-06-19 19:25:50.577 Info App: Loading MediaBrowser.Api, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading MediaBrowser.WebDashboard, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading MediaBrowser.Model, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading MediaBrowser.Common, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading MediaBrowser.Controller, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading MediaBrowser.Providers, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading Emby.Photos, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading Emby.Server.Implementations, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading Emby.LiveTV, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading Emby.Server.MediaEncoding, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading MediaBrowser.LocalMetadata, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.577 Info App: Loading Emby.Notifications, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.578 Info App: Loading Emby.Codecs.Dxva, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.578 Info App: Loading Emby.Codecs, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.578 Info App: Loading Emby.Server.Connect, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.578 Info App: Loading Emby.Server.Sync, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.578 Info App: Loading EmbyServer, Version=4.1.1.0, Culture=neutral, PublicKeyToken=null
2019-06-19 19:25:50.766 Info SqliteUserRepository: Sqlite version: 3.26.0
2019-06-19 19:25:50.767 Info SqliteUserRepository: Sqlite compiler options: COMPILER=gcc-6.3.0,ENABLE_COLUMN_METADATA,ENABLE_DBSTAT_VTAB,ENABLE_FTS3_PARENTHESIS,ENABLE_FTS3_TOKENIZER,ENABLE_FTS4,ENABLE_FTS5,ENABLE_JSON1,ENABLE_PREUPDATE_HOOK,ENABLE_RTREE,ENABLE_SESSION,ENABLE_UNLOCK_NOTIFY,ENABLE_UPDATE_DELETE_LIMIT,LIKE_DOESNT_MATCH_BLOBS,MAX_SCHEMA_RETRY=25,MAX_VARIABLE_NUMBER=250000,OMIT_LOOKASIDE,SECURE_DELETE,THREADSAFE=1
2019-06-19 19:25:50.797 Info SqliteUserRepository: Default journal_mode for /config/data/users.db is wal
2019-06-19 19:25:50.800 Info SqliteUserRepository: PRAGMA synchronous=1
2019-06-19 19:25:50.855 Info AuthenticationRepository: Default journal_mode for /config/data/authentication.db is wal
2019-06-19 19:25:50.855 Info AuthenticationRepository: PRAGMA synchronous=1
2019-06-19 19:25:50.916 Info ActivityRepository: Default journal_mode for /config/data/activitylog.db is wal
2019-06-19 19:25:50.916 Info ActivityRepository: PRAGMA synchronous=1
2019-06-19 19:25:50.919 Info SqliteDisplayPreferencesRepository: Default journal_mode for /config/data/displaypreferences.db is wal
2019-06-19 19:25:50.919 Info SqliteDisplayPreferencesRepository: PRAGMA synchronous=1
2019-06-19 19:25:50.931 Info HttpServer: Adding HttpListener prefix http://+:8096/
2019-06-19 19:25:50.931 Info HttpServer: Adding HttpListener prefix https://+:8920/
2019-06-19 19:25:51.057 Debug XmlSerializer: Deserializing file /config/config/users/ecb63fa31daa4d4398f09d626c8f292e/policy.xml
2019-06-19 19:25:51.114 Info SqliteItemRepository: Default journal_mode for /config/data/library.db is wal
2019-06-19 19:25:51.115 Info SqliteItemRepository: PRAGMA synchronous=1
2019-06-19 19:25:51.301 Debug XmlSerializer: Deserializing file /config/config/encoding.xml
2019-06-19 19:25:52.245 Info Skia: SkiaSharp version: 1.68.0.0
2019-06-19 19:25:52.295 Info TaskManager: Daily trigger for Thumbnail image extraction set to fire at 6/20/19 2:00:00 AM, which is 394.128403661667 minutes from now.
2019-06-19 19:25:52.308 Info TaskManager: Daily trigger for Rotate log file set to fire at 6/20/19 12:00:00 AM, which is 274.128200373333 minutes from now.
2019-06-19 19:25:52.317 Info App: ServerId: 97f2b44fb7654321b6980c80ebbb2c3c
2019-06-19 19:25:52.379 Info App: Starting entry point Emby.Server.MediaEncoding.Encoder.MediaEncoderEntryPoint
2019-06-19 19:25:52.382 Info MediaEncoder: FFMpeg: /bin/ffmpeg
2019-06-19 19:25:52.382 Info MediaEncoder: FFProbe: /bin/ffprobe
2019-06-19 19:25:52.382 Info MediaEncoder: FFDetect: /bin/ffdetect
2019-06-19 19:25:52.383 Info MediaEncoder: Validating ffmpeg capabilities at /bin/ffmpeg
2019-06-19 19:25:52.393 Info MediaEncoder: ProcessRun 'ffmpeg -hide_banner -version' Execute: /bin/ffmpeg -hide_banner -version
2019-06-19 19:25:52.406 Info MediaEncoder: ProcessRun 'ffmpeg -hide_banner -version' Started.
2019-06-19 19:25:52.448 Info MediaEncoder: ProcessRun 'ffmpeg -hide_banner -version' Process exited with code 0
2019-06-19 19:25:52.456 Info MediaEncoder: ffmpeg validation complete
2019-06-19 19:25:52.460 Debug SoftwareCodecProvider: Start GetCodecList()
2019-06-19 19:25:52.561 Info SoftwareCodecProvider: h264, libx264, libx264 Software Encoder, V-E-libx264
2019-06-19 19:25:52.561 Info SoftwareCodecProvider: hevc, libx265, libx264 Software Encoder, V-E-libx265
2019-06-19 19:25:52.561 Info SoftwareCodecProvider: mpeg4, mpeg4, MPEG-4 part 2 Software Encoder, V-E-mpeg4
2019-06-19 19:25:52.561 Info SoftwareCodecProvider: msmpeg4v3, msmpeg4, MPEG-4 part 2 (MS Variant 3) Software Encoder, V-E-msmpeg4
2019-06-19 19:25:52.562 Info SoftwareCodecProvider: vp8, libvpx, libvpx VP8, V-E-libvpx
2019-06-19 19:25:52.563 Debug SoftwareCodecProvider: End GetCodecList()
2019-06-19 19:25:52.565 Debug OpenMaxCodecProvider: Start GetCodecList()
2019-06-19 19:25:52.572 Debug OpenMaxCodecProvider: End GetCodecList()
2019-06-19 19:25:52.575 Debug VaapiCodecProvider: Start GetCodecList()
2019-06-19 19:25:52.580 Info VaapiCodecProvider: ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 vaencdec -print_format json 
2019-06-19 19:25:52.580 Info VaapiCodecProvider: ProcessRun 'ffdetect_vaencdec' Execute: /bin/ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 vaencdec -print_format json 
2019-06-19 19:25:52.613 Info VaapiCodecProvider: ProcessRun 'ffdetect_vaencdec' Started.
2019-06-19 19:25:52.614 Info VaapiCodecProvider: ProcessRun 'ffdetect_vaencdec' Process exited with code 0
2019-06-19 19:25:52.639 Info App: Entry point completed: Emby.Server.MediaEncoding.Encoder.MediaEncoderEntryPoint. Duration: 0.2599754 seconds
2019-06-19 19:25:52.640 Info App: Starting entry point Emby.Server.Connect.ConnectEntryPoint
2019-06-19 19:25:52.669 Info App: Loading data from /config/data/connect.txt
2019-06-19 19:25:52.670 Info App: Loading data from /config/data/wan.dat
2019-06-19 19:25:52.709 Info App: Entry point completed: Emby.Server.Connect.ConnectEntryPoint. Duration: 0.0695623 seconds
2019-06-19 19:25:52.709 Info App: Core startup complete
2019-06-19 19:25:52.709 Info App: Post-init migrations complete
2019-06-19 19:25:52.709 Info App: Starting entry point NfoMetadata.EntryPoint
2019-06-19 19:25:52.710 Info App: Entry point completed: NfoMetadata.EntryPoint. Duration: 0.0006538 seconds
2019-06-19 19:25:52.710 Info App: Starting entry point Emby.Security.PluginSecurityManager
2019-06-19 19:25:52.710 Info App: Entry point completed: Emby.Security.PluginSecurityManager. Duration: 3.79E-05 seconds
2019-06-19 19:25:52.710 Info App: Starting entry point Emby.Server.CinemaMode.IntrosEntryPoint
2019-06-19 19:25:52.710 Info App: Entry point completed: Emby.Server.CinemaMode.IntrosEntryPoint. Duration: 0.0002134 seconds
2019-06-19 19:25:52.710 Info App: Starting entry point Emby.PortMapper.ExternalPortForwarding
2019-06-19 19:25:52.711 Info App: Entry point completed: Emby.PortMapper.ExternalPortForwarding. Duration: 0.0006733 seconds
2019-06-19 19:25:52.711 Info App: Starting entry point MediaBrowser.Api.ApiEntryPoint
2019-06-19 19:25:52.711 Info App: Entry point completed: MediaBrowser.Api.ApiEntryPoint. Duration: 3.49E-05 seconds
2019-06-19 19:25:52.711 Info App: Starting entry point Emby.Server.Implementations.Udp.UdpServerEntryPoint
2019-06-19 19:25:52.714 Info App: Entry point completed: Emby.Server.Implementations.Udp.UdpServerEntryPoint. Duration: 0.0025427 seconds
2019-06-19 19:25:52.714 Info App: Starting entry point Emby.Server.Implementations.News.NewsEntryPoint
2019-06-19 19:25:52.714 Info App: Entry point completed: Emby.Server.Implementations.News.NewsEntryPoint. Duration: 0.0003401 seconds
2019-06-19 19:25:52.714 Info App: Starting entry point Emby.Server.Implementations.Library.DeviceAccessEntryPoint
2019-06-19 19:25:52.715 Info App: Entry point completed: Emby.Server.Implementations.Library.DeviceAccessEntryPoint. Duration: 0.000616 seconds
2019-06-19 19:25:52.715 Info App: Starting entry point Emby.Server.Implementations.IO.LibraryMonitorStartup
2019-06-19 19:25:52.868 Info VaapiCodecProvider: Adapter #0: 'Device 32902:16022' Id:16022 (Driver: Intel i965 driver for Intel(R) Coffee Lake - 2.2.0, Vendor: 32902)
2019-06-19 19:25:52.888 Debug VaapiCodecProvider: Adding video decoder for type: mpeg2video
2019-06-19 19:25:52.932 Debug VaapiCodecProvider: Adding video decoder for type: h264
2019-06-19 19:25:52.974 Debug VaapiCodecProvider: Adding video decoder for type: wmv3
2019-06-19 19:25:52.975 Debug VaapiCodecProvider: Video decoder of unsupported type (wmv3) detected: wmv3 
2019-06-19 19:25:52.975 Debug VaapiCodecProvider: Adding video decoder for type: vc1
2019-06-19 19:25:53.033 Debug VaapiCodecProvider: Adding video decoder for type: mjpeg
2019-06-19 19:25:53.037 Debug VaapiCodecProvider: Video decoder of unsupported type (mjpeg) detected: mjpeg 
2019-06-19 19:25:53.037 Debug VaapiCodecProvider: Adding video decoder for type: vp8
2019-06-19 19:25:53.068 Debug VaapiCodecProvider: Adding video decoder for type: hevc
2019-06-19 19:25:53.102 Debug VaapiCodecProvider: Adding video decoder for type: vp9
2019-06-19 19:25:53.191 Debug VaapiCodecProvider: Adding video decoder for type: mpeg2video
2019-06-19 19:25:53.191 Debug VaapiCodecProvider: Video encoder of unsupported type (mpeg2video) detected: mpeg2video 
2019-06-19 19:25:53.191 Debug VaapiCodecProvider: Adding video decoder for type: h264
2019-06-19 19:25:53.197 Debug VaapiCodecProvider: Adding video decoder for type: vp8
2019-06-19 19:25:53.197 Debug VaapiCodecProvider: Video encoder of unsupported type (vp8) detected: vp8 
2019-06-19 19:25:53.197 Debug VaapiCodecProvider: Adding video decoder for type: hevc
2019-06-19 19:25:53.201 Debug VaapiCodecProvider: Adding video decoder for type: vp9
2019-06-19 19:25:53.201 Debug VaapiCodecProvider: Video encoder of unsupported type (vp9) detected: vp9 
2019-06-19 19:25:53.206 Debug QuickSyncCodecProvider: Start GetCodecList()
2019-06-19 19:25:53.207 Info QuickSyncCodecProvider: ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 qsvencdec -print_format json 
2019-06-19 19:25:53.207 Info QuickSyncCodecProvider: ProcessRun 'ffdetect_qsvencdec' Execute: /bin/ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 qsvencdec -print_format json 
2019-06-19 19:25:53.218 Info QuickSyncCodecProvider: ProcessRun 'ffdetect_qsvencdec' Started.
2019-06-19 19:25:53.221 Info QuickSyncCodecProvider: ProcessRun 'ffdetect_qsvencdec' Process exited with code 0
2019-06-19 19:25:53.301 Debug NvidiaCodecProvider: Start GetCodecList()
2019-06-19 19:25:53.301 Info NvidiaCodecProvider: ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 nvencdec -print_format json 
2019-06-19 19:25:53.301 Info NvidiaCodecProvider: ProcessRun 'ffdetect_nvencdec' Execute: /bin/ffdetect -hide_banner -show_program_version -loglevel 48 -show_error -show_log 40 nvencdec -print_format json 
2019-06-19 19:25:53.308 Info NvidiaCodecProvider: ProcessRun 'ffdetect_nvencdec' Started.
2019-06-19 19:25:53.309 Debug XmlSerializer: Deserializing file /config/root/default/Movies/options.xml
2019-06-19 19:25:53.310 Info NvidiaCodecProvider: ProcessRun 'ffdetect_nvencdec' Process exited with code 1
2019-06-19 19:25:53.320 Info HttpClient: GET https://emby.media/community/index.php?/blog/rss/1-media-browser-developers-blog
2019-06-19 19:25:53.778 Info App: Entry point completed: Emby.Server.Implementations.IO.LibraryMonitorStartup. Duration: 1.0632761 seconds
2019-06-19 19:25:53.778 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.AutomaticRestartEntryPoint
2019-06-19 19:25:53.786 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.AutomaticRestartEntryPoint. Duration: 0.0077478 seconds
2019-06-19 19:25:53.786 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.KeepServerAwake
2019-06-19 19:25:53.786 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.KeepServerAwake. Duration: 0.0003114 seconds
2019-06-19 19:25:53.786 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.LibraryChangedNotifier
2019-06-19 19:25:53.793 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.LibraryChangedNotifier. Duration: 0.0022085 seconds
2019-06-19 19:25:53.793 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.ServerEventNotifier
2019-06-19 19:25:53.834 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.ServerEventNotifier. Duration: 0.0400552 seconds
2019-06-19 19:25:53.835 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.StartupWizard
2019-06-19 19:25:53.857 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.StartupWizard. Duration: 0.020566 seconds
2019-06-19 19:25:53.857 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.SystemEvents
2019-06-19 19:25:53.861 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.SystemEvents. Duration: 0.0037078 seconds
2019-06-19 19:25:53.862 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.UserDataChangeNotifier
2019-06-19 19:25:53.863 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.UserDataChangeNotifier. Duration: 0.001652 seconds
2019-06-19 19:25:53.863 Info App: Starting entry point Emby.Server.Implementations.Channels.ChannelsEntryPoint
2019-06-19 19:25:53.870 Info App: Entry point completed: Emby.Server.Implementations.Channels.ChannelsEntryPoint. Duration: 0.0066813 seconds
2019-06-19 19:25:53.870 Info App: Starting entry point Emby.Server.Implementations.Activity.ActivityLogEntryPoint
2019-06-19 19:25:53.880 Info App: Entry point completed: Emby.Server.Implementations.Activity.ActivityLogEntryPoint. Duration: 0.0090039 seconds
2019-06-19 19:25:53.880 Info App: Starting entry point Emby.LiveTV.EntryPoint
2019-06-19 19:25:53.893 Info App: Loading live tv data from /config/data/livetv/timers
2019-06-19 19:25:53.918 Debug XmlSerializer: Deserializing file /config/config/livetv.xml
2019-06-19 19:25:53.947 Info App: Entry point completed: Emby.LiveTV.EntryPoint. Duration: 0.0669977 seconds
2019-06-19 19:25:53.947 Info App: Starting entry point Emby.LiveTV.RecordingNotifier
2019-06-19 19:25:53.951 Info App: Entry point completed: Emby.LiveTV.RecordingNotifier. Duration: 0.0035198 seconds
2019-06-19 19:25:53.951 Info App: Starting entry point Emby.Server.MediaEncoding.Api.EncodingManagerEntryPoint
2019-06-19 19:25:53.953 Info App: Entry point completed: Emby.Server.MediaEncoding.Api.EncodingManagerEntryPoint. Duration: 0.0023315 seconds
2019-06-19 19:25:53.953 Info App: Starting entry point Emby.Notifications.Notifications
2019-06-19 19:25:53.955 Info App: Entry point completed: Emby.Notifications.Notifications. Duration: 0.0015423 seconds
2019-06-19 19:25:53.957 Info App: Starting entry point Emby.Server.Sync.SyncManagerEntryPoint
2019-06-19 19:25:53.969 Info App: SyncRepository Initialize taking write lock
2019-06-19 19:25:53.969 Info App: SyncRepository Initialize write lock taken
2019-06-19 19:25:53.970 Info App: Entry point completed: Emby.Server.Sync.SyncManagerEntryPoint. Duration: 0.0128478 seconds
2019-06-19 19:25:53.971 Info App: Starting entry point Emby.Server.Sync.SyncNotificationEntryPoint
2019-06-19 19:25:53.977 Info App: Entry point completed: Emby.Server.Sync.SyncNotificationEntryPoint. Duration: 0.0062691 seconds
2019-06-19 19:25:53.980 Info App: Starting entry point EmbyServer.Windows.LoopUtilEntryPoint
2019-06-19 19:25:53.980 Info App: Entry point completed: EmbyServer.Windows.LoopUtilEntryPoint. Duration: 0.0007427 seconds
2019-06-19 19:25:53.980 Info App: All entry points have started
2019-06-19 19:25:55.305 Info TaskManager: StartupTrigger fired for task: Check for plugin updates
2019-06-19 19:25:55.308 Info TaskManager: Queueing task PluginUpdateTask
2019-06-19 19:25:55.308 Info TaskManager: StartupTrigger fired for task: Check for application updates
2019-06-19 19:25:55.308 Info TaskManager: Queueing task SystemUpdateTask
2019-06-19 19:25:55.323 Info TaskManager: Executing Check for plugin updates
2019-06-19 19:25:55.326 Info TaskManager: Executing Check for application updates
2019-06-19 19:25:55.346 Info HttpClient: GET https://www.mb3admin.com/admin/service/EmbyPackages.json
2019-06-19 19:25:55.421 Debug App: No application update available.
2019-06-19 19:25:55.423 Info TaskManager: Check for application updates Completed after 0 minute(s) and 0 seconds
2019-06-19 19:25:55.446 Info TaskManager: ExecuteQueuedTasks
2019-06-19 19:25:56.415 Info LibraryMonitor: Watching directory /mnt/media/Filme
2019-06-19 19:26:10.666 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Logs/Log?name=embyserver.txt. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:10.770 Debug XmlSerializer: Deserializing file /config/config/users/ecb63fa31daa4d4398f09d626c8f292e/config.xml
2019-06-19 19:26:10.801 Debug HttpResultFactory: Transmit file /config/logs/embyserver.txt offset: 0
2019-06-19 19:26:10.813 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 156ms. http://emby.example.tld:8096/System/Logs/Log?name=embyserver.txt
2019-06-19 19:26:13.331 Error HttpClient: Connection to https://emby.media/community/index.php?/blog/rss/1-media-browser-developers-blog timed out
2019-06-19 19:26:13.336 Error App: Error downloading news
	*** Error Report ***
	Version: 4.1.1.0
	Command line: /system/EmbyServer.dll -programdata /config -ffdetect /bin/ffdetect -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
	Operating system: Unix 4.18.0.22
	64-Bit OS: True
	64-Bit Process: True
	User Interactive: True
	Runtime: file:///system/System.Private.CoreLib.dll
	Processor count: 12
	Program data path: /config
	Application directory: /system
	MediaBrowser.Model.Net.HttpException: MediaBrowser.Model.Net.HttpException: Connection to https://emby.media/community/index.php?/blog/rss/1-media-browser-developers-blog timed out ---> System.OperationCanceledException: The operation was canceled.
	   at System.Net.Http.HttpClient.HandleFinishSendAsyncError(Exception e, CancellationTokenSource cts)
	   at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	   --- End of inner exception stack trace ---
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
	   at Emby.Server.Implementations.News.NewsEntryPoint.DownloadNews(String path)
	   at Emby.Server.Implementations.News.NewsEntryPoint.OnTimerFired(Object state)
	Source: Emby.Server.Implementations
	TargetSite: Void MoveNext()
	InnerException: System.OperationCanceledException: The operation was canceled.
	Source: System.Net.Http
	TargetSite: Void HandleFinishSendAsyncError(System.Exception, System.Threading.CancellationTokenSource)
	   at System.Net.Http.HttpClient.HandleFinishSendAsyncError(Exception e, CancellationTokenSource cts)
	   at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	
2019-06-19 19:26:13.358 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/bower_components/emby-webcomponents/strings/en-GB.json?v=1560972373439. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:13.358 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/strings/en-GB.json?v=1560972373439. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:13.358 Debug HttpResultFactory: Transmit file /system/dashboard-ui/strings/en-GB.json offset: 0
2019-06-19 19:26:13.358 Debug HttpResultFactory: Transmit file /system/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json offset: 0
2019-06-19 19:26:13.359 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/web/bower_components/emby-webcomponents/strings/en-GB.json?v=1560972373439
2019-06-19 19:26:13.359 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/web/strings/en-GB.json?v=1560972373439
2019-06-19 19:26:15.351 Error HttpClient: Connection to https://www.mb3admin.com/admin/service/EmbyPackages.json timed out
2019-06-19 19:26:15.357 Error TaskManager: Error
	*** Error Report ***
	Version: 4.1.1.0
	Command line: /system/EmbyServer.dll -programdata /config -ffdetect /bin/ffdetect -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
	Operating system: Unix 4.18.0.22
	64-Bit OS: True
	64-Bit Process: True
	User Interactive: True
	Runtime: file:///system/System.Private.CoreLib.dll
	Processor count: 12
	Program data path: /config
	Application directory: /system
	MediaBrowser.Model.Net.HttpException: MediaBrowser.Model.Net.HttpException: Connection to https://www.mb3admin.com/admin/service/EmbyPackages.json timed out ---> System.OperationCanceledException: The operation was canceled.
	   at System.Net.Http.HttpClient.HandleFinishSendAsyncError(Exception e, CancellationTokenSource cts)
	   at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	   --- End of inner exception stack trace ---
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
	   at Emby.Server.Implementations.Updates.InstallationManager.GetAvailablePackagesWithoutRegistrationInfo(Boolean enableCache, CancellationToken cancellationToken)
	   at Emby.Server.Implementations.Updates.InstallationManager.GetAvailablePluginUpdates(Version applicationVersion, CancellationToken cancellationToken)
	   at Emby.Server.Implementations.ScheduledTasks.PluginUpdateTask.Execute(CancellationToken cancellationToken, IProgress`1 progress)
	   at Emby.Server.Implementations.ScheduledTasks.ScheduledTaskWorker.ExecuteInternal(TaskOptions options)
	Source: Emby.Server.Implementations
	TargetSite: Void MoveNext()
	InnerException: System.OperationCanceledException: The operation was canceled.
	Source: System.Net.Http
	TargetSite: Void HandleFinishSendAsyncError(System.Exception, System.Threading.CancellationTokenSource)
	   at System.Net.Http.HttpClient.HandleFinishSendAsyncError(Exception e, CancellationTokenSource cts)
	   at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	
2019-06-19 19:26:15.357 Info TaskManager: Check for plugin updates Failed after 0 minute(s) and 20 seconds
2019-06-19 19:26:15.362 Debug XmlSerializer: Deserializing file /config/config/notifications.xml
2019-06-19 19:26:15.366 Info TaskManager: ExecuteQueuedTasks
2019-06-19 19:26:15.688 Debug XmlSerializer: Deserializing file /config/config/branding.xml
2019-06-19 19:26:15.955 Info HttpServer: HTTP GET http://emby.example.tld:8096/emby/system/info/public. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:15.996 Debug App: Ping test result to http://172.42.0.42:8096/system/ping. Success: True
2019-06-19 19:26:16.002 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 46ms. http://emby.example.tld:8096/emby/system/info/public
2019-06-19 19:26:16.123 Info HttpServer: HTTP GET http://emby.example.tld:8096/emby/System/Info. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:16.167 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 44ms. http://emby.example.tld:8096/emby/System/Info
2019-06-19 19:26:16.371 Info HttpServer: HTTP GET http://emby.example.tld:8096/DisplayPreferences/usersettings?userId=ecb63fa31daa4d4398f09d626c8f292e&client=emby. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:16.413 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 42ms. http://emby.example.tld:8096/DisplayPreferences/usersettings?userId=ecb63fa31daa4d4398f09d626c8f292e&client=emby
2019-06-19 19:26:16.538 Info HttpServer: WS http://emby.example.tld:8096/socket?api_key=2ad098c2b4534a39a07b6dfa8d7c3b89&deviceId=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NDsgcnY6NjcuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Ny4wfDE1NjA5NjY3MjM1ODQ1. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:16.559 Debug HttpServer: Web socket connection allowed
2019-06-19 19:26:16.586 Debug SessionManager: Creating new WebSocketController
2019-06-19 19:26:16.757 Info HttpServer: HTTP POST http://emby.example.tld:8096/Sessions/Capabilities/Full. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:16.763 Info HttpServer: HTTP GET http://emby.example.tld:8096/Users/ecb63fa31daa4d4398f09d626c8f292e. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:16.793 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 30ms. http://emby.example.tld:8096/Users/ecb63fa31daa4d4398f09d626c8f292e
2019-06-19 19:26:16.809 Info HttpServer: HTTP Response 204 to 42.42.42.42. Time: 52ms. http://emby.example.tld:8096/Sessions/Capabilities/Full
2019-06-19 19:26:16.846 Info HttpServer: HTTP GET http://emby.example.tld:8096/Users/ecb63fa31daa4d4398f09d626c8f292e. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:16.849 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 3ms. http://emby.example.tld:8096/Users/ecb63fa31daa4d4398f09d626c8f292e
2019-06-19 19:26:18.014 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Logs/Log?name=embyserver.txt. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.015 Debug HttpResultFactory: Transmit file /config/logs/embyserver.txt offset: 0
2019-06-19 19:26:18.016 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 2ms. http://emby.example.tld:8096/System/Logs/Log?name=embyserver.txt
2019-06-19 19:26:18.229 Info HttpServer: HTTP GET http://emby.example.tld:8096/favicon.ico. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.232 Debug HttpResultFactory: Transmit file /system/dashboard-ui/favicon.ico offset: 0
2019-06-19 19:26:18.234 Info HttpServer: SocketException: http://emby.example.tld:8096/favicon.ico
2019-06-19 19:26:18.236 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 7ms. http://emby.example.tld:8096/favicon.ico
2019-06-19 19:26:18.380 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/ActivityLog/Entries?startIndex=0&limit=4&minDate=2019-06-12T19%3A26%3A18.466Z&hasUserId=false. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.380 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/ActivityLog/Entries?startIndex=0&limit=7&minDate=2019-06-18T19%3A26%3A18.465Z&hasUserId=true. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.380 Info HttpServer: HTTP GET http://emby.example.tld:8096/Sessions?ActiveWithinSeconds=960. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.381 Info HttpServer: HTTP GET http://emby.example.tld:8096/ScheduledTasks. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.381 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Info. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.381 Info HttpServer: HTTP GET http://emby.example.tld:8096/News/Product?StartIndex=0&Limit=4. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.381 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/configurationpages?pageType=PluginConfiguration&EnableInMainMenu=true. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.381 Info HttpServer: HTTP GET http://emby.example.tld:8096/LiveTv/Recordings?UserId=ecb63fa31daa4d4398f09d626c8f292e&IsInProgress=true&Fields=CanDelete%2CPrimaryImageAspectRatio&EnableTotalRecordCount=false&EnableImageTypes=Primary%2CThumb%2CBackdrop. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.381 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/System/Info
2019-06-19 19:26:18.398 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 18ms. http://emby.example.tld:8096/News/Product?StartIndex=0&Limit=4
2019-06-19 19:26:18.400 Debug App: SessionInfoWebSocketListener Begin transmitting over websocket to [::ffff:172.42.0.1]:51502
2019-06-19 19:26:18.400 Debug App: ScheduledTasksWebSocketListener Begin transmitting over websocket to [::ffff:172.42.0.1]:51502
2019-06-19 19:26:18.400 Debug App: ActivityLogWebSocketListener Begin transmitting over websocket to [::ffff:172.42.0.1]:51502
2019-06-19 19:26:18.400 Debug App: ActivityLogWebSocketListener Begin transmitting over websocket to [::ffff:172.42.0.1]:51502
2019-06-19 19:26:18.413 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 32ms. http://emby.example.tld:8096/ScheduledTasks
2019-06-19 19:26:18.416 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 35ms. http://emby.example.tld:8096/web/configurationpages?pageType=PluginConfiguration&EnableInMainMenu=true
2019-06-19 19:26:18.420 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 41ms. http://emby.example.tld:8096/System/ActivityLog/Entries?startIndex=0&limit=7&minDate=2019-06-18T19%3A26%3A18.465Z&hasUserId=true
2019-06-19 19:26:18.420 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 41ms. http://emby.example.tld:8096/System/ActivityLog/Entries?startIndex=0&limit=4&minDate=2019-06-12T19%3A26%3A18.466Z&hasUserId=false
2019-06-19 19:26:18.448 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 68ms. http://emby.example.tld:8096/Sessions?ActiveWithinSeconds=960
2019-06-19 19:26:18.462 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 81ms. http://emby.example.tld:8096/LiveTv/Recordings?UserId=ecb63fa31daa4d4398f09d626c8f292e&IsInProgress=true&Fields=CanDelete%2CPrimaryImageAspectRatio&EnableTotalRecordCount=false&EnableImageTypes=Primary%2CThumb%2CBackdrop
2019-06-19 19:26:18.565 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/bower_components/emby-webcomponents/themes/light/theme.json?v=4.1.1.0&r=0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:18.566 Info HttpServer: HTTP Response 304 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/web/bower_components/emby-webcomponents/themes/light/theme.json?v=4.1.1.0&r=0
2019-06-19 19:26:22.362 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Endpoint. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:22.375 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 12ms. http://emby.example.tld:8096/System/Endpoint
2019-06-19 19:26:22.515 Info HttpServer: HTTP GET http://emby.example.tld:8096/Playback/BitrateTest?Size=500000. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:22.552 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 37ms. http://emby.example.tld:8096/Playback/BitrateTest?Size=500000
2019-06-19 19:26:22.652 Info HttpServer: HTTP GET http://emby.example.tld:8096/Playback/BitrateTest?Size=1000000. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:22.705 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 54ms. http://emby.example.tld:8096/Playback/BitrateTest?Size=1000000
2019-06-19 19:26:29.347 Debug App: SessionInfoWebSocketListener stop transmitting over websocket to [::ffff:172.42.0.1]:51502
2019-06-19 19:26:29.347 Debug App: ScheduledTasksWebSocketListener stop transmitting over websocket to [::ffff:172.42.0.1]:51502
2019-06-19 19:26:29.402 Info HttpServer: HTTP GET http://emby.example.tld:8096/Notifications/Types. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:29.408 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 7ms. http://emby.example.tld:8096/Notifications/Types
2019-06-19 19:26:36.940 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Configuration. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:36.941 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Logs. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:36.951 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 11ms. http://emby.example.tld:8096/System/Logs
2019-06-19 19:26:36.953 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 13ms. http://emby.example.tld:8096/System/Configuration
2019-06-19 19:26:38.605 Debug App: ActivityLogWebSocketListener stop transmitting over websocket to [::ffff:172.42.0.1]:51502
2019-06-19 19:26:38.605 Debug App: ActivityLogWebSocketListener stop transmitting over websocket to [::ffff:172.42.0.1]:51502
2019-06-19 19:26:38.657 Info HttpServer: HTTP GET http://emby.example.tld:8096/Plugins. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:38.664 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 7ms. http://emby.example.tld:8096/Plugins
2019-06-19 19:26:38.791 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/configurationpages?pageType=PluginConfiguration. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:38.792 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/web/configurationpages?pageType=PluginConfiguration
2019-06-19 19:26:40.589 Info HttpServer: HTTP GET http://emby.example.tld:8096/Packages?TargetSystems=Server&IsAdult=false&IsAppStoreSafe=true&PackageType=UserInstalled. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:40.589 Info HttpServer: HTTP GET http://emby.example.tld:8096/Plugins. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:40.592 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 3ms. http://emby.example.tld:8096/Plugins
2019-06-19 19:26:40.599 Error HttpServer: Error processing request
	*** Error Report ***
	Version: 4.1.1.0
	Command line: /system/EmbyServer.dll -programdata /config -ffdetect /bin/ffdetect -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
	Operating system: Unix 4.18.0.22
	64-Bit OS: True
	64-Bit Process: True
	User Interactive: True
	Runtime: file:///system/System.Private.CoreLib.dll
	Processor count: 12
	Program data path: /config
	Application directory: /system
	MediaBrowser.Model.Net.HttpException: MediaBrowser.Model.Net.HttpException: Cancelling connection to https://www.mb3admin.com/admin/service/EmbyPackages.json due to a previous timeout.
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
	   at Emby.Server.Implementations.Updates.InstallationManager.GetAvailablePackagesWithoutRegistrationInfo(Boolean enableCache, CancellationToken cancellationToken)
	   at Emby.Server.Implementations.Updates.InstallationManager.GetAvailablePackages(CancellationToken cancellationToken, Boolean withRegistration, String packageType, Version applicationVersion)
	   at MediaBrowser.Api.PackageService.Get(GetPackages request)
	   at Emby.Server.Implementations.Services.ServiceExecGeneral.GetTaskResult(Task task)
	   at Emby.Server.Implementations.Services.ServiceHandler.ProcessRequestAsync(HttpListenerHost appHost, IRequest httpReq, IResponse httpRes, ILogger logger, String operationName, CancellationToken cancellationToken)
	   at Emby.Server.Implementations.HttpServer.HttpListenerHost.RequestHandler(IRequest httpReq, String urlString, String host, String localPath, CancellationToken cancellationToken)
	Source: Emby.Server.Implementations
	TargetSite: Void MoveNext()
	
2019-06-19 19:26:40.601 Info HttpServer: HTTP Response 500 to 42.42.42.42. Time: 12ms. http://emby.example.tld:8096/Packages?TargetSystems=Server&IsAdult=false&IsAppStoreSafe=true&PackageType=UserInstalled
2019-06-19 19:26:58.330 Debug SessionManager: Disposing session controller WebSocketController
2019-06-19 19:26:58.941 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/touchicon114.png. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:26:58.941 Debug HttpResultFactory: Transmit file /system/dashboard-ui/touchicon114.png offset: 0
2019-06-19 19:26:58.943 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 2ms. http://emby.example.tld:8096/web/touchicon114.png
2019-06-19 19:27:00.537 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/bower_components/emby-webcomponents/strings/en-GB.json?v=1560972420544. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:00.537 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/strings/en-GB.json?v=1560972420544. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:00.538 Debug HttpResultFactory: Transmit file /system/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json offset: 0
2019-06-19 19:27:00.538 Debug HttpResultFactory: Transmit file /system/dashboard-ui/strings/en-GB.json offset: 0
2019-06-19 19:27:00.538 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/web/bower_components/emby-webcomponents/strings/en-GB.json?v=1560972420544
2019-06-19 19:27:00.539 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 2ms. http://emby.example.tld:8096/web/strings/en-GB.json?v=1560972420544
2019-06-19 19:27:03.370 Info HttpServer: HTTP GET http://emby.example.tld:8096/emby/system/info/public. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:03.371 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/emby/system/info/public
2019-06-19 19:27:03.594 Info HttpServer: HTTP GET http://emby.example.tld:8096/emby/System/Info. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:03.596 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 2ms. http://emby.example.tld:8096/emby/System/Info
2019-06-19 19:27:03.743 Info HttpServer: HTTP GET http://emby.example.tld:8096/DisplayPreferences/usersettings?userId=ecb63fa31daa4d4398f09d626c8f292e&client=emby. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:03.745 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 2ms. http://emby.example.tld:8096/DisplayPreferences/usersettings?userId=ecb63fa31daa4d4398f09d626c8f292e&client=emby
2019-06-19 19:27:03.918 Info HttpServer: WS http://emby.example.tld:8096/socket?api_key=2ad098c2b4534a39a07b6dfa8d7c3b89&deviceId=TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NDsgcnY6NjcuMCkgR2Vja28vMjAxMDAxMDEgRmlyZWZveC82Ny4wfDE1NjA5NjY3MjM1ODQ1. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:03.918 Debug HttpServer: Web socket connection allowed
2019-06-19 19:27:03.919 Debug SessionManager: Creating new WebSocketController
2019-06-19 19:27:04.078 Info HttpServer: HTTP POST http://emby.example.tld:8096/Sessions/Capabilities/Full. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:04.082 Info HttpServer: HTTP Response 204 to 42.42.42.42. Time: 4ms. http://emby.example.tld:8096/Sessions/Capabilities/Full
2019-06-19 19:27:05.245 Info HttpServer: HTTP GET http://emby.example.tld:8096/Packages?TargetSystems=Server&IsAdult=false&IsAppStoreSafe=true&PackageType=UserInstalled. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:05.246 Info HttpClient: GET https://www.mb3admin.com/admin/service/EmbyPackages.json
2019-06-19 19:27:05.251 Info HttpServer: HTTP GET http://emby.example.tld:8096/Plugins. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:05.251 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 0ms. http://emby.example.tld:8096/Plugins
2019-06-19 19:27:05.253 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/configurationpages?pageType=PluginConfiguration&EnableInMainMenu=true. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:05.253 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 0ms. http://emby.example.tld:8096/web/configurationpages?pageType=PluginConfiguration&EnableInMainMenu=true
2019-06-19 19:27:05.360 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/bower_components/emby-webcomponents/themes/light/theme.json?v=4.1.1.0&r=0. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:05.361 Debug HttpResultFactory: Transmit file /system/dashboard-ui/bower_components/emby-webcomponents/themes/light/theme.json offset: 0
2019-06-19 19:27:05.361 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/web/bower_components/emby-webcomponents/themes/light/theme.json?v=4.1.1.0&r=0
2019-06-19 19:27:05.585 Info HttpServer: HTTP GET http://emby.example.tld:8096/web/css/images/logoblack.png. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:05.586 Debug HttpResultFactory: Transmit file /system/dashboard-ui/css/images/logoblack.png offset: 0
2019-06-19 19:27:05.586 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 1ms. http://emby.example.tld:8096/web/css/images/logoblack.png
2019-06-19 19:27:09.707 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Endpoint. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:09.709 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 2ms. http://emby.example.tld:8096/System/Endpoint
2019-06-19 19:27:09.821 Info HttpServer: HTTP GET http://emby.example.tld:8096/Playback/BitrateTest?Size=500000. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:09.825 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 5ms. http://emby.example.tld:8096/Playback/BitrateTest?Size=500000
2019-06-19 19:27:09.974 Info HttpServer: HTTP GET http://emby.example.tld:8096/Playback/BitrateTest?Size=1000000. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:09.979 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 5ms. http://emby.example.tld:8096/Playback/BitrateTest?Size=1000000
2019-06-19 19:27:24.965 Info HttpServer: HTTP GET http://emby.example.tld:8096/Users/ecb63fa31daa4d4398f09d626c8f292e. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:24.968 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 3ms. http://emby.example.tld:8096/Users/ecb63fa31daa4d4398f09d626c8f292e
2019-06-19 19:27:25.250 Error HttpClient: Connection to https://www.mb3admin.com/admin/service/EmbyPackages.json timed out
2019-06-19 19:27:25.255 Error HttpServer: Error processing request
	*** Error Report ***
	Version: 4.1.1.0
	Command line: /system/EmbyServer.dll -programdata /config -ffdetect /bin/ffdetect -ffmpeg /bin/ffmpeg -ffprobe /bin/ffprobe -restartexitcode 3
	Operating system: Unix 4.18.0.22
	64-Bit OS: True
	64-Bit Process: True
	User Interactive: True
	Runtime: file:///system/System.Private.CoreLib.dll
	Processor count: 12
	Program data path: /config
	Application directory: /system
	MediaBrowser.Model.Net.HttpException: MediaBrowser.Model.Net.HttpException: Connection to https://www.mb3admin.com/admin/service/EmbyPackages.json timed out ---> System.OperationCanceledException: The operation was canceled.
	   at System.Net.Http.HttpClient.HandleFinishSendAsyncError(Exception e, CancellationTokenSource cts)
	   at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	   --- End of inner exception stack trace ---
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsync(HttpRequestOptions options, String httpMethod)
	   at Emby.Server.Implementations.Updates.InstallationManager.GetAvailablePackagesWithoutRegistrationInfo(Boolean enableCache, CancellationToken cancellationToken)
	   at Emby.Server.Implementations.Updates.InstallationManager.GetAvailablePackages(CancellationToken cancellationToken, Boolean withRegistration, String packageType, Version applicationVersion)
	   at MediaBrowser.Api.PackageService.Get(GetPackages request)
	   at Emby.Server.Implementations.Services.ServiceExecGeneral.GetTaskResult(Task task)
	   at Emby.Server.Implementations.Services.ServiceHandler.ProcessRequestAsync(HttpListenerHost appHost, IRequest httpReq, IResponse httpRes, ILogger logger, String operationName, CancellationToken cancellationToken)
	   at Emby.Server.Implementations.HttpServer.HttpListenerHost.RequestHandler(IRequest httpReq, String urlString, String host, String localPath, CancellationToken cancellationToken)
	Source: Emby.Server.Implementations
	TargetSite: Void MoveNext()
	InnerException: System.OperationCanceledException: The operation was canceled.
	Source: System.Net.Http
	TargetSite: Void HandleFinishSendAsyncError(System.Exception, System.Threading.CancellationTokenSource)
	   at System.Net.Http.HttpClient.HandleFinishSendAsyncError(Exception e, CancellationTokenSource cts)
	   at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
	   at Emby.Server.Implementations.HttpClientManager.CoreHttpClientManager.SendAsyncInternal(HttpRequestOptions options, String httpMethod)
	
2019-06-19 19:27:25.256 Info HttpServer: HTTP Response 500 to 42.42.42.42. Time: 20011ms. http://emby.example.tld:8096/Packages?TargetSystems=Server&IsAdult=false&IsAppStoreSafe=true&PackageType=UserInstalled
2019-06-19 19:27:26.533 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Configuration. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:26.533 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Logs. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:26.535 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 3ms. http://emby.example.tld:8096/System/Configuration
2019-06-19 19:27:26.538 Info HttpServer: HTTP Response 200 to 42.42.42.42. Time: 5ms. http://emby.example.tld:8096/System/Logs
2019-06-19 19:27:27.672 Info HttpServer: HTTP GET http://emby.example.tld:8096/System/Logs/Log?name=embyserver.txt. UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0
2019-06-19 19:27:27.673 Debug HttpResultFactory: Transmit file /config/logs/embyserver.txt offset: 0


is this an actual issue you notice when using emby or are you just grepping logs for errors?

Link to comment
Share on other sites

Most likely it's just a matter of the connection being blocked somewhere further down the line.

Link to comment
Share on other sites

BobbyDing

Hi. Been having repeated issues with Unraid Emby Docker running out of temp space within the appdata folder and crashing all the docker apps. This happens when my wife uses Emby on our Roku to watch TV and falls asleep with the live tv still running into the night. In the mornings I find the appdata\embyserver\transcode-temp folder full and no space left on the ssd cache drives. Thus crashing Docker and all its minions. It must be something I have set wrong. How can I correct this? It last happened on the 16th. Emptying the folder fixes it. Logs attached.

 

Thanks!!

 

Anybody else?

 

Logs attached about.

 

Bobby

Link to comment
Share on other sites

@@BobbyDing that is currently the way live tv works. you need to stop playing. We are working on introducing a setting into the server to limit the amount of storage allocated towards the live tv buffer. This in effect would solve your issue.

Also the next update to the Roku app will have an optional "are you still watching" feature, that when enabled will prompt you every several hours to make sure you're still playing, and then stop if you don't respond.

Link to comment
Share on other sites

shokinn

is this an actual issue you notice when using emby or are you just grepping logs for errors?

It is an actual issue.

I can't install plugins (the catalogue is not loaded at all) and the most entries of my movies section don't have a poster.

 

 

 

Most likely it's just a matter of the connection being blocked somewhere further down the line.

As I described when I use wget Inside of the container I can reach a download endpoint for example film posters or the Plugin Catalogue.

If it would be a more general network issue this should be also not working, but it is.

 

Edit:

Maybe is Luke right. I'm getting into my network config and will let you know if this and what was the issue.

 

Edit 2:

Yupp is was a network issue. Sorry for bothering you.

I'm using dual stack network (IPv4 and IPv6) and the servers which I couldn't contact are IPv6 enabled.

So my Forward chain was dropping all the connections, because docker does not setup forward rules for IPv6 automatically.

 

 

Edited by shokinn
  • Like 1
Link to comment
Share on other sites

BobbyDing

@@BobbyDing that is currently the way live tv works. you need to stop playing. We are working on introducing a setting into the server to limit the amount of storage allocated towards the live tv buffer. This in effect would solve your issue.

Also the next update to the Roku app will have an optional "are you still watching" feature, that when enabled will prompt you every several hours to make sure you're still playing, and then stop if you don't respond.

 

Thanks @@Luke

Edited by BobbyDing
Link to comment
Share on other sites

  • 2 weeks later...
Riggs

For those interested, we now have Emby Server for Flatpak available for testing:

https://emby.media/community/index.php?/topic/75070-emby-server-for-flatpak/

 

I'm on the middle of a decision 

 

I have already installed OMV on a standalone pc/server machine

 

However, i can't find any option to use Emby beta on Docker.

 

So.... i thought if is better install Emby from the cli and just forget the OMV Docker, anyway... can be done with .deb .. not sure if the beta going to be added to flathub  i just need to add the repos. I like to use the beta version.

 

What option you think is the best option?

 

Thank you

Edited by HRSCR
Link to comment
Share on other sites

I'm on the middle of a decision 

 

I have already installed OMV on a standalone pc/server machine

 

However, i can't find any option to use Emby beta on Docker.

 

So.... i thought if is better install Emby from the cli and just forget the OMV Docker, anyway... can be done with .deb .. not sure if the beta going to be added to flathub  i just need to add the repos. I like to use the beta version.

 

What option you think is the best option?

 

Thank you

 

All docker instructions, including beta, can be found on our website:

https://emby.media/docker-server.html

 

Please let us know if this helps. Thanks.

Link to comment
Share on other sites

Regarding OMV specifically, I believe I have seen others using the .deb(s) directly before, but we haven't tested this ourselves. Thanks.

  • Like 1
Link to comment
Share on other sites

Riggs

Regarding OMV specifically, I believe I have seen others using the .deb(s) directly before, but we haven't tested this ourselves. Thanks.

 

Okay I'm going to try it myself then and I report you, at this point, the truth I have nothing to lose and I only have one disk mounted. In theory, it should work because OVM is on Debian.

I'll tell you later.

 

Thank you

Link to comment
Share on other sites

BAlGaInTl

I'm on the middle of a decision 

 

I have already installed OMV on a standalone pc/server machine

 

However, i can't find any option to use Emby beta on Docker.

 

So.... i thought if is better install Emby from the cli and just forget the OMV Docker, anyway... can be done with .deb .. not sure if the beta going to be added to flathub  i just need to add the repos. I like to use the beta version.

 

What option you think is the best option?

 

Thank you

 

 

All docker instructions, including beta, can be found on our website:

https://emby.media/docker-server.html

 

Please let us know if this helps. Thanks.

 

As I mentioned in another thread, I ran Emby in a docker on OMV for quite some time.  I really recommend using the OMV Docker plugin.

 

Check out this channel on YouTube.  Tons of great tutorials on setting up a bunch of docker containers on OMV.

 

https://www.youtube.com/channel/UCX2Vhc0LIzSS9aMzhGFZ7PA

 

He has some good advice on how to set up your system overall, and then specifics on many dockers, including Emby.

 

Here is the Emby specific one:

 

https://www.youtube.com/watch?v=Rbee3Se24Ms

  • Like 1
Link to comment
Share on other sites

Riggs

Ohh yeah, good advice that channel, i know the guy, thank you, I let you know tomorrow or Monday. I still moving movies to ext4 lol

Link to comment
Share on other sites

Riggs

@@Luke This is just a report of my experience.  Thanks to @@BAlGaInTl for the tips too.

 

Successfully installation of Emby docker using OpenMediaVault. 

Time to installing: 5 minutes.

 

Emby 4.2.0.28 beta Server on docker in  OMV 4.1.23-1 (Arrakis) works fine. No issues using the tag :beta to get the beta version on the docker. the installation was pretty straight forward.

 

I can also recommend this video: 

 

Installing Emby, a Plex alternative, in Openmediavault 

 

 

 

*Very handy for new beginners.*

 

 

Weird solved Issues.
 
1. Yesterday i had a situation getting the info to the libraries from the internet and the plugin catalog on Emby. I could not even see the release notes of Emby. That issue start after the first half hour,  it just lost the internet access for libraries info. I tried restarting Emby and restarting OMV without success. Today, very early in the morning i restart the Emby server again and i can get the connection to get the movies info and the catalog. I did a scan library / missing  metadata /without new images one library at the time and now is okay. I was able to access to the catalog too and install the BoxSets plugin and update the collections.
 
I'm not sure, but maybe this is related with the point #2.
 
2. (Not only on Docker) The premium key for some weird reason seems be installed okay the first time that you save the key in the webUI, however, if you check sometime later, the key is blank, there's not key at all, you need to paste the key and save it again. Seems that needs some hours to be recognized for your server API or whatever. Happened to me on Linux with Fedora, Ubuntu, Debian Buster 10 stable and in the Docker on OMV. Maybe you can check that. I'm using the original lifetime key from a year ago.
 
Hope this help at some noob. 
 
Thanks.
Edited by HRSCR
Link to comment
Share on other sites

That's great, thanks for doing that !

 

Regarding #2, there are existing posts about this in the Testing Area. Can you please add to those with a server log? Thanks.

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...