self-hosted-cookbook/apps/media/tautulli.md
Tomasz Borychowski 5f5e69df77 media
2020-10-30 14:29:30 +00:00

1.2 KiB

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