Jump to content

Search the Community

Showing results for tags 'docker https'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements
    • Emby Premiere Purchase/Subscription Support
    • Feature Requests
    • Tutorials and Guides
  • Emby Server
    • General/Windows
    • Android Server
    • Asustor
    • FreeBSD
    • Linux
    • NetGear ReadyNAS
    • MacOS
    • QNAP
    • Synology
    • TerraMaster NAS
    • Thecus
    • Western Digital
    • DLNA
    • Live TV
  • Emby Apps
    • Amazon Alexa
    • Android
    • Android TV / Fire TV
    • Windows & Xbox
    • Apple iOS / macOS
    • Apple TV
    • Kodi
    • LG Smart TV
    • Linux & Raspberry Pi
    • Roku
    • Samsung Smart TV
    • Sony PlayStation
    • Web App
    • Windows Media Center
    • Plugins
  • Language-specific support
    • Arabic
    • Dutch
    • French
    • German
    • Italian
    • Portuguese
    • Russian
    • Spanish
    • Swedish
  • Community Contributions
    • Ember for Emby
    • Fan Art & Videos
    • Tools and Utilities
    • Web App CSS
  • Testing Area
    • WMC UI (Beta)
  • Other
    • Non-Emby General Discussion
    • Developer API
    • Hardware
    • Media Clubs

Blogs

  • Emby Blog

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Found 2 results

  1. MrLinford

    [DOCKER] HTTPS is not working

    Been a while since I have had to post so just a quick thank you. I am running EmbyServer in a docker on my unRAID server (emby/embyserver:latest) and I'm trying to get HTTPS to work through my Nginx Proxy. HTTP works no problem. Client: Docker Engine - Community Version: 20.10.5 API version: 1.41 Go version: go1.13.15 Git commit: 55c4c88 Built: Tue Mar 2 20:14:11 2021 OS/Arch: linux/amd64 Context: default Experimental: true Server: Docker Engine - Community Engine: Version: 20.10.5 API version: 1.41 (minimum version 1.12) Go version: go1.13.15 Git commit: 363e9a8 Built: Tue Mar 2 20:18:31 2021 OS/Arch: linux/amd64 Experimental: false containerd: Version: v1.4.3 GitCommit: 269548fa27e0089a8b8278fc4fc781d7f65a939b runc: Version: 1.0.0-rc93 GitCommit: 12644e614e25b05da6fd08a38ffa0cfe1903fdec docker-init: Version: 0.19.0 GitCommit: de40ad0 Client: Context: default Debug Mode: false Server: Containers: 12 Running: 10 Paused: 0 Stopped: 2 Images: 12 Server Version: 20.10.5 Storage Driver: btrfs Build Version: Btrfs v4.20.1 Library Version: 102 Logging Driver: json-file Cgroup Driver: cgroupfs Cgroup Version: 1 Plugins: Volume: local Network: bridge host ipvlan macvlan null overlay Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog Swarm: inactive Runtimes: io.containerd.runc.v2 io.containerd.runtime.v1.linux runc Default Runtime: runc Init Binary: docker-init containerd version: 269548fa27e0089a8b8278fc4fc781d7f65a939b runc version: 12644e614e25b05da6fd08a38ffa0cfe1903fdec init version: de40ad0 Security Options: seccomp Profile: default Kernel Version: 5.10.28-Unraid Operating System: Slackware 14.2 x86_64 (post 14.2 -current) OSType: linux Architecture: x86_64 CPUs: 8 Total Memory: 15.34GiB Name: NEO ID: Y3GH:2DQQ:RWFG:TAIJ:3NPK:QLXK:M5QV:F22B:HCUV:QH5I:VBER:5M6B Docker Root Dir: /var/lib/docker Debug Mode: false Registry: https://index.docker.io/v1/ Labels: Experimental: false Insecure Registries: 127.0.0.0/8 Live Restore Enabled: false Product License: Community Engine docker run -d --name='Emby' --net='bridge' -e TZ="Europe/London" -e HOST_OS="Unraid" -e 'UID'='2' -e 'GID'='2' -e 'GIDLIST'='2,18' -p '8096:8096/tcp' -p '8920:8920/tcp' -v '/mnt/user/nas/':'/mnt':'rw' -v '/mnt/cache/appdata/EmbyServer/':'/config':'rw' --device=/dev/dri 'emby/embyserver:latest' When going to my https address I get 502. Looking in the container logs I noticed I only see `Info App: Adding HttpListener prefix http://+:8096/` I can not see HttpListener for 8920. Any thoughts why the container isn't starting HttpListener for 8920. Thank you, MrLinford
  2. tomtomgooo

    Https not enable

    Hi, i need your help with https feature. I migrate my server on VMware in docker, all is ok excepted https. I have tryed to change https port but the connection stay impossible. I don't have any error in logs so I require your help Here is my dockerfile : FROM ubuntu:latest MAINTAINER Thomas BRUYERE ENV TZ=Europe/Paris RUN apt-get update -qq && \ apt-get install -qq wget &&\ echo 'deb http://download.opensuse.org/repositories/home:/emby/xUbuntu_16.04/ /' > /etc/apt/sources.list.d/emby-server.list && \ wget -nv https://download.opensuse.org/repositories/home:emby/xUbuntu_Next/Release.key -O Release.key &&\ apt-key add - < Release.key&& \ apt-get update -qq && \ apt-get -y --allow-unauthenticated install autoconf automake build-essential libass-dev libfreetype6-dev \ libsdl2-dev libtheora-dev libtool libva-dev libvdpau-dev libvorbis-dev libxcb1-dev libxcb-shm0-dev \ libxcb-xfixes0-dev texinfo zlib1g-dev yasm libx264-dev libfdk-aac-dev \ libmp3lame-dev libopus-dev libvpx-dev libsmbclient-dev emby-server nano && \ ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone&&\ echo '/usr/lib/emby-server/x86_64-linux-gnu' >/etc/ld.so.conf.d/emby.conf&&\ ldconfig && \ #cp /etc/default/locale /etc/default/locale_default && \ #echo "LANG=fr_FR.UTF-8" > /etc/default/locale && \ #dpkg-reconfigure locales && \ apt-get clean && \ mkdir -p /config && \ chown -Rh emby. /config COPY bin/ff* /usr/bin/ #COPY emby.sh /usr/bin/ COPY emby-server /etc/default/ VOLUME ["/config"] EXPOSE 8096 8920 7359/udp 1900/udp CMD /etc/init.d/emby-server start && bash Here are my logs on startup : 2017-11-01 18:06:44.691 Info Main: Emby Command line: /usr/lib/emby-server/bin/MediaBrowser.Server.Mono.exe -programdata /config -restartpath /usr/lib/emby-server/restart.sh Operating system: Unix 4.4.0.62 64-Bit OS: True 64-Bit Process: True User Interactive: False Mono: 4.8.1 (Stable 4.8.1.0/22a39d7 Tue May 2 22:26:20 UTC 2017) Processor count: 4 Program data path: /config Application directory: /usr/lib/emby-server/bin 2017-11-01 18:06:45.128 Info App: Application version: 3.2.35.0 2017-11-01 18:06:45.207 Info App: Application configuration: {"EnableUPnP":true,"PublicPort":8096,"PublicHttpsPort":8920,"HttpServerPortNumber":8096,"HttpsPortNumber":8920,"EnableHttps":false,"EnableNormalizedItemByNameIds":true,"IsPortAuthorized":false,"EnableCaseSensitiveItemIds":true,"DisableLiveTvChannelUserDataName":true,"MetadataPath":"","MetadataNetworkPath":"","PreferredMetadataLanguage":"fr","MetadataCountryCode":"FR","SortReplaceCharacters":[".","+","%"],"SortRemoveCharacters":[",","&","-","{","}","'"],"SortRemoveWords":["the","a","an"],"MinResumePct":10,"MaxResumePct":90,"MinResumeDurationSeconds":300,"LibraryMonitorDelay":60,"EnableDashboardResponseCaching":true,"ImageSavingConvention":"Compatible","MetadataOptions":[{"ItemType":"Book","ImageOptions":[{"Type":"Backdrop","Limit":1,"MinWidth":1280}],"DisabledMetadataSavers":[],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":[],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]},{"ItemType":"Movie","ImageOptions":[{"Type":"Backdrop","Limit":1,"MinWidth":1280},{"Type":"Art","Limit":0,"MinWidth":0},{"Type":"Disc","Limit":0,"MinWidth":0},{"Type":"Primary","Limit":1,"MinWidth":0},{"Type":"Banner","Limit":0,"MinWidth":0},{"Type":"Thumb","Limit":1,"MinWidth":0},{"Type":"Logo","Limit":1,"MinWidth":0}],"DisabledMetadataSavers":["Emby Xml"],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":[],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]},{"ItemType":"MusicVideo","ImageOptions":[{"Type":"Backdrop","Limit":1,"MinWidth":1280},{"Type":"Art","Limit":0,"MinWidth":0},{"Type":"Disc","Limit":0,"MinWidth":0},{"Type":"Primary","Limit":1,"MinWidth":0},{"Type":"Banner","Limit":0,"MinWidth":0},{"Type":"Thumb","Limit":1,"MinWidth":0},{"Type":"Logo","Limit":1,"MinWidth":0}],"DisabledMetadataSavers":["Emby Xml"],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":[],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]},{"ItemType":"Series","ImageOptions":[{"Type":"Backdrop","Limit":1,"MinWidth":1280},{"Type":"Art","Limit":0,"MinWidth":0},{"Type":"Primary","Limit":1,"MinWidth":0},{"Type":"Banner","Limit":1,"MinWidth":0},{"Type":"Thumb","Limit":1,"MinWidth":0},{"Type":"Logo","Limit":1,"MinWidth":0}],"DisabledMetadataSavers":["Emby Xml"],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":[],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]},{"ItemType":"MusicAlbum","ImageOptions":[{"Type":"Backdrop","Limit":0,"MinWidth":1280},{"Type":"Disc","Limit":0,"MinWidth":0}],"DisabledMetadataSavers":["Emby Xml"],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":["TheAudioDB"],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]},{"ItemType":"MusicArtist","ImageOptions":[{"Type":"Backdrop","Limit":1,"MinWidth":1280},{"Type":"Banner","Limit":0,"MinWidth":0},{"Type":"Art","Limit":0,"MinWidth":0},{"Type":"Logo","Limit":1,"MinWidth":0}],"DisabledMetadataSavers":["Emby Xml"],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":["TheAudioDB"],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]},{"ItemType":"BoxSet","ImageOptions":[{"Type":"Backdrop","Limit":1,"MinWidth":1280},{"Type":"Primary","Limit":1,"MinWidth":0},{"Type":"Thumb","Limit":1,"MinWidth":0},{"Type":"Logo","Limit":1,"MinWidth":0},{"Type":"Art","Limit":0,"MinWidth":0},{"Type":"Disc","Limit":0,"MinWidth":0},{"Type":"Banner","Limit":0,"MinWidth":0}],"DisabledMetadataSavers":[],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":[],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]},{"ItemType":"Season","ImageOptions":[{"Type":"Backdrop","Limit":0,"MinWidth":1280},{"Type":"Primary","Limit":1,"MinWidth":0},{"Type":"Banner","Limit":0,"MinWidth":0},{"Type":"Thumb","Limit":0,"MinWidth":0}],"DisabledMetadataSavers":["Emby Xml"],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":["TheMovieDb"],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]},{"ItemType":"Episode","ImageOptions":[{"Type":"Backdrop","Limit":0,"MinWidth":1280},{"Type":"Primary","Limit":1,"MinWidth":0}],"DisabledMetadataSavers":["Emby Xml"],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":["The Open Movie Database","TheMovieDb"],"MetadataFetcherOrder":[],"DisabledImageFetchers":["The Open Movie Database","TheMovieDb"],"ImageFetcherOrder":[]},{"ItemType":"Video","ImageOptions":[{"Type":"Backdrop","Limit":3,"MinWidth":1280}],"DisabledMetadataSavers":["Emby Xml"],"LocalMetadataReaderOrder":[],"DisabledMetadataFetchers":[],"MetadataFetcherOrder":[],"DisabledImageFetchers":[],"ImageFetcherOrder":[]}],"EnableAutomaticRestart":true,"SkipDeserializationForBasicTypes":true,"WanDdns":"","UICulture":"fr","SaveMetadataHidden":false,"ContentTypes":[],"RemoteClientBitrateLimit":0,"SharingExpirationDays":30,"SchemaVersion":0,"EnableAnonymousUsageReporting":false,"EnableFolderView":false,"EnableGroupingIntoCollections":false,"DisplaySpecialsWithinSeasons":true,"DisplayCollectionsView":false,"LocalNetworkAddresses":[],"CodecsUsed":[],"EnableChannelView":false,"EnableExternalContentInSuggestions":true,"RequireHttps":false,"IsBehindProxy":false,"EnableNewOmdbSupport":false,"ImageExtractionTimeoutMs":0,"PathSubstitutions":[],"EnableSimpleArtistDetection":true,"EnableDebugLevelLogging":true,"EnableAutoUpdate":true,"LogFileRetentionDays":3,"RunAtStartup":false,"IsStartupWizardCompleted":true,"CachePath":""} 2017-11-01 18:06:45.222 Info App: Loading Emby.Kodi.SyncQueue, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.222 Info App: Loading statistics, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.222 Info App: Loading Trakt, Version=3.1.1.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.222 Info App: Loading MediaBrowser.Api, Version=3.2.35.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.222 Info App: Loading MediaBrowser.WebDashboard, Version=3.2.35.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.222 Info App: Loading MediaBrowser.Model, Version=3.2.35.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.222 Info App: Loading MediaBrowser.Common, Version=3.2.35.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.222 Info App: Loading MediaBrowser.Controller, Version=3.2.35.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.223 Info App: Loading MediaBrowser.Providers, Version=3.2.35.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.223 Info App: Loading Emby.Photos, Version=3.2.35.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.223 Info App: Loading Emby.Server.Implementations, Version=3.2.35.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.223 Info App: Loading Emby.Server.MediaEncoding, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.223 Info App: Loading Emby.Dlna, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.223 Info App: Loading MediaBrowser.LocalMetadata, Version=3.2.35.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.223 Info App: Loading MediaBrowser.XbmcMetadata, Version=3.2.35.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.223 Info App: Loading MediaBrowser.Server.Mono, Version=3.2.35.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.223 Info App: Loading Emby.Server.CinemaMode, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.223 Info App: Loading Emby.Server.Connect, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.223 Info App: Loading Emby.Server.Sync, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.223 Info App: Loading MediaBrowser.IsoMounting.Linux, Version=1.0.6307.26031, Culture=neutral, PublicKeyToken=null 2017-11-01 18:06:45.293 Info SqliteUserRepository: Sqlite version: 3.18.0 2017-11-01 18:06:45.294 Info SqliteUserRepository: Sqlite compiler options: COMPILER=gcc-5.3.1 20160413,DEFAULT_SYNCHRONOUS=2,DEFAULT_WAL_SYNCHRONOUS=2,ENABLE_COLUMN_METADATA,ENABLE_DBSTAT_VTAB,ENABLE_FTS3,ENABLE_FTS3_PARENTHESIS,ENABLE_FTS5,ENABLE_JSON1,ENABLE_LOAD_EXTENSION,ENABLE_RTREE,ENABLE_UNLOCK_NOTIFY,ENABLE_UPDATE_DELETE_LIMIT,LIKE_DOESNT_MATCH_BLOBS,MAX_SCHEMA_RETRY=25,OMIT_LOOKASIDE,SECURE_DELETE,SYSTEM_MALLOC,THREADSAFE=1 2017-11-01 18:06:45.316 Info SqliteUserRepository: Default journal_mode for /config/data/users.db is wal 2017-11-01 18:06:45.318 Info SqliteUserRepository: PRAGMA synchronous=1 2017-11-01 18:06:45.327 Info AuthenticationRepository: Default journal_mode for /config/data/authentication.db is wal 2017-11-01 18:06:45.328 Info AuthenticationRepository: PRAGMA synchronous=1 2017-11-01 18:06:45.357 Info DeviceManager: Default journal_mode for /config/data/devices.db is wal 2017-11-01 18:06:45.357 Info DeviceManager: PRAGMA synchronous=1 2017-11-01 18:06:45.371 Info SharingRepository: Default journal_mode for /config/data/shares.db is wal 2017-11-01 18:06:45.371 Info SharingRepository: PRAGMA synchronous=1 2017-11-01 18:06:45.373 Info ActivityRepository: Default journal_mode for /config/data/activitylog.db is wal 2017-11-01 18:06:45.373 Info ActivityRepository: PRAGMA synchronous=1 2017-11-01 18:06:45.374 Info SqliteDisplayPreferencesRepository: Default journal_mode for /config/data/displaypreferences.db is wal 2017-11-01 18:06:45.375 Info SqliteDisplayPreferencesRepository: PRAGMA synchronous=1 2017-11-01 18:06:45.376 Info SqliteItemRepository: Default journal_mode for /config/data/library.db is wal 2017-11-01 18:06:45.376 Info SqliteItemRepository: PRAGMA synchronous=1 2017-11-01 18:06:45.384 Info SqliteNotificationsRepository: Default journal_mode for /config/data/notifications.db is wal 2017-11-01 18:06:45.384 Info SqliteNotificationsRepository: PRAGMA synchronous=1 2017-11-01 18:06:45.422 Debug XmlSerializer: Deserializing file /config/config/users/ea8daf3ba8e240a5835049c1c736e346/policy.xml 2017-11-01 18:06:45.445 Debug XmlSerializer: Deserializing file /config/config/users/52153e24aeb64666aa70581bdfe942be/policy.xml 2017-11-01 18:06:45.447 Info App: Requesting administrative access to authorize http server 2017-11-01 18:06:45.447 Info ServerConfigurationManager: Saving system configuration 2017-11-01 18:06:45.448 Debug XmlSerializer: Serializing to file /config/config/system.xml 2017-11-01 18:06:45.539 Debug XmlSerializer: Deserializing file /config/config/encoding.xml 2017-11-01 18:06:45.549 Info App: Emby.Kodi.SyncQueue IS NOW STARTING!!! 2017-11-01 18:06:45.550 Info App: Emby.Kodi.SyncQueue: Creating DB Repository... 2017-11-01 18:06:45.691 Info App: Emby.Kodi.SyncQueue: SyncAPI Created and Listening at "/Emby.Kodi.SyncQueue/{UserID}/{LastUpdateDT}/GetItems?format=json" - {LastUpdateDT} must be a UTC DateTime formatted as yyyy-MM-ddTHH:mm:ssZ 2017-11-01 18:06:45.691 Info App: Emby.Kodi.SyncQueue: SyncAPI Created and Listening at "/Emby.Kodi.SyncQueue/{UserID}/GetItems?LastUpdateDT={LastUpdateDT}&format=json" - {LastUpdateDT} must be a UTC DateTime formatted as yyyy-MM-ddTHH:mm:ssZ 2017-11-01 18:06:45.691 Info App: Emby.Kodi.SyncQueue: The following parameters also exist to filter the results: 2017-11-01 18:06:45.691 Info App: Emby.Kodi.SyncQueue: filter=movies,tvshows,music,musicvideos,boxsets 2017-11-01 18:06:45.691 Info App: Emby.Kodi.SyncQueue: Results will be included by default and only filtered if added to the filter query... 2017-11-01 18:06:45.691 Info App: Emby.Kodi.SyncQueue: the filter query must be lowercase in both the name and the items... 2017-11-01 18:06:45.738 Info HttpServer: Calling ServiceStack AppHost.Init 2017-11-01 18:06:46.210 Info ServerManager: Loading Http Server 2017-11-01 18:06:46.213 Info HttpServer: Adding HttpListener prefix http://+:8096/ 2017-11-01 18:06:46.214 Info HttpServer: Adding HttpListener prefix https://+:8920/ 2017-11-01 18:06:46.376 Debug App: [LinuxMount] System PATH is currently set to [/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games]. 2017-11-01 18:06:46.376 Debug App: [LinuxMount] System path separator is [:]. 2017-11-01 18:06:46.376 Debug App: [LinuxMount] Mount point root is [/tmp/Emby]. 2017-11-01 18:06:46.377 Info App: [LinuxMount] Using version of [sudo] located at []. 2017-11-01 18:06:46.377 Info App: [LinuxMount] Using version of [mount] located at [/bin/mount]. 2017-11-01 18:06:46.377 Info App: [LinuxMount] Using version of [umount] located at [/bin/umount]. 2017-11-01 18:06:46.384 Error Main: Skia not available. Will try next image processor. libSkiaSharp.so 2017-11-01 18:06:46.389 Info ImageMagick: ImageMagick version: ImageMagick 6.9.6-6 Q8 x86_64 2016-12-07 http://www.imagemagick.org 2017-11-01 18:06:46.399 Info App: Emby.Kodi.SyncQueue.Task: Retention Task Scheduled! 2017-11-01 18:06:46.411 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/81267bb8-bb49-51de-4b1b-446262cc7365.js 2017-11-01 18:06:46.415 Debug JsonSerializer: Deserializing file /config/data/ScheduledTasks/81267bb8-bb49-51de-4b1b-446262cc7365.js 2017-11-01 18:06:46.420 Info TaskManager: Daily trigger for Remove Old Sync Data set to fire at 11/02/2017 00:01:00, which is 354.226333166667 minutes from now. 2017-11-01 18:06:46.420 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/d459f39d-7abb-81f5-fcce-03048a7ecf4d.js 2017-11-01 18:06:46.420 Debug JsonSerializer: Deserializing file /config/data/ScheduledTasks/d459f39d-7abb-81f5-fcce-03048a7ecf4d.js 2017-11-01 18:06:46.421 Info TaskManager: Daily trigger for Calculate statistics for all users set to fire at 11/02/2017 00:00:00, which is 353.226316233333 minutes from now. 2017-11-01 18:06:46.421 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/5e47e7d3-542a-ce9c-3676-91a65cb31e86.js 2017-11-01 18:06:46.421 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/b1a52e63-d5fb-0933-5557-d4f1e6402299.js 2017-11-01 18:06:46.421 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/2c66a88b-ca43-e565-d7f8-099f825478f1.js 2017-11-01 18:06:46.422 Debug JsonSerializer: Deserializing file /config/data/ScheduledTasks/2c66a88b-ca43-e565-d7f8-099f825478f1.js 2017-11-01 18:06:46.425 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/a27c5425-9520-b2e5-c509-def68c8f4c45.js 2017-11-01 18:06:46.425 Debug JsonSerializer: Deserializing file /config/data/ScheduledTasks/a27c5425-9520-b2e5-c509-def68c8f4c45.js 2017-11-01 18:06:46.425 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/7a7448c2-61fa-47f3-46b4-c061a5d5c163.js 2017-11-01 18:06:46.426 Debug JsonSerializer: Deserializing file /config/data/ScheduledTasks/7a7448c2-61fa-47f3-46b4-c061a5d5c163.js 2017-11-01 18:06:46.426 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/3145e441-d9ba-27fc-391e-7ee15face581.js 2017-11-01 18:06:46.426 Debug JsonSerializer: Deserializing file /config/data/ScheduledTasks/3145e441-d9ba-27fc-391e-7ee15face581.js 2017-11-01 18:06:46.427 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/13e82435-eb8f-2cdc-78c9-e106fb7edd05.js 2017-11-01 18:06:46.427 Debug JsonSerializer: Deserializing file /config/data/ScheduledTasks/13e82435-eb8f-2cdc-78c9-e106fb7edd05.js 2017-11-01 18:06:46.427 Info TaskManager: Daily trigger for Chapter image extraction set to fire at 11/02/2017 02:00:00, which is 473.226204266667 minutes from now. 2017-11-01 18:06:46.427 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/c623dbe7-7c91-ebed-cb4c-80409cdb79ee.js 2017-11-01 18:06:46.428 Debug JsonSerializer: Deserializing file /config/data/ScheduledTasks/c623dbe7-7c91-ebed-cb4c-80409cdb79ee.js 2017-11-01 18:06:46.428 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/c27fda37-dfb6-e39b-e141-191aaa1c3060.js 2017-11-01 18:06:46.429 Debug JsonSerializer: Deserializing file /config/data/ScheduledTasks/c27fda37-dfb6-e39b-e141-191aaa1c3060.js 2017-11-01 18:06:46.431 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/6330ee8f-b4a9-57f3-3981-f89aa78b030f.js 2017-11-01 18:06:46.442 Debug JsonSerializer: Deserializing file /config/data/ScheduledTasks/6330ee8f-b4a9-57f3-3981-f89aa78b030f.js 2017-11-01 18:06:46.443 Info TaskManager: Daily trigger for Scan media library set to fire at 11/01/2017 21:30:00, which is 203.22594265 minutes from now. 2017-11-01 18:06:46.443 Info TaskManager: Daily trigger for Scan media library set to fire at 11/01/2017 18:45:00, which is 38.22594115 minutes from now. 2017-11-01 18:06:46.443 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/1cc2f60a-05be-fec8-b153-2ac44630a00f.js 2017-11-01 18:06:46.443 Debug JsonSerializer: Deserializing file /config/data/ScheduledTasks/1cc2f60a-05be-fec8-b153-2ac44630a00f.js 2017-11-01 18:06:46.444 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/241d4fcb-19a1-d557-ee62-428e411da609.js 2017-11-01 18:06:46.444 Debug JsonSerializer: Deserializing file /config/data/ScheduledTasks/241d4fcb-19a1-d557-ee62-428e411da609.js 2017-11-01 18:06:46.444 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/1c8ede62-c521-bea0-bf85-1344f5b8ca40.js 2017-11-01 18:06:46.445 Debug JsonSerializer: Deserializing file /config/data/ScheduledTasks/1c8ede62-c521-bea0-bf85-1344f5b8ca40.js 2017-11-01 18:06:46.445 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/c3f01167-5d86-8fcc-11e2-78b847523ef5.js 2017-11-01 18:06:46.445 Debug JsonSerializer: Deserializing file /config/data/ScheduledTasks/c3f01167-5d86-8fcc-11e2-78b847523ef5.js 2017-11-01 18:06:46.446 Info TaskManager: Daily trigger for Start new log file set to fire at 11/02/2017 00:00:00, which is 353.22589835 minutes from now. 2017-11-01 18:06:46.446 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/9be21c93-4ee4-4926-9f41-b7c2b4d4d1d7.js 2017-11-01 18:06:46.446 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/9c4589c7-1219-6c27-894f-665a58cc42e3.js 2017-11-01 18:06:46.446 Debug JsonSerializer: Deserializing file /config/data/ScheduledTasks/9c4589c7-1219-6c27-894f-665a58cc42e3.js 2017-11-01 18:06:46.447 Debug JsonSerializer: Deserializing file /config/config/ScheduledTasks/8542b8a0-0478-ef9d-9a59-0e7f2e3b62da.js 2017-11-01 18:06:46.447 Debug JsonSerializer: Deserializing file /config/data/ScheduledTasks/8542b8a0-0478-ef9d-9a59-0e7f2e3b62da.js 2017-11-01 18:06:46.452 Info MediaEncoder: FFMpeg: /config/ffmpeg/20170308/ffmpeg 2017-11-01 18:06:46.452 Info MediaEncoder: FFProbe: /config/ffmpeg/20170308/ffprobe 2017-11-01 18:06:46.452 Info MediaEncoder: Validating media encoder at /config/ffmpeg/20170308/ffmpeg 2017-11-01 18:06:46.455 Info MediaEncoder: Running /config/ffmpeg/20170308/ffmpeg -decoders 2017-11-01 18:06:46.519 Info MediaEncoder: Decoder available: mpeg2video 2017-11-01 18:06:46.553 Info MediaEncoder: Decoder available: h264_cuvid 2017-11-01 18:06:46.555 Info MediaEncoder: Decoder available: hevc_cuvid 2017-11-01 18:06:46.557 Info MediaEncoder: Decoder available: mpeg2_cuvid 2017-11-01 18:06:46.560 Info MediaEncoder: Decoder available: mpeg4_cuvid 2017-11-01 18:06:46.564 Info MediaEncoder: Decoder available: vc1_cuvid 2017-11-01 18:06:46.568 Info MediaEncoder: Decoder available: vp8_cuvid 2017-11-01 18:06:46.573 Info MediaEncoder: Decoder available: vp9_cuvid 2017-11-01 18:06:46.585 Info MediaEncoder: Decoder available: ac3 2017-11-01 18:06:46.590 Info MediaEncoder: Decoder available: aac 2017-11-01 18:06:46.596 Info MediaEncoder: Decoder available: mp3 2017-11-01 18:06:46.598 Info MediaEncoder: Decoder available: h264 2017-11-01 18:06:46.600 Info MediaEncoder: Decoder available: hevc 2017-11-01 18:06:46.617 Info MediaEncoder: Running /config/ffmpeg/20170308/ffmpeg -encoders 2017-11-01 18:06:46.673 Info MediaEncoder: Encoder available: libx264 2017-11-01 18:06:46.677 Info MediaEncoder: Encoder available: mpeg4 2017-11-01 18:06:46.678 Info MediaEncoder: Encoder available: msmpeg4 2017-11-01 18:06:46.680 Info MediaEncoder: Encoder available: libvpx 2017-11-01 18:06:46.682 Info MediaEncoder: Encoder available: libvpx-vp9 2017-11-01 18:06:46.684 Info MediaEncoder: Encoder available: aac 2017-11-01 18:06:46.686 Info MediaEncoder: Encoder available: libmp3lame 2017-11-01 18:06:46.688 Info MediaEncoder: Encoder available: libopus 2017-11-01 18:06:46.691 Info MediaEncoder: Encoder available: libvorbis 2017-11-01 18:06:46.695 Info MediaEncoder: Encoder available: srt 2017-11-01 18:06:46.695 Info MediaEncoder: Encoder available: h264_nvenc 2017-11-01 18:06:46.696 Info MediaEncoder: Encoder available: hevc_nvenc 2017-11-01 18:06:46.709 Info MediaEncoder: Encoder available: h264_vaapi 2017-11-01 18:06:46.710 Info MediaEncoder: Encoder available: hevc_vaapi 2017-11-01 18:06:46.711 Info MediaEncoder: Encoder available: h264_v4l2m2m 2017-11-01 18:06:46.716 Info MediaEncoder: Encoder validation complete 2017-11-01 18:06:46.718 Info App: ServerId: 97028b5c3f4b438fa3535febca0bc913 2017-11-01 18:06:46.718 Info App: Core startup complete 2017-11-01 18:06:46.718 Info App: Post-init migrations complete 2017-11-01 18:06:46.745 Info App: Starting entry point Emby.Kodi.SyncQueue.EntryPoints.LibrarySyncNotification 2017-11-01 18:06:46.746 Info App: Emby.Kodi.SyncQueue: LibrarySyncNotification Startup... 2017-11-01 18:06:46.746 Info App: Entry point completed: Emby.Kodi.SyncQueue.EntryPoints.LibrarySyncNotification. Duration: 0.001094 seconds 2017-11-01 18:06:46.746 Info App: Starting entry point Emby.Kodi.SyncQueue.EntryPoints.UserSyncNotification 2017-11-01 18:06:46.747 Info App: Emby.Kodi.SyncQueue: UserSyncNotification Startup... 2017-11-01 18:06:46.747 Info App: Entry point completed: Emby.Kodi.SyncQueue.EntryPoints.UserSyncNotification. Duration: 0.000407 seconds 2017-11-01 18:06:46.747 Info App: Starting entry point Trakt.ServerMediator 2017-11-01 18:06:46.747 Info App: Entry point completed: Trakt.ServerMediator. Duration: 0.000236 seconds 2017-11-01 18:06:46.747 Info App: Starting entry point MediaBrowser.Api.ApiEntryPoint 2017-11-01 18:06:46.747 Info App: Entry point completed: MediaBrowser.Api.ApiEntryPoint. Duration: 3.6E-05 seconds 2017-11-01 18:06:46.747 Info App: Starting entry point MediaBrowser.WebDashboard.ServerEntryPoint 2017-11-01 18:06:46.749 Info App: Entry point completed: MediaBrowser.WebDashboard.ServerEntryPoint. Duration: 0.001135 seconds 2017-11-01 18:06:46.749 Info App: Starting entry point Emby.Server.Implementations.Activity.ActivityLogEntryPoint 2017-11-01 18:06:46.750 Info App: Entry point completed: Emby.Server.Implementations.Activity.ActivityLogEntryPoint. Duration: 0.001852 seconds 2017-11-01 18:06:46.751 Info App: Starting entry point Emby.Server.Implementations.Channels.ChannelsEntryPoint 2017-11-01 18:06:46.751 Info App: Entry point completed: Emby.Server.Implementations.Channels.ChannelsEntryPoint. Duration: 0.000757 seconds 2017-11-01 18:06:46.751 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.AutomaticRestartEntryPoint 2017-11-01 18:06:46.752 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.AutomaticRestartEntryPoint. Duration: 0.000456 seconds 2017-11-01 18:06:46.752 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.ExternalPortForwarding 2017-11-01 18:06:46.771 Debug PortMapper: Starting NAT discovery 2017-11-01 18:06:46.774 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.ExternalPortForwarding. Duration: 0.021704 seconds 2017-11-01 18:06:46.774 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.KeepServerAwake 2017-11-01 18:06:46.774 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.KeepServerAwake. Duration: 0.000203 seconds 2017-11-01 18:06:46.774 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.LibraryChangedNotifier 2017-11-01 18:06:46.775 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.LibraryChangedNotifier. Duration: 0.001276 seconds 2017-11-01 18:06:46.775 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.LoadRegistrations 2017-11-01 18:06:46.776 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.LoadRegistrations. Duration: 0.000203 seconds 2017-11-01 18:06:46.776 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.RecordingNotifier 2017-11-01 18:06:46.777 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.RecordingNotifier. Duration: 0.001171 seconds 2017-11-01 18:06:46.777 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.ServerEventNotifier 2017-11-01 18:06:46.778 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.ServerEventNotifier. Duration: 0.001471 seconds 2017-11-01 18:06:46.779 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.StartupWizard 2017-11-01 18:06:46.779 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.StartupWizard. Duration: 0.000172 seconds 2017-11-01 18:06:46.779 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.SystemEvents 2017-11-01 18:06:46.779 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.SystemEvents. Duration: 0.000486 seconds 2017-11-01 18:06:46.779 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.UdpServerEntryPoint 2017-11-01 18:06:46.783 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.UdpServerEntryPoint. Duration: 0.003129 seconds 2017-11-01 18:06:46.783 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.UsageEntryPoint 2017-11-01 18:06:46.784 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.UsageEntryPoint. Duration: 0.001173 seconds 2017-11-01 18:06:46.784 Info App: Starting entry point Emby.Server.Implementations.EntryPoints.UserDataChangeNotifier 2017-11-01 18:06:46.784 Info App: Entry point completed: Emby.Server.Implementations.EntryPoints.UserDataChangeNotifier. Duration: 0.000197 seconds 2017-11-01 18:06:46.784 Info App: Starting entry point Emby.Server.Implementations.IO.LibraryMonitorStartup 2017-11-01 18:06:46.875 Debug XmlSerializer: Deserializing file /config/root/default/Films/options.xml 2017-11-01 18:06:46.891 Debug XmlSerializer: Deserializing file /config/root/default/Series/options.xml 2017-11-01 18:06:46.891 Debug XmlSerializer: Deserializing file /config/root/default/Musiques/options.xml 2017-11-01 18:06:46.892 Info App: Entry point completed: Emby.Server.Implementations.IO.LibraryMonitorStartup. Duration: 0.107241 seconds 2017-11-01 18:06:46.892 Info App: Starting entry point Emby.Server.Implementations.LiveTv.EmbyTV.EntryPoint 2017-11-01 18:06:46.894 Info App: Loading live tv data from /config/data/livetv/timers 2017-11-01 18:06:46.895 Debug JsonSerializer: Deserializing file /config/data/livetv/timers.json 2017-11-01 18:06:46.897 Debug XmlSerializer: Deserializing file /config/config/livetv.xml 2017-11-01 18:06:46.908 Info App: Entry point completed: Emby.Server.Implementations.LiveTv.EmbyTV.EntryPoint. Duration: 0.01644 seconds 2017-11-01 18:06:46.908 Info App: Starting entry point Emby.Server.Implementations.News.NewsEntryPoint 2017-11-01 18:06:46.909 Info App: Entry point completed: Emby.Server.Implementations.News.NewsEntryPoint. Duration: 0.000198 seconds 2017-11-01 18:06:46.909 Info App: Starting entry point Emby.Server.Implementations.Notifications.Notifications 2017-11-01 18:06:46.910 Info App: Entry point completed: Emby.Server.Implementations.Notifications.Notifications. Duration: 0.00162 seconds 2017-11-01 18:06:46.911 Info App: Starting entry point Emby.Server.Implementations.Notifications.WebSocketNotifier 2017-11-01 18:06:46.911 Info App: Entry point completed: Emby.Server.Implementations.Notifications.WebSocketNotifier. Duration: 0.000706 seconds 2017-11-01 18:06:46.911 Info App: Starting entry point Emby.Server.Implementations.TV.CleanMissingEpisodesEntryPoint 2017-11-01 18:06:46.912 Info App: Entry point completed: Emby.Server.Implementations.TV.CleanMissingEpisodesEntryPoint. Duration: 0.000124 seconds 2017-11-01 18:06:46.912 Info App: Starting entry point Emby.Server.MediaEncoding.Api.ApiEntryPoint 2017-11-01 18:06:46.913 Info App: Entry point completed: Emby.Server.MediaEncoding.Api.ApiEntryPoint. Duration: 0.000873 seconds 2017-11-01 18:06:46.913 Info App: Starting entry point Emby.Dlna.DlnaProfileEntryPoint 2017-11-01 18:06:46.913 Info App: Entry point completed: Emby.Dlna.DlnaProfileEntryPoint. Duration: 3.9E-05 seconds 2017-11-01 18:06:46.913 Info App: Starting entry point Emby.Dlna.Main.DlnaEntryPoint 2017-11-01 18:06:46.918 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Default.xml 2017-11-01 18:06:46.961 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Denon AVR.xml 2017-11-01 18:06:46.963 Debug XmlSerializer: Deserializing file /config/config/dlna/system/DirecTV HD-DVR.xml 2017-11-01 18:06:46.968 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Dish Hopper-Joey.xml 2017-11-01 18:06:46.969 Debug XmlSerializer: Deserializing file /config/config/dlna/system/LG Smart TV.xml 2017-11-01 18:06:46.971 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Linksys DMA2100.xml 2017-11-01 18:06:46.972 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Marantz.xml 2017-11-01 18:06:46.972 Debug XmlSerializer: Deserializing file /config/config/dlna/system/MediaMonkey.xml 2017-11-01 18:06:46.973 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Panasonic Viera.xml 2017-11-01 18:06:46.990 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Popcorn Hour.xml 2017-11-01 18:06:46.990 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Samsung Smart TV.xml 2017-11-01 18:06:46.991 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Sharp Smart TV.xml 2017-11-01 18:06:46.992 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Sony Blu-ray Player 2013.xml 2017-11-01 18:06:46.992 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Sony Blu-ray Player 2014.xml 2017-11-01 18:06:46.993 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Sony Blu-ray Player 2015.xml 2017-11-01 18:06:46.993 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Sony Blu-ray Player 2016.xml 2017-11-01 18:06:46.994 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Sony Blu-ray Player.xml 2017-11-01 18:06:46.994 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Sony Bravia (2010).xml 2017-11-01 18:06:46.995 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Sony Bravia (2011).xml 2017-11-01 18:06:46.996 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Sony Bravia (2012).xml 2017-11-01 18:06:46.996 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Sony Bravia (2013).xml 2017-11-01 18:06:46.997 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Sony Bravia (2014).xml 2017-11-01 18:06:46.998 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Sony PlayStation 3.xml 2017-11-01 18:06:46.998 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Sony PlayStation 4.xml 2017-11-01 18:06:46.999 Debug XmlSerializer: Deserializing file /config/config/dlna/system/WDTV Live.xml 2017-11-01 18:06:47.000 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Xbox 360.xml 2017-11-01 18:06:47.000 Debug XmlSerializer: Deserializing file /config/config/dlna/system/Xbox One.xml 2017-11-01 18:06:47.001 Debug XmlSerializer: Deserializing file /config/config/dlna/system/foobar2000.xml 2017-11-01 18:06:47.003 Debug XmlSerializer: Deserializing file /config/config/dlna.xml 2017-11-01 18:06:47.048 Info App: Entry point completed: Emby.Dlna.Main.DlnaEntryPoint. Duration: 0.135304 seconds 2017-11-01 18:06:47.048 Info App: Starting entry point MediaBrowser.XbmcMetadata.EntryPoint 2017-11-01 18:06:47.048 Info App: Entry point completed: MediaBrowser.XbmcMetadata.EntryPoint. Duration: 0.000161 seconds 2017-11-01 18:06:47.049 Info App: Starting entry point Emby.Server.CinemaMode.IntrosEntryPoint 2017-11-01 18:06:47.049 Info App: Entry point completed: Emby.Server.CinemaMode.IntrosEntryPoint. Duration: 0.000108 seconds 2017-11-01 18:06:47.049 Info App: Starting entry point Emby.Security.PluginSecurityManager 2017-11-01 18:06:47.049 Info App: Entry point completed: Emby.Security.PluginSecurityManager. Duration: 4.4E-05 seconds 2017-11-01 18:06:47.049 Info App: Starting entry point Emby.Server.Connect.ConnectEntryPoint 2017-11-01 18:06:47.050 Info App: Loading data from /config/data/connect.txt 2017-11-01 18:06:47.055 Info App: Loading data from /config/data/wan.dat 2017-11-01 18:06:47.063 Info App: Entry point completed: Emby.Server.Connect.ConnectEntryPoint. Duration: 0.014128 seconds 2017-11-01 18:06:47.063 Info App: Starting entry point Emby.Server.Sync.SyncManagerEntryPoint 2017-11-01 18:06:47.066 Info App: Sqlite version: 3.18.0 2017-11-01 18:06:47.066 Info App: Sqlite compiler options: COMPILER=gcc-5.3.1 20160413,DEFAULT_SYNCHRONOUS=2,DEFAULT_WAL_SYNCHRONOUS=2,ENABLE_COLUMN_METADATA,ENABLE_DBSTAT_VTAB,ENABLE_FTS3,ENABLE_FTS3_PARENTHESIS,ENABLE_FTS5,ENABLE_JSON1,ENABLE_LOAD_EXTENSION,ENABLE_RTREE,ENABLE_UNLOCK_NOTIFY,ENABLE_UPDATE_DELETE_LIMIT,LIKE_DOESNT_MATCH_BLOBS,MAX_SCHEMA_RETRY=25,OMIT_LOOKASIDE,SECURE_DELETE,SYSTEM_MALLOC,THREADSAFE=1 2017-11-01 18:06:47.067 Info App: Default journal_mode for /config/data/sync14.db is wal 2017-11-01 18:06:47.068 Info App: PRAGMA synchronous=1 2017-11-01 18:06:47.070 Info App: Entry point completed: Emby.Server.Sync.SyncManagerEntryPoint. Duration: 0.006772 seconds 2017-11-01 18:06:47.070 Info App: Starting entry point Emby.Server.Sync.SyncNotificationEntryPoint 2017-11-01 18:06:47.070 Info App: Entry point completed: Emby.Server.Sync.SyncNotificationEntryPoint. Duration: 0.000335 seconds 2017-11-01 18:06:47.070 Info App: Starting entry point Emby.Security.PluginSecurityManager 2017-11-01 18:06:47.070 Info App: Entry point completed: Emby.Security.PluginSecurityManager. Duration: 4.4E-05 seconds 2017-11-01 18:06:47.070 Info App: All entry points have started 2017-11-01 18:06:47.154 Info Dlna: Registering publisher for urn:schemas-upnp-org:device:MediaServer:1 on 172.17.0.5 2017-11-01 18:06:47.165 Debug Dlna: Device Added MediaServer - 97028b5c3f4b438fa3535febca0bc913 - http://172.17.0.5:8096/dlna/97028b5c3f4b438fa3535febca0bc913/description.xml 2017-11-01 18:06:47.166 Debug Dlna: Rebroadcast Interval = 00:00:30, Next Broadcast At = 00:00:30 2017-11-01 18:06:47.177 Info HttpServer: HTTP GET http://172.17.0.5:8096/dlna/97028b5c3f4b438fa3535febca0bc913/description.xml. UserAgent: Linux/4.4.0-62-generic UPnP/1.0 Cling/2.0 2017-11-01 18:06:47.190 Debug Dlna: No matching device profile found. USER-AGENT=Linux/4.4.0-62-generic UPnP/1.0 Cling/2.0, Cache-Control=no-cache, Pragma=no-cache, Host=172.17.0.5:8096, Accept=text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2, Connection=keep-alive 2017-11-01 18:06:47.200 Info HttpServer: HTTP Response 200 to 172.17.0.6. Time: 24ms. http://172.17.0.5:8096/dlna/97028b5c3f4b438fa3535febca0bc913/description.xml 2017-11-01 18:06:47.202 Info HttpServer: HTTP GET http://172.17.0.5:8096/dlna/97028b5c3f4b438fa3535febca0bc913/contentdirectory/contentdirectory.xml. UserAgent: Linux/4.4.0-62-generic UPnP/1.0 Cling/2.0 2017-11-01 18:06:47.210 Info HttpServer: HTTP Response 200 to 172.17.0.6. Time: 8ms. http://172.17.0.5:8096/dlna/97028b5c3f4b438fa3535febca0bc913/contentdirectory/contentdirectory.xml 2017-11-01 18:06:47.213 Info HttpServer: HTTP GET http://172.17.0.5:8096/dlna/97028b5c3f4b438fa3535febca0bc913/connectionmanager/connectionmanager.xml. UserAgent: Linux/4.4.0-62-generic UPnP/1.0 Cling/2.0 2017-11-01 18:06:47.218 Info HttpServer: HTTP Response 200 to 172.17.0.6. Time: 5ms. http://172.17.0.5:8096/dlna/97028b5c3f4b438fa3535febca0bc913/connectionmanager/connectionmanager.xml 2017-11-01 18:06:47.413 Info HttpClient: HttpClientManager GET: http://emby.media/community/index.php?/blog/rss/1-media-browser-developers-blog 2017-11-01 18:06:49.432 Info TaskManager: StartupTrigger fired for task: Check for plugin updates 2017-11-01 18:06:49.435 Info TaskManager: Queueing task PluginUpdateTask 2017-11-01 18:06:49.442 Info TaskManager: Executing Check for plugin updates 2017-11-01 18:06:49.444 Info TaskManager: StartupTrigger fired for task: Check for application updates 2017-11-01 18:06:49.444 Info TaskManager: Queueing task SystemUpdateTask 2017-11-01 18:06:49.444 Info TaskManager: Executing Check for application updates 2017-11-01 18:06:49.453 Info InstallationManager: Opening /config/cache/serverpackages.json 2017-11-01 18:06:49.512 Debug App: No application update available. 2017-11-01 18:06:49.513 Info TaskManager: Check for application updates Completed after 0 minute(s) and 0 seconds 2017-11-01 18:06:49.524 Info HttpClient: HttpClientManager.GetTempFileResponse url: https://www.mb3admin.com/admin/service/EmbyPackages.json 2017-11-01 18:06:49.527 Info TaskManager: ExecuteQueuedTasks 2017-11-01 18:06:49.549 Info TaskManager: Check for plugin updates Completed after 0 minute(s) and 0 seconds 2017-11-01 18:06:49.549 Info TaskManager: ExecuteQueuedTasks I have you got any idea about this issue?
×
×
  • Create New...