Transmission-daemon keeps resetting

25,494

Solution 1

Transmission daemon re-writes the configuration file with the old options when it exits. To make your changes persist, you need to edit the configuration file without the deamon running. So first:

sudo stop transmission-daemon

Or if you did not install it via Software Center / Official repositories:

sudo killall -HUP transmission-da

Afterwards you can edit settings.json as you would expect and then restart transmission:

sudo start transmission-daemon 

Solution 2

Edit /var/lib/transmission-daemon/.config/transmission-daemon/settings.json which seems to be file which is copied after every restart of the systemd unit transmission-daemon.service. I didn't find a reference, but a simple test confirms.

Share:
25,494

Related videos on Youtube

AcidRod75
Author by

AcidRod75

Senior System Analist and absolute fan of Debian Distros, specially Ubuntu.

Updated on September 18, 2022

Comments

  • AcidRod75
    AcidRod75 almost 2 years

    i have been trying to configure transmission-daemon so i can connect using the webui avaliable at http://server.ip-address:9091 , but i just get a message telling me that i should either disable the ip address whitelist or add my current ip to it.

    I edited the file avaliable at /etc/transmission-daemon/settings.json and modify the rpc-whitelist-enabled parameter to false, save the file and restart the service with: sudo service transmission-daemon restart. After that i double-check the settings.json i just modified just to discover that all my changes have been undone. What is goin on here?, any one else have seen this behaviour before?

    • AcidRod75
      AcidRod75 over 11 years
      Okay... just discovered what was going on, if you edit the settings.json file you must restart the service with: sudo invoke-rc.d transmission-daemon reload
    • con-f-use
      con-f-use over 11 years
      Transmission daemon rewirtes the config file on exit. To edit it without overwrite you have to sudo service transmission-daemon stop before editing.
    • Nitz
      Nitz over 10 years
      @con-f-use Please put your comment as an answer. It deserves to be accepted as the correct response.
  • user3836415
    user3836415 almost 5 years
    editing both didn't resolve my issue. even when the service had been stopped.