motivation Due to learning needs, I purchased a vps service from a foreign server manufacturer (I won’t tell you which manufacturer it was). However, even if used as a ladder, 1T of traffic per month will never be used up. I finally feel that I have enough nutrition and want to find a movie to watch. Hey, can I use vps to build my own offline download server? This way you can utilize excess bandwidth resources and increase download speeds, isn’t that great! With this question in mind, I started building it on a lonely night. Construction process Machine configuration distribution: CentOS 6.9 The configuration of this machine is not high, but it is more than enough to be used as a download server. Tool Selection After some searching, I chose transmission + vsftpd + nginx + aria2c as the deployment tools.
Deployment Practice 1. Install transmission, modify configuration and start service Install transmission and transmission-daemon
Modify the configuration and start the transmission service. The settings.json file under the path /var/lib/transmission/.config/transmission is the configuration file of transmission. There are a lot of configurations in it. We need to modify the following configuration so that we can use remote software to control our transmission
Start the transmission service
So we can access the transmission service through http://host_ip:9091. After a test, the speed is still good, with a peak speed of 30MB/s In addition, we can also install Transmission-Remote-GUI to control transmission without visiting the page. It can be downloaded from the app store under Linux (Mint). The operation method is similar to the UI interface of uTorrent: 2. vsftpd builds ftp server Building an ftp server is not used to download files. The speed of downloading files through ftp is very slow. Therefore, the role of the ftp server is to manage files, generally speaking, it is a deletion operation. Install vsftpd We use Linux users to log in, not virtual users (because it is troublesome to install the database) Adding Users
Change the home directory of ftpuser to the download directory of transmission
Modify the vsftpd configuration file (/etc/vsftpd/vsftpd.conf)
The configuration chroot_list_enable=NO indicates that the user is not allowed to switch out of the home directory. Start vsftpd
In this way, we can use ftp to manage the files downloaded by transmission. 3. Build a static file server with nginx Use nginx as a static resource server to provide a display of downloaded resources. There are a lot of tutorials on the Internet for installing nginx. As a follow-up fill. Mainly talk about configuration Modify the nginx configuration file (/etc/nginx/conf.d/default.conf) autoindex on; autoindex_exact_size on; autoindex_localtime on; server { listen 8090; listen [::]:8090; server_name localhost; charset utf-8; location / { root /var/lib/transmission/Downloads; index index.html index.htm; } Start the nginx service and you can get the file list through port 8090. 4. aria2c download files aria2c is used to download files from the server and install it on your own machine. Mainly talk about how to accelerate downloading through aria2c multi-threading There are several parameters in aria2c related to multi-threaded downloading
So for large files, increasing the x and s parameters appropriately can increase the download speed. Reference Links: How To Install Transmission BitTorrent Client on CentOS 6 You may also be interested in:
|
<<: MySQL million-level data paging query optimization solution
>>: JavaScript design pattern chain of responsibility pattern
When using element-ui, there is a commonly used c...
Table of contents 1. Background 2. Understanding ...
1. Nested routing is also called sub-routing. In ...
Table of contents 1. Discover the problem 2. Dele...
Table of contents Preface NULL in MySQL 2 NULL oc...
1. Introduction CentOS8 system update, the new ve...
Solution to mysql not closing: Right-click on the...
Preface In many MySQL test scenarios, some test d...
I didn't use MySQL very often before, and I w...
Table of contents 1. React Hooks vs. Pure Functio...
First delete mysql: sudo apt-get remove mysql-* T...
This article shares the specific code for JavaScr...
Being a web designer is not easy. Not only do you...
In actual work, JavaScript regular expressions ar...
Table of contents Saltstack deploys zabbix servic...