DEV Community

kyorohiro (kiyohiro kawamura)
kyorohiro (kiyohiro kawamura)

Posted on • Edited on

Hello Libtorrent : Publish Data (1) Start Your Tracker Server

This document is a tutorial to publish a data with your opentracker and your libtorrent client.

Start Your Tracker Server

Preparing Tracker Your Server is not always necessary. It is optionnal now. Because Bittorrent support trackerless protocol.

But, This time, In this Document, You prepare your tracker server.

It is a basica way according to a http://bittorrent.org/beps/bep_0052.html and http://bittorrent.org/beps/bep_0003.html

Start a Tracker Server

maybe you can use vps or aws ecp or gcp ..
in this document, digital ocean vps (droplets)

https://www.digitalocean.com/

Install Opentracker

$ apt-get update
$ apt-get install build-essential -y
$ apt-get install git -y
$ apt-get install cvs -y
$ apt-get install zlib1g-dev -y
Enter fullscreen mode Exit fullscreen mode
$ cvs -d :pserver:cvs@cvs.fefe.de:/cvs -z9 co libowfat
$ cd libowfat
$ make
$ cd ..
$ git clone git://erdgeist.org/opentracker
$ cd opentracker
$ make
Enter fullscreen mode Exit fullscreen mode

RUN

./opentracker
Enter fullscreen mode Exit fullscreen mode

You can get your Open Tracker Address!!
http::<your vps ip>:6969/announce is your tracker address

(Optional) Server Setting

You can start a tracker server. but, this server is stop if your server restart or your tracker server is down.

You can setup a tracker as systemd service.

Create Systemd Setting

/opt/my-opentracker.sh

#!/bin/sh

while true
do
  /root/opentracker/opentracker
  sleep 1
done

Enter fullscreen mode Exit fullscreen mode
$ chmod 655 /opt/my-opentracker.sh
Enter fullscreen mode Exit fullscreen mode

/etc/systemd/system/my-opentracker.service

[Unit]
Description = opentracker deamon

[Service]
ExecStart = /opt/my-opentracker.sh
Restart = always
Type = simple

[Install]
WantedBy = multi-user.target

Enter fullscreen mode Exit fullscreen mode
$ systemctl enable my-codeserver
Enter fullscreen mode Exit fullscreen mode

MEMO

Dockerfile 's Sample is here
https://github.com/kyorohiro/hello_libtorrent
Dockerfile.tracker

My Memo About Libtorrent And Index

(0) code-server for libtorrent 2.0
https://dev.to/kyorohiro/code-server-for-libtorrent-2-0-1m85

Image of Datadog

The Future of AI, LLMs, and Observability on Google Cloud

Datadog sat down with Google’s Director of AI to discuss the current and future states of AI, ML, and LLMs on Google Cloud. Discover 7 key insights for technical leaders, covering everything from upskilling teams to observability best practices

Learn More

Top comments (0)

Image of Docusign

🛠️ Bring your solution into Docusign. Reach over 1.6M customers.

Docusign is now extensible. Overcome challenges with disconnected products and inaccessible data by bringing your solutions into Docusign and publishing to 1.6M customers in the App Center.

Learn more