SlideShare une entreprise Scribd logo
1  sur  6
Télécharger pour lire hors ligne
Archive of “Mencatat Info” www.mencatat.info 
How to Run Multiple Instances of Transmission Daemon Server © Mencatat Info 2014 
How to Run Multiple Instances of Transmission Daemon in Linux Debian or Ubuntu 
By : Gusti Tammam ( tammam@mencatat.info ) 
Translation by Google Translate | Please contribute for better translation, send email to translate@mencatat.info 
Introduction 
ransmission is the most popular torrent client used by linux vps users. Apart from the view that a simple, easy and elegant, most users use transmission because the installation is not so complicated. 
Tranmission is equipped with a built-in web server with the default port is 9091. Through that port We can access the web interface of the transmission through our favorite web browser. Usually the structures that we need to enter the URL in the web browser when they want to access the transmission is as follows: {server ip or domain: port transmission}. 
And the picture below shows what the web interface of the transmission look like. 
T 
Example : 
 Our server has an IP 123.45.678.9 and its domain is www.doma.in 
 And transmission running on port 9091 
So we can access transmission with enter this URL below to web browser : 
 http://123.45.678.9:9091 
 http://www.doma.in:9091
Archive of “Mencatat Info” www.mencatat.info 
How to Run Multiple Instances of Transmission Daemon Server © Mencatat Info 2014 
In general, in a server, there is only one transmission is running. But in fact you can also run multiple transmissions simultaneously in a single server. Here is the reason why people need to run multiple transmissions at the same time in a single server: 
 Want to share a server with friends or relatives 
 Want to sell leechbox 
 Need privacy when using transmission for multiple user 
 Etc. 
In this article, we discuss the steps to run the multi-transmission in a single server with the following steps: 
1. Install transmission 
2. Make sure the transmission is turned off 
3. Perform duplicate configuration files 
4. Perform configuration on each file that was copied 
5. Turning on all of transmissions 
6. Done
Archive of “Mencatat Info” www.mencatat.info 
How to Run Multiple Instances of Transmission Daemon Server © Mencatat Info 2014 
Explanation 
Installation of Transmission Daemon 
I assume transmission was not installed in your server , therefore please do the installation as follows: 
# add-apt-repository ppa:transmissionbt/ppa 
# apt-get update 
# apt-get install transmission-daemon 
Make Sure The Transmission is Turned Off 
To check the status of the transmission-daemon, please run the following command: 
# /etc/init.d/transmission-daemon status If output is : [ ok ] transmission-daemon is running. That means transmission is active. So, you need to turn it off first with the following command : 
# /etc/init.d/transmission-daemon stop So it would appear the output [ ok ] Stopping bittorrent daemon: transmission- daemon. That means transmission-daemon would be turned off. And when you check the status back, the output message is [FAIL] transmission-daemon is not running ... failed! 
Duplicate the Configuration File 
To run more than one transmission, we need to duplicate original transmission configuration files. The files will be copied are: 
 /usr/bin/transmission-daemon 
 /etc/init.d/transmission-daemon 
 /var/lib/transmission-daemon 
 /etc/transmission-daemon 
 /etc/default/transmission-daemon 
The command below will duplicate the files from the transmission-daemon to the transmission-daemon2 
# cp /usr/bin/transmission-daemon /usr/bin/transmission-daemon2 
# cp /etc/init.d/transmission-daemon /etc/init.d/transmission-daemon2 
# cp -a /var/lib/transmission-daemon /var/lib/transmission-daemon2 
# cp -a /etc/transmission-daemon /etc/transmission-daemon2 
# cp /etc/default/transmission-daemon /etc/default/transmission-daemon2 
# chmod –R 777 /usr/bin/transmission-daemon2 
# chmod –R 777 /etc/init.d/transmission-daemon2 
# chmod –R 777 /var/lib/transmission-daemon2 
# chmod –R 777 /etc/transmission-daemon2 
# chmod –R 777 /etc/default/transmission-daemon2
Archive of “Mencatat Info” www.mencatat.info 
How to Run Multiple Instances of Transmission Daemon Server © Mencatat Info 2014 
Then create a symbolic link with the following command: 
# ln -sf /etc/transmission-daemon2/settings.json /var/lib/transmission-daemon2/info/settings.json 
Perform configuration on Duplicate Files in Earlier 
Edit file /etc/init.d/transmission-daemon2 : 
Find this word 
NAME = transmission-daemon 
Change into this 
NAME = transmission-daemon2 
Edit file /etc/transmission-daemon2/settings.json : 
To change the download directory, Find this word 
"download-dir": "/var/lib/transmission-daemon/downloads" 
Change into this 
"download-dir": "path to the download directory for transmission-daemon2" 
To change the peer-port, Find this word 
peer-port ": 51413, 
Increase the value of peer-port 1 level (peer-port should not be the same for each transmission, within a single server) 
peer-port ": 51414, 
To change the password, Find this word 
"rpc-password": "{745678907320987632076238d58a4510eda06ff7sCZfdZ", 
Change into this 
"rpc-password": "desire-new-password", 
To change the username, Find this word 
"rpc-username": "transmission", 
Change into this 
"rpc-username": "desire-new-user", 
To change the port transmission, Find this word 
rpc-port ": 9091, 
Increase the value of rpc-port 1 level (rpc-port should not be the same for each transmission, within a single server) 
rpc-port ": 9092, 
To open access to all IP, Find this word 
"rpc-whitelist-enabled": true, 
Change into this 
"rpc-whitelist-enabled": false, 
Edit file /etc/default/transmission-daemon2 : 
Find this word 
CONFIG_DIR="/var/lib/transmission-daemon/info" 
Change into this 
CONFIG_DIR="/var/lib/transmission-daemon2/info"
Archive of “Mencatat Info” www.mencatat.info 
How to Run Multiple Instances of Transmission Daemon Server © Mencatat Info 2014 
Running Up All Transmission 
Before re-run all transmission, we need to add a rule to the transmission-daemon2 that we just created earlier. 
The command below will make transmission-daemon2 automcally run when server starting up : 
# update-rc.d transmission-daemon2 defaults 
Now do the following command to activate all transmission-daemon: 
/etc/init.d/transmission-daemon start 
/etc/init.d/transmission-daemon2 start 
Done 
Finally reached the final stage, ie access via a browser: 
To access the transmission 1, please go to the URL: http: // ip-or-domain-server: 9091 
To access the transmission 2, please go to the URL: http: // ip-or-domain-server: 9092 
Conclusion 
 In principle to run multiple transmissions simultaneously is duplicating the configuration file, just do not get there the same configuration or overlapping. So you need to do the editing on some configuration files after menduplikatnya. 
 By doing the above methods, you can run a lot of transmission in the server as much as you want, just do not forget to pay attention to the ability of the server. Was it able to run a lot of transmission.
Archive of “Mencatat Info” www.mencatat.info 
How to Run Multiple Instances of Transmission Daemon Server © Mencatat Info 2014 
References 
 http://ubuntuforums.org/showthread.php?t=1605906 
General Discussion and Questions 
Please send an email to tammam@mencatat.info

Contenu connexe

Tendances (20)

Ftp hari edu
Ftp hari eduFtp hari edu
Ftp hari edu
 
Configuration of NTP Server on CentOS 8
Configuration of NTP Server on CentOS 8Configuration of NTP Server on CentOS 8
Configuration of NTP Server on CentOS 8
 
Ftp tftp
Ftp tftpFtp tftp
Ftp tftp
 
File Sever
File SeverFile Sever
File Sever
 
Ftp server
Ftp serverFtp server
Ftp server
 
Upload files-to-zenterprise-server-via-ftp
Upload files-to-zenterprise-server-via-ftpUpload files-to-zenterprise-server-via-ftp
Upload files-to-zenterprise-server-via-ftp
 
Using an FTP client - Client server computing
Using an FTP client -  Client server computingUsing an FTP client -  Client server computing
Using an FTP client - Client server computing
 
Samba power point presentation
Samba power point presentationSamba power point presentation
Samba power point presentation
 
Rhel4
Rhel4Rhel4
Rhel4
 
Presentation on samba server
Presentation on samba serverPresentation on samba server
Presentation on samba server
 
Lession2 Xinetd
Lession2 XinetdLession2 Xinetd
Lession2 Xinetd
 
Ltsp talk
Ltsp talkLtsp talk
Ltsp talk
 
FTP Client and Server | Computer Science
FTP Client and Server | Computer ScienceFTP Client and Server | Computer Science
FTP Client and Server | Computer Science
 
Ftp
FtpFtp
Ftp
 
Postfix
PostfixPostfix
Postfix
 
FTP
FTPFTP
FTP
 
Cloud Compt
Cloud ComptCloud Compt
Cloud Compt
 
2. reverse primarydns using bind for ptr and cname record ipv4
2. reverse primarydns using bind for ptr and cname record ipv42. reverse primarydns using bind for ptr and cname record ipv4
2. reverse primarydns using bind for ptr and cname record ipv4
 
Meeting 9 samba
Meeting 9   sambaMeeting 9   samba
Meeting 9 samba
 
Massive emailing with Linux, Postfix and Ruby on Rails
Massive emailing with Linux, Postfix and Ruby on RailsMassive emailing with Linux, Postfix and Ruby on Rails
Massive emailing with Linux, Postfix and Ruby on Rails
 

Similaire à How to run multiple instances of transmission daemon in linux debian or ubuntu

Ftp (file transfer protocol)
Ftp (file transfer protocol)Ftp (file transfer protocol)
Ftp (file transfer protocol)Raghu nath
 
Ftp configuration in rhel7
Ftp configuration in rhel7Ftp configuration in rhel7
Ftp configuration in rhel7Balamurugan M
 
Installation And Configuration Of DNS, Web And FTP Servers On Virtual Machine...
Installation And Configuration Of DNS, Web And FTP Servers On Virtual Machine...Installation And Configuration Of DNS, Web And FTP Servers On Virtual Machine...
Installation And Configuration Of DNS, Web And FTP Servers On Virtual Machine...JohnWilson47710
 
File Transfer Protocol
File Transfer ProtocolFile Transfer Protocol
File Transfer ProtocolOm Prakash
 
Dc10 beale-attackdefendunix
Dc10 beale-attackdefendunixDc10 beale-attackdefendunix
Dc10 beale-attackdefendunixPriya Kelkar
 
EMSC1515104 Shehansuhail
EMSC1515104 ShehansuhailEMSC1515104 Shehansuhail
EMSC1515104 ShehansuhailMohomed Shehan
 
FreeBSD, ipfw and OpenVPN 2.1 server
FreeBSD, ipfw and OpenVPN 2.1 serverFreeBSD, ipfw and OpenVPN 2.1 server
FreeBSD, ipfw and OpenVPN 2.1 serverTomaz Muraus
 
Getting started with Mantl
Getting started with MantlGetting started with Mantl
Getting started with MantlPhil Cryer
 
Linux internet server security and configuration tutorial
Linux internet server security and configuration tutorialLinux internet server security and configuration tutorial
Linux internet server security and configuration tutorialannik147
 
Configuration of SFTP Server on CentOS 8.pdf
Configuration of SFTP Server on CentOS 8.pdfConfiguration of SFTP Server on CentOS 8.pdf
Configuration of SFTP Server on CentOS 8.pdfKaan Aslandağ
 
Linux corporate-training-in-mumbai
Linux corporate-training-in-mumbaiLinux corporate-training-in-mumbai
Linux corporate-training-in-mumbaiUnmesh Baile
 
Lamp Server With Drupal Installation
Lamp Server With Drupal InstallationLamp Server With Drupal Installation
Lamp Server With Drupal Installationfranbow
 
[MathWorks] Versioning Infrastructure
[MathWorks] Versioning Infrastructure[MathWorks] Versioning Infrastructure
[MathWorks] Versioning InfrastructurePerforce
 
Rakesh Kaushik
Rakesh KaushikRakesh Kaushik
Rakesh Kaushikitplant
 
An Express Guide ~ SNMP for Secure Rremote Resource Monitoring
An Express Guide ~ SNMP for Secure Rremote Resource MonitoringAn Express Guide ~ SNMP for Secure Rremote Resource Monitoring
An Express Guide ~ SNMP for Secure Rremote Resource MonitoringAbhishek Kumar
 
Free radius billing server with practical vpn exmaple
Free radius billing server with practical vpn exmapleFree radius billing server with practical vpn exmaple
Free radius billing server with practical vpn exmapleChanaka Lasantha
 

Similaire à How to run multiple instances of transmission daemon in linux debian or ubuntu (20)

Ftp (file transfer protocol)
Ftp (file transfer protocol)Ftp (file transfer protocol)
Ftp (file transfer protocol)
 
Ftp configuration in rhel7
Ftp configuration in rhel7Ftp configuration in rhel7
Ftp configuration in rhel7
 
Installation And Configuration Of DNS, Web And FTP Servers On Virtual Machine...
Installation And Configuration Of DNS, Web And FTP Servers On Virtual Machine...Installation And Configuration Of DNS, Web And FTP Servers On Virtual Machine...
Installation And Configuration Of DNS, Web And FTP Servers On Virtual Machine...
 
File Transfer Protocol
File Transfer ProtocolFile Transfer Protocol
File Transfer Protocol
 
Dc10 beale-attackdefendunix
Dc10 beale-attackdefendunixDc10 beale-attackdefendunix
Dc10 beale-attackdefendunix
 
Openvpn
OpenvpnOpenvpn
Openvpn
 
EMSC1515104 Shehansuhail
EMSC1515104 ShehansuhailEMSC1515104 Shehansuhail
EMSC1515104 Shehansuhail
 
FreeBSD, ipfw and OpenVPN 2.1 server
FreeBSD, ipfw and OpenVPN 2.1 serverFreeBSD, ipfw and OpenVPN 2.1 server
FreeBSD, ipfw and OpenVPN 2.1 server
 
Getting started with Mantl
Getting started with MantlGetting started with Mantl
Getting started with Mantl
 
Linux internet server security and configuration tutorial
Linux internet server security and configuration tutorialLinux internet server security and configuration tutorial
Linux internet server security and configuration tutorial
 
Configuration of SFTP Server on CentOS 8.pdf
Configuration of SFTP Server on CentOS 8.pdfConfiguration of SFTP Server on CentOS 8.pdf
Configuration of SFTP Server on CentOS 8.pdf
 
Unix
UnixUnix
Unix
 
Linux corporate-training-in-mumbai
Linux corporate-training-in-mumbaiLinux corporate-training-in-mumbai
Linux corporate-training-in-mumbai
 
grate techniques
grate techniquesgrate techniques
grate techniques
 
Lamp Server With Drupal Installation
Lamp Server With Drupal InstallationLamp Server With Drupal Installation
Lamp Server With Drupal Installation
 
[MathWorks] Versioning Infrastructure
[MathWorks] Versioning Infrastructure[MathWorks] Versioning Infrastructure
[MathWorks] Versioning Infrastructure
 
Rakesh Kaushik
Rakesh KaushikRakesh Kaushik
Rakesh Kaushik
 
An Express Guide ~ SNMP for Secure Rremote Resource Monitoring
An Express Guide ~ SNMP for Secure Rremote Resource MonitoringAn Express Guide ~ SNMP for Secure Rremote Resource Monitoring
An Express Guide ~ SNMP for Secure Rremote Resource Monitoring
 
FILE SERVER
FILE SERVERFILE SERVER
FILE SERVER
 
Free radius billing server with practical vpn exmaple
Free radius billing server with practical vpn exmapleFree radius billing server with practical vpn exmaple
Free radius billing server with practical vpn exmaple
 

Plus de Aditya Gusti Tammam

Mengaktifkan Fitur Multi-Currency Pada Odoo 12.0 Community Edition
Mengaktifkan Fitur Multi-Currency Pada Odoo 12.0 Community EditionMengaktifkan Fitur Multi-Currency Pada Odoo 12.0 Community Edition
Mengaktifkan Fitur Multi-Currency Pada Odoo 12.0 Community EditionAditya Gusti Tammam
 
Fungsi Hash & Algoritma SHA-256 - Presentation
Fungsi Hash & Algoritma SHA-256 - PresentationFungsi Hash & Algoritma SHA-256 - Presentation
Fungsi Hash & Algoritma SHA-256 - PresentationAditya Gusti Tammam
 
Cara mengetahui pihak mana yang memproduksi film - masTamm 2014
Cara mengetahui  pihak mana yang memproduksi film - masTamm 2014Cara mengetahui  pihak mana yang memproduksi film - masTamm 2014
Cara mengetahui pihak mana yang memproduksi film - masTamm 2014Aditya Gusti Tammam
 
Pengertian pseudo code dan contohnya
Pengertian pseudo code dan contohnyaPengertian pseudo code dan contohnya
Pengertian pseudo code dan contohnyaAditya Gusti Tammam
 
Jaringan komputer dan komunikasi data
Jaringan komputer dan komunikasi dataJaringan komputer dan komunikasi data
Jaringan komputer dan komunikasi dataAditya Gusti Tammam
 
Pengertian, Fungsi, dan Contoh dari Hardware dan Software
Pengertian, Fungsi, dan Contoh dari Hardware dan SoftwarePengertian, Fungsi, dan Contoh dari Hardware dan Software
Pengertian, Fungsi, dan Contoh dari Hardware dan SoftwareAditya Gusti Tammam
 
Cara membuat link dengan dua halaman tujuan
Cara membuat link dengan dua halaman tujuanCara membuat link dengan dua halaman tujuan
Cara membuat link dengan dua halaman tujuanAditya Gusti Tammam
 

Plus de Aditya Gusti Tammam (9)

Mengaktifkan Fitur Multi-Currency Pada Odoo 12.0 Community Edition
Mengaktifkan Fitur Multi-Currency Pada Odoo 12.0 Community EditionMengaktifkan Fitur Multi-Currency Pada Odoo 12.0 Community Edition
Mengaktifkan Fitur Multi-Currency Pada Odoo 12.0 Community Edition
 
Fungsi Hash & Algoritma SHA-256
Fungsi Hash & Algoritma SHA-256Fungsi Hash & Algoritma SHA-256
Fungsi Hash & Algoritma SHA-256
 
Fungsi Hash & Algoritma SHA-256 - Presentation
Fungsi Hash & Algoritma SHA-256 - PresentationFungsi Hash & Algoritma SHA-256 - Presentation
Fungsi Hash & Algoritma SHA-256 - Presentation
 
Bagaimana Torrent Bekerja
Bagaimana Torrent BekerjaBagaimana Torrent Bekerja
Bagaimana Torrent Bekerja
 
Cara mengetahui pihak mana yang memproduksi film - masTamm 2014
Cara mengetahui  pihak mana yang memproduksi film - masTamm 2014Cara mengetahui  pihak mana yang memproduksi film - masTamm 2014
Cara mengetahui pihak mana yang memproduksi film - masTamm 2014
 
Pengertian pseudo code dan contohnya
Pengertian pseudo code dan contohnyaPengertian pseudo code dan contohnya
Pengertian pseudo code dan contohnya
 
Jaringan komputer dan komunikasi data
Jaringan komputer dan komunikasi dataJaringan komputer dan komunikasi data
Jaringan komputer dan komunikasi data
 
Pengertian, Fungsi, dan Contoh dari Hardware dan Software
Pengertian, Fungsi, dan Contoh dari Hardware dan SoftwarePengertian, Fungsi, dan Contoh dari Hardware dan Software
Pengertian, Fungsi, dan Contoh dari Hardware dan Software
 
Cara membuat link dengan dua halaman tujuan
Cara membuat link dengan dua halaman tujuanCara membuat link dengan dua halaman tujuan
Cara membuat link dengan dua halaman tujuan
 

Dernier

ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024SynarionITSolutions
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesBoston Institute of Analytics
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 

Dernier (20)

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 

How to run multiple instances of transmission daemon in linux debian or ubuntu

  • 1. Archive of “Mencatat Info” www.mencatat.info How to Run Multiple Instances of Transmission Daemon Server © Mencatat Info 2014 How to Run Multiple Instances of Transmission Daemon in Linux Debian or Ubuntu By : Gusti Tammam ( tammam@mencatat.info ) Translation by Google Translate | Please contribute for better translation, send email to translate@mencatat.info Introduction ransmission is the most popular torrent client used by linux vps users. Apart from the view that a simple, easy and elegant, most users use transmission because the installation is not so complicated. Tranmission is equipped with a built-in web server with the default port is 9091. Through that port We can access the web interface of the transmission through our favorite web browser. Usually the structures that we need to enter the URL in the web browser when they want to access the transmission is as follows: {server ip or domain: port transmission}. And the picture below shows what the web interface of the transmission look like. T Example :  Our server has an IP 123.45.678.9 and its domain is www.doma.in  And transmission running on port 9091 So we can access transmission with enter this URL below to web browser :  http://123.45.678.9:9091  http://www.doma.in:9091
  • 2. Archive of “Mencatat Info” www.mencatat.info How to Run Multiple Instances of Transmission Daemon Server © Mencatat Info 2014 In general, in a server, there is only one transmission is running. But in fact you can also run multiple transmissions simultaneously in a single server. Here is the reason why people need to run multiple transmissions at the same time in a single server:  Want to share a server with friends or relatives  Want to sell leechbox  Need privacy when using transmission for multiple user  Etc. In this article, we discuss the steps to run the multi-transmission in a single server with the following steps: 1. Install transmission 2. Make sure the transmission is turned off 3. Perform duplicate configuration files 4. Perform configuration on each file that was copied 5. Turning on all of transmissions 6. Done
  • 3. Archive of “Mencatat Info” www.mencatat.info How to Run Multiple Instances of Transmission Daemon Server © Mencatat Info 2014 Explanation Installation of Transmission Daemon I assume transmission was not installed in your server , therefore please do the installation as follows: # add-apt-repository ppa:transmissionbt/ppa # apt-get update # apt-get install transmission-daemon Make Sure The Transmission is Turned Off To check the status of the transmission-daemon, please run the following command: # /etc/init.d/transmission-daemon status If output is : [ ok ] transmission-daemon is running. That means transmission is active. So, you need to turn it off first with the following command : # /etc/init.d/transmission-daemon stop So it would appear the output [ ok ] Stopping bittorrent daemon: transmission- daemon. That means transmission-daemon would be turned off. And when you check the status back, the output message is [FAIL] transmission-daemon is not running ... failed! Duplicate the Configuration File To run more than one transmission, we need to duplicate original transmission configuration files. The files will be copied are:  /usr/bin/transmission-daemon  /etc/init.d/transmission-daemon  /var/lib/transmission-daemon  /etc/transmission-daemon  /etc/default/transmission-daemon The command below will duplicate the files from the transmission-daemon to the transmission-daemon2 # cp /usr/bin/transmission-daemon /usr/bin/transmission-daemon2 # cp /etc/init.d/transmission-daemon /etc/init.d/transmission-daemon2 # cp -a /var/lib/transmission-daemon /var/lib/transmission-daemon2 # cp -a /etc/transmission-daemon /etc/transmission-daemon2 # cp /etc/default/transmission-daemon /etc/default/transmission-daemon2 # chmod –R 777 /usr/bin/transmission-daemon2 # chmod –R 777 /etc/init.d/transmission-daemon2 # chmod –R 777 /var/lib/transmission-daemon2 # chmod –R 777 /etc/transmission-daemon2 # chmod –R 777 /etc/default/transmission-daemon2
  • 4. Archive of “Mencatat Info” www.mencatat.info How to Run Multiple Instances of Transmission Daemon Server © Mencatat Info 2014 Then create a symbolic link with the following command: # ln -sf /etc/transmission-daemon2/settings.json /var/lib/transmission-daemon2/info/settings.json Perform configuration on Duplicate Files in Earlier Edit file /etc/init.d/transmission-daemon2 : Find this word NAME = transmission-daemon Change into this NAME = transmission-daemon2 Edit file /etc/transmission-daemon2/settings.json : To change the download directory, Find this word "download-dir": "/var/lib/transmission-daemon/downloads" Change into this "download-dir": "path to the download directory for transmission-daemon2" To change the peer-port, Find this word peer-port ": 51413, Increase the value of peer-port 1 level (peer-port should not be the same for each transmission, within a single server) peer-port ": 51414, To change the password, Find this word "rpc-password": "{745678907320987632076238d58a4510eda06ff7sCZfdZ", Change into this "rpc-password": "desire-new-password", To change the username, Find this word "rpc-username": "transmission", Change into this "rpc-username": "desire-new-user", To change the port transmission, Find this word rpc-port ": 9091, Increase the value of rpc-port 1 level (rpc-port should not be the same for each transmission, within a single server) rpc-port ": 9092, To open access to all IP, Find this word "rpc-whitelist-enabled": true, Change into this "rpc-whitelist-enabled": false, Edit file /etc/default/transmission-daemon2 : Find this word CONFIG_DIR="/var/lib/transmission-daemon/info" Change into this CONFIG_DIR="/var/lib/transmission-daemon2/info"
  • 5. Archive of “Mencatat Info” www.mencatat.info How to Run Multiple Instances of Transmission Daemon Server © Mencatat Info 2014 Running Up All Transmission Before re-run all transmission, we need to add a rule to the transmission-daemon2 that we just created earlier. The command below will make transmission-daemon2 automcally run when server starting up : # update-rc.d transmission-daemon2 defaults Now do the following command to activate all transmission-daemon: /etc/init.d/transmission-daemon start /etc/init.d/transmission-daemon2 start Done Finally reached the final stage, ie access via a browser: To access the transmission 1, please go to the URL: http: // ip-or-domain-server: 9091 To access the transmission 2, please go to the URL: http: // ip-or-domain-server: 9092 Conclusion  In principle to run multiple transmissions simultaneously is duplicating the configuration file, just do not get there the same configuration or overlapping. So you need to do the editing on some configuration files after menduplikatnya.  By doing the above methods, you can run a lot of transmission in the server as much as you want, just do not forget to pay attention to the ability of the server. Was it able to run a lot of transmission.
  • 6. Archive of “Mencatat Info” www.mencatat.info How to Run Multiple Instances of Transmission Daemon Server © Mencatat Info 2014 References  http://ubuntuforums.org/showthread.php?t=1605906 General Discussion and Questions Please send an email to tammam@mencatat.info