You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
does anyone know how to turn on --logfile flag on the docker image linuxserver/transmission?
I've been trying by several ways, but nothing so far
this is what i've tried:
add logfile to setttings.json:
"logfile": "/tmp/transmission.log",
mount the edited file under: /run/service/svc-transmission/run
but I'm getting this error when running the container (seems it's because /run is to store temporary files:
s6-rmrf: fatal: unable to remove /run/s6: Resource busy
s6-overlay-suexec: fatal: child failed with exit code 111
edited the cmd in docker compose:
but seems because is using s6 supervisor and not the transmission daemon it does not recognise the --logfile flag
Has anyone been through this before? I would really appreciate some help.
The text was updated successfully, but these errors were encountered:
does anyone know how to turn on --logfile flag on the docker image linuxserver/transmission?
I've been trying by several ways, but nothing so far
this is what i've tried:
add logfile to setttings.json:
"logfile": "/tmp/transmission.log",
mount the edited file under: /run/service/svc-transmission/run
but I'm getting this error when running the container (seems it's because /run is to store temporary files:
s6-rmrf: fatal: unable to remove /run/s6: Resource busy
s6-overlay-suexec: fatal: child failed with exit code 111
edited the cmd in docker compose:
but seems because is using s6 supervisor and not the transmission daemon it does not recognise the --logfile flag
Has anyone been through this before? I would really appreciate some help.
Ive had issues with editing the settings.json file before. I think it was because I hadnt shut down the container before editing the settings.json file. The settings.json file has -rw------- permissions for me, so make sure that and ownership dont change when you edit the file.
If that doesnt work, you could try modifying the /usr/bin/transmission-daemon command the s6 supervisor calls.
Hi everyone,
does anyone know how to turn on --logfile flag on the docker image linuxserver/transmission?
I've been trying by several ways, but nothing so far
this is what i've tried:
"logfile": "/tmp/transmission.log",
but I'm getting this error when running the container (seems it's because /run is to store temporary files:
s6-rmrf: fatal: unable to remove /run/s6: Resource busy
s6-overlay-suexec: fatal: child failed with exit code 111
but seems because is using s6 supervisor and not the transmission daemon it does not recognise the --logfile flag
Has anyone been through this before? I would really appreciate some help.
The text was updated successfully, but these errors were encountered: