@shdwkeeper
That's not the correct Channels DVR directory.
The correct one is where the Channels DVR executable files and log file are kept.
Are you running your Channels DVR Server in a docker container?
If you're running Channels DVR Server in a docker container, you'll see these in the DVR log
[SYS] Starting Channels DVR v2024.12.27.0121 (linux-x86_64 pid:7) in 2024/12/30 00:55:05.910018 [SYS] Starting Channels DVR v2024.12.27.0121 (linux-x86_64 pid:7) in /channels-dvr/data
The Channels DVR directory for the executable and log file is /channels-dvr
in the container
You have to look at your docker volume mapping to see what host directory you mapped that to.
version: '3.9'
services:
# Docker container home: https://hub.docker.com/r/fancybits/channels-dvr
# image uses host mode networking and port is specified by env variable CHANNELS_PORT
channels-dvr-tve:
image: fancybits/channels-dvr:tve # use :tve tag, not :latest
container_name: channels-dvr-tve
network_mode: "host" # must run in host, not bridge mode
devices:
- "/dev/dri:/dev/dri" # to enable hardware transcoding
environment:
- CHANNELS_PORT=8089 # MODIFY the host port number to use
- TZ=America/Los_Angeles # MODIFY your local timezone in standard linux format
volumes:
- "/volume1/docker/channels-dvr-tve:/channels-dvr" # Channels DVR executables and log directory
- "/volume1/ChDVRtve:/shares/dvr" # MODIFY Channels DVR recording directory
- "/volume1/arkives/importtest:/shares/imports:ro" # Add volumes for local content import directories
restart: unless-stopped
In my case, I mapped that to my host directory /volume1/docker/channels-dvr-tve
, so I would use that directory as ${LOGS_SHARE}
LOGS_SHARE=/volume1/docker/channels-dvr-tve
If you're not running Channels DVR in a docker container the DVR log entry will tell you the host directory.
[SYS] Starting Channels DVR v2024.12.27.0121 (linux-x86_64 pid:7) in 2024/12/30 00:55:05.910018 [SYS] Starting Channels DVR v2024.12.27.0121 (linux-x86_64 pid:7) in /volume1/@appstore/ChannelsDVR/channels-dvr-tve/data
In my case, I would use the directory /volume1/@appstore/ChannelsDVR/channels-dvr-tve
as ${LOGS_SHARE}
LOGS_SHARE=/volume1/@appstore/ChannelsDVR/channels-dvr-tve
If that helps, maybe bnhf could add this to his documentation.