I was looking for some old movies recently. The related resources of BT are very limited. I don’t want a computer to be turned on and download. I just found this Simple Torrent. It is very convenient to use. Download it remotely and then download it back to the local. The VPS storage capacity is only 60G, so it can only be deleted after a few downloads.
project address
Github address: https://github.com/boypt/simple-torrent
Use the SSH tool to log in to the server and execute the following command:
bash <(wget -qO- https://raw.githubusercontent.com/boypt/simple-torrent/master/scripts/quickinstall.sh)
After the execution is completed, the function has been completed. If the server has a firewall enabled, remember to allow the port: 3000
Then visit http://ip:3000
By the way, share a good BT-Trackers server address
https://trackerslist.com/all.txt
Enter the WEB interface to configure:
The setting interface is also very simple, just set the download and torrent storage directory and you can use it.
Common commands:
Start: systemctl start cloud-torrent
Restart: systemctl restart cloud-torrent
Stop: systemctl stop cloud-torrent
View status: systemctl status cloud-torrent
Docker installation
Install Docker first. Of course, if you use a NAS , you can install it directly and then execute it.
#CentOS System
rpm -iUvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
yum update -y
yum -y install docker-io
service docker start
chkconfig docker on
#CentOS 7, Debian, Ubuntu system
curl -sSL https://get.docker.com/ | sh
systemctl start docker
systemctl enable docker
Install Simple Torrent
docker run --restart=always --name simple-torrent -d \
-p 3000:3000 \
-v ~/downloads:/downloads \
-v ~/torrents:/torrents \
boypt/cloud-torrent
Then visit http://ip:3000
Other supplementary content
Firewall release port:
#CentOS 6
iptables -I INPUT -p tcp --dport 3000 -j ACCEPT
service iptables save
service iptables restart
#CentOS 7
firewall-cmd --zone=public --add-port=3000/tcp --permanent
firewall-cmd --reload