Install Transmission torrent client on Ubuntu Server

To install transmission torrent client on Ubuntu, run

apt install transmission-cli transmission-common transmission-daemon

Before you can configure transmission-deamon, you need to stop it.

service transmission-daemon stop

Edit configuration file

vi /var/lib/transmission-daemon/info/settings.json

Once edited, start transmission-deamon with

service transmission-daemon start

Settings Password

Default user and password is “transmission”.

You can modify it by editing config file

"rpc-password": "{62b16db87b89a91dd49a5110a7cafc06d20eb4f2wtK6kqPj",
"rpc-username": "transmission",

Password you can use plain text. Transmission will convert it to SHA1 encrypted format on startup,

Allow remote access

You need to put your IP

"rpc-whitelist": "127.0.0.1,192.168.*.*",

Only white listed IP can access the web interface.

Download folder

By default download will be stored in folder

"download-dir": "/var/lib/transmission-daemon/downloads",

You can modify this folder as required.

Web interface

Transmission web client

Web interface can be accessed using port 9091.

http://SERVER-IP:9091

Comments

4 responses to “Install Transmission torrent client on Ubuntu Server”

  1. Praveen Avatar
    Praveen

    Installed on aws.
    Problem – no file access after torrent download.
    How can I download my transfered files~

    1. ServerOk Avatar
      ServerOk

      Files will get stored in folder /var/lib/transmission/Downloads, you can use SFTP client to connect to server and download the file.

  2. Red joker Avatar
    Red joker

    I downloaded the torrents but I need a way to access them using a website
    Not an sftp server
    I want something simple like
    http://192.162.1.22/downloads or http://192.162.1.22:81/downloads
    something like a portal to redirect me to all my downloads that I can access anywhere
    Please help me out…have looked allover the Internet

    1. ServerOk Avatar
      ServerOk

      You can install a web server like apache or nginx on the server, set document root to downloads folder.

Leave a Reply

Your email address will not be published. Required fields are marked *