利用aria2c上传文件到VPS中

在用nginx架设了文件服务器之后,这种形式仅仅只能用来下载,不能提供上传。
如果想上传一个大文件到服务器上,目标是最高速度上传。这种情况最好不要选用ftp,因为速度着实非常慢。
已知实验室的网络有IPv6,并且VPS也支持IPv6。

思路

windows本地利用nginx架设文件服务器,VPS上利用多线程下载工具aria2c多线程下载工具下载windows中的文件。两者之间利用ipv6传输。

windows利用nginx架设文件服务器

nginx有Windows版本,nginx for Windows

# 下载nginx/Windows-1.12.0.zip并解压
# 进入cmd命令框,cd到指定目录
cd nginx-1.13.0
start nginx
利用aria2c上传文件到VPS中_第1张图片
image.png
# nginx的其他命令
nginx -s stop   fast shutdown
nginx -s quit   graceful shutdown
nginx -s reload changing configuration, starting new worker processes with a new configuration, graceful shutdown of old worker processes
nginx -s reopen re-opening log files

问:如果想把D:\nginx-1.13.0\my_share文件夹下的文件共享成http文件服务器应该怎么设置?
修改nginx-1.13.0/conf/nginx.conf文件,在server中添加

        # added by 我自己
        location /share {
            alias   D:/nginx-1.13.0/my_share;
            allow all;
            autoindex on;
        }

上述share是可以改变的,文件夹也是任意指定,注意反斜杠不要用错了,同时修改成IPv4和IPv6都进行监听,端口是8080。
添加后的效果为:

#user  root;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}



http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       8080 default_server;
        listen       [::]:8080 default_server;
        #listen       [::]:80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            #root   d:/nginx-1.13.0;
            index  index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
        # added by 我自己
        location /share {
            alias   D:/nginx-1.13.0/my_share;
            allow all;
            autoindex on;
        }
    }
}

启动nginx,在浏览器中输入http://127.0.0.1:8080/share 就能看到共享的文件。

利用aria2c上传文件到VPS中_第2张图片
image.png

如果从其他电脑通过IPv6访问,只需要把“ 127.0.0.1”替换为" [你的IPv6地址]"。

Linux 安装aria2c

参考教程使用aria2多线程下载

wget https://github.com/aria2/aria2/releases/download/release-1.31.0/aria2-1.31.0.tar.gz
tar -zxvf aria2-1.31.0.tar.gz
cd aria2-1.31.0
./configure
make
make install

不得不说,aria2c真的是非常强大。实际上我们如果简单使用aria2c,并不需要配置文件。

aria2c -x10 http://[IPv6地址]:8080/share/Trainspotting.1996.BluRay.iPad.720p.x264.AAC-BYRPAD.mp4

如果下载网址需要验证,可用下面的形式

aria2c -x10 http://username:passwd@[IPv6地址]:8080/share/Trainspotting.1996.BluRay.iPad.720p.x264.AAC-BYRPAD.mp4

-x10 代表开10个线程进行下载,一般来说10个线程肯定能跑满最大的带宽了。


利用aria2c上传文件到VPS中_第3张图片
image.png

均速3.6M/s,可以看到速度还是不错的。
如果有多个任务,可以放到txt中进行批量下载

aria2c -s3 -x10 -j5 -i a.txt

-s3 代表每个文件分为三个小片
-x10 代表10个线程下载
-j5 代表一次最多5个文件在下载
a.txt 中存有需要下载的URL

你可能感兴趣的:(利用aria2c上传文件到VPS中)