Skip to content

Latest commit

 

History

History
64 lines (51 loc) · 1.16 KB

tautulli.md

File metadata and controls

64 lines (51 loc) · 1.16 KB

Tautulli

Monitor for Plex Media Server.


docker-compose.yml

---
version: '3'
services:
  tautuli:
    image: tautulli/tautulli
    container_name: tautuli
    restart: unless-stopped
    environment:
      - TZ=Europe/Dublin
    ports:
      - "8181:8181"
    volumes:
      - ./config:/config/
      - /mnt/plex:/plex_logs:ro

Tips & Tricks

Mount external server with Plex (e.g. synology NAS)

  1. Edit fstab file: sudo nano /etc/fstab
  2. Add line
<SERVER IP>:/volume1/Plex/Library/Application\040Support/Plex\040Media\040Server/Logs /mnt/plex nfs ro,hard,intr,nolock 0 0

Troubleshooting

libcgroup1

This lib may need to be installed:

apt-get install libcgroup1

Mountpoint for devices not found

  1. Edit grub
    sudo nano /etc/default/grub
  2. Change GRUB_CMDLINE_LINUX value to the below:
    GRUB_CMDLINE_LINUX="systemd.unified_cgroup_hierarchy=0"
  3. Then run:
    grub2-mkconfig
    sudo reboot