|
本帖最后由 llkak47 于 2018-1-30 22:54 编辑
发帖问问dalao们。
VPS 部署aria2后
web用的是Aria2 WebUI
开启防火墙防火墙
firewall-cmd --zone=public --add-port=8000/tcp --permanent
firewall-cmd --zone=public --add-port=6800/tcp --permanent
udp也如上开启。
重新载入
firewall-cmd --reload
让防火墙生效
systemctl start firewalld
web里面,跑不起来,链接种子都可以加载,但是就是不运行下载。
彻底关闭防火墙
systemctl stop firewalld
可以正常下载,速度正常
因为vps还有其他应用,不希望彻底关闭防火墙。希望解决的是不完全关闭防火墙aria2能用
奇怪的问问大家,还有没开启的端口吗?难道开启下载aria2会随机需要其他端口?
网页服务器用的是nginx,其下面一个aria2的 虚拟主机配置如下:
server{
listen 8000;
server_name 域名ip;
location / {
root html/webui-aria2;
index index.php index.html index.htm;
proxy_max_temp_file_size 9000000m;
client_max_body_size 9000000m;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
aria2.conf 配置如下
用户名
#rpc-user=user
#密码
#rpc-passwd=passwd
#上面的认证方式不建议使用,建议使用下面的token方式
#设置加密的密钥
#rpc-secret=token
#允许rpc
enable-rpc=true
#允许所有来源, web界面跨域权限需要
rpc-allow-origin-all=true
#允许外部访问,false的话只监听本地端口
rpc-listen-all=true
#RPC端口, 仅当默认端口被占用时修改
rpc-listen-port=6800
#最大同时下载数(任务数), 路由建议值: 3
max-concurrent-downloads=5
#断点续传
continue=true
#同服务器连接数
max-connection-per-server=5
#最小文件分片大小, 下载线程数上限取决于能分出多少片, 对于小文件重要
min-split-size=10M
#单文件最大线程数, 路由建议值: 5
split=10
#下载速度限制
max-overall-download-limit=0
#单文件速度限制
max-download-limit=0
#上传速度限制
max-overall-upload-limit=0
#单文件速度限制
max-upload-limit=0
#断开速度过慢的连接
#lowest-speed-limit=0
#验证用,需要1.16.1之后的release版本
#referer=*
#文件保存路径, 默认为当前启动位置
dir=/root/download
#文件缓存, 使用内置的文件缓存, 如果你不相信Linux内核文件缓存和磁盘内置缓存时使用
#disk-cache=0
#另一种Linux文件缓存方式
#enable-mmap=true
#文件预分配, 能有效降低文件碎片, 提高磁盘性能. 缺点是预分配时间较长
file-allocation=prealloc
求dalao指导
|
|