forked from 10362227/DFGDGDDHDHFDHDHDHD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Aria2+AriaNG+KodExplorer_Install.sh
417 lines (371 loc) · 12.2 KB
/
Aria2+AriaNG+KodExplorer_Install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
#!/bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
#=================================================================#
# System Required: CentOS 7 X86_64 #
# Description: Aria2+AriaNG+KodExplorer Soft Install #
# Author: LALA <QQ1062951199> #
# Website: https://www.lala.im #
#=================================================================#
clear
echo
echo "#############################################################"
echo "# Aria2 + AriaNG + KodExplorer Soft Install #"
echo "# Author: LALA <QQ1062951199> #"
echo "# Website: https://www.lala.im #"
echo "# System Required: CentOS 7 X86_64 #"
echo "#############################################################"
echo
# Color
red='\033[0;31m'
green='\033[0;32m'
yellow='\033[0;33m'
font="\033[0m"
# HostIP input
read -p "请输入你的主机公网IP地址:" HostIP
# CPUcore input
read -p "选择使用多少个CPU线程进行编译(多个线程将有效提升编译效率):" CPUcore
# Create Swap
read -p "如果机器内存小于2GB需临时创建Swap,是否创建Swap?(yes/no):" Choose
if [ $Choose = "yes" ];then
dd if=/dev/zero of=/var/swap bs=1024 count=2097152
mkswap /var/swap
chmod 0600 /var/swap
swapon /var/swap
fi
if [ $Choose = "no" ]
then
echo -e "${yellow} 你选择不创建swap,脚本将继续进行下一步操作 ${font}"
fi
# Disable SELinux Function
disable_selinux(){
if [ -s /etc/selinux/config ] && grep 'SELINUX=enforcing' /etc/selinux/config; then
sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
setenforce 0
fi
}
# Stop SElinux
disable_selinux
# Disable Firewalld
systemctl stop firewalld.service
systemctl disable firewalld.service
# Update System
yum -y update
if [ $? -eq 0 ];then
echo -e "${green} 系统更新完成 ${font}"
else
echo -e "${red} 系统更新失败 ${font}"
exit 1
fi
# Install Required
yum -y install epel-release
if [ $? -eq 0 ];then
echo -e "${green} EPEL源安装成功 ${font}"
else
echo -e "${red} EPEL源安装失败 ${font}"
exit 1
fi
yum -y groupinstall "Development Tools"
if [ $? -eq 0 ];then
echo -e "${green} 开发工具包安装成功 ${font}"
else
echo -e "${red} 开发工具包安装失败 ${font}"
exit 1
fi
yum -y install openssl-devel
if [ $? -eq 0 ];then
echo -e "${green} Openssl-Devel安装成功 ${font}"
else
echo -e "${red} Openssl-Devel安装失败 ${font}"
exit 1
fi
yum -y install unzip
if [ $? -eq 0 ];then
echo -e "${green} Unzip安装成功 ${font}"
else
echo -e "${red} Unzip安装失败 ${font}"
exit 1
fi
yum -y install wget
if [ $? -eq 0 ];then
echo -e "${green} wget安装成功 ${font}"
else
echo -e "${red} wget安装失败 ${font}"
exit 1
fi
#Install Nginx
#touch /etc/yum.repos.d/nginx.repo
#cat > /etc/yum.repos.d/nginx.repo <<EOF
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/7/\$basearch/
gpgcheck=0
enabled=1
EOF
yum -y install nginx
if [ $? -eq 0 ];then
echo -e "${green} Nginx安装成功 ${font}"
else
echo -e "${red} Nginx安装失败 ${font}"
exit 1
fi
#Install PHP7.2
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
yum -y install php72w-fpm php72w-cli php72w-common php72w-gd php72w-mysqlnd php72w-odbc php72w-pdo php72w-pgsql php72w-xmlrpc php72w-xml php72w-mbstring php72w-opcache
if [ $? -eq 0 ];then
echo -e "${green} PHP7.2安装成功 ${font}"
else
echo -e "${red} PHP7.2安装失败 ${font}"
exit 1
fi
# Start PHP-FPM
systemctl start php-fpm
if [ $? -eq 0 ];then
echo -e "${green} PHP-FPM启动成功 ${font}"
else
echo -e "${red} PHP-FPM启动失败 ${font}"
exit 1
fi
systemctl enable php-fpm
# Download Aria2 source and Install
cd
wget --no-check-certificate https://github.com/aria2/aria2/releases/download/release-1.34.0/aria2-1.34.0.tar.gz
if [ $? -eq 0 ];then
echo -e "${green} Aria2源码下载成功 ${font}"
else
echo -e "${red} Aria2源码下载失败 ${font}"
exit 1
fi
tar -xzvf aria2-1.34.0.tar.gz
cd aria2-1.34.0
./configure --prefix=/usr
make -j${CPUcore}
make install
if [ $? -eq 0 ];then
echo -e "${green} Aria2安装成功 ${font}"
else
echo -e "${red} Aria2安装失败 ${font}"
exit 1
fi
# Create Aria2 Setting folder and files
mkdir -p /etc/aria2/
touch /etc/aria2/aria2.session
touch /etc/aria2/aria2.conf
# Fix Permission issue
chown -R apache:apache /etc/aria2
# Import Aria2 Setting
cat > /etc/aria2/aria2.conf <<EOF
## '#'开头为注释内容, 选项都有相应的注释说明, 根据需要修改 ##
## 被注释的选项填写的是默认值, 建议在需要修改时再取消注释 ##
## 文件保存相关 ##
# 文件的保存路径(可使用绝对路径或相对路径), 默认: 当前启动位置
dir=/usr/share/nginx/kodexplorer/data/User/admin/home
# 启用磁盘缓存, 0为禁用缓存, 需1.16以上版本, 默认:16M
disk-cache=32M
# 文件预分配方式, 能有效降低磁盘碎片, 默认:prealloc
# 预分配所需时间: none < falloc ? trunc < prealloc
# falloc和trunc则需要文件系统和内核支持
# NTFS建议使用falloc, EXT3/4建议trunc, MAC 下需要注释此项
#file-allocation=none
# 断点续传
continue=true
## 下载连接相关 ##
# 最大同时下载任务数, 运行时可修改, 默认:5
max-concurrent-downloads=50
# 同一服务器连接数, 添加时可指定, 默认:1
max-connection-per-server=5
# 最小文件分片大小, 添加时可指定, 取值范围1M -1024M, 默认:20M
# 假定size=10M, 文件为20MiB 则使用两个来源下载; 文件为15MiB 则使用一个来源下载
min-split-size=10M
# 单个任务最大线程数, 添加时可指定, 默认:5
#split=5
# 整体下载速度限制, 运行时可修改, 默认:0
#max-overall-download-limit=0
# 单个任务下载速度限制, 默认:0
#max-download-limit=0
# 整体上传速度限制, 运行时可修改, 默认:0
#max-overall-upload-limit=0
# 单个任务上传速度限制, 默认:0
#max-upload-limit=0
# 禁用IPv6, 默认:false
#disable-ipv6=true
# 连接超时时间, 默认:60
#timeout=60
# 最大重试次数, 设置为0表示不限制重试次数, 默认:5
#max-tries=5
# 设置重试等待的秒数, 默认:0
#retry-wait=0
## 进度保存相关 ##
# 从会话文件中读取下载任务
input-file=/etc/aria2/aria2.session
# 在Aria2退出时保存错误/未完成的下载任务到会话文件
save-session=/etc/aria2/aria2.session
# 定时保存会话, 0为退出时才保存, 需1.16.1以上版本, 默认:0
save-session-interval=0
# 即使下载完成或删除也全部保存
force-save=true
## RPC相关设置 ##
# 启用RPC, 默认:false
enable-rpc=true
# 允许所有来源, 默认:false
rpc-allow-origin-all=true
# 允许非外部访问, 默认:false
rpc-listen-all=true
# 事件轮询方式, 取值:[epoll, kqueue, port, poll, select], 不同系统默认值不同
#event-poll=select
# RPC监听端口, 端口被占用时可以修改, 默认:6800
rpc-listen-port=6800
# 设置的RPC授权令牌, v1.18.4新增功能, 取代 --rpc-user 和 --rpc-passwd 选项
rpc-secret=lala.im
# 设置的RPC访问用户名, 此选项新版已废弃, 建议改用 --rpc-secret 选项
#rpc-user=<USER>
# 设置的RPC访问密码, 此选项新版已废弃, 建议改用 --rpc-secret 选项
#rpc-passwd=<PASSWD>
# 是否启用 RPC 服务的 SSL/TLS 加密,
# 启用加密后 RPC 服务需要使用 https 或者 wss 协议连接
#rpc-secure=true
# 在 RPC 服务中启用 SSL/TLS 加密时的证书文件,
# 使用 PEM 格式时,您必须通过 --rpc-private-key 指定私钥
#rpc-certificate=/path/to/certificate.pem
# 在 RPC 服务中启用 SSL/TLS 加密时的私钥文件
#rpc-private-key=/path/to/certificate.key
## BT/PT下载相关 ##
# 当下载的是一个种子(以.torrent结尾)时, 自动开始BT任务, 默认:true
#follow-torrent=true
# BT监听端口, 当端口被屏蔽时使用, 默认:6881-6999
listen-port=51413
# 单个种子最大连接数, 默认:55
bt-max-peers=500
# 打开DHT功能, PT需要禁用, 默认:true
enable-dht=true
# 打开IPv6 DHT功能, PT需要禁用
enable-dht6=true
# DHT网络监听端口, 默认:6881-6999
dht-listen-port=6881-6999
# 本地节点查找, PT需要禁用, 默认:false
bt-enable-lpd=true
# 种子交换, PT需要禁用, 默认:true
enable-peer-exchange=true
# 每个种子限速, 对少种的PT很有用, 默认:50K
#bt-request-peer-speed-limit=50K
# 客户端伪装, PT需要
#peer-id-prefix=-TR2770-
#user-agent=Transmission/2.77
# 当种子的分享率达到这个数时, 自动停止做种, 0为一直做种, 默认:1.0
seed-ratio=0
# 强制保存会话, 即使任务已经完成, 默认:false
# 较新的版本开启后会在任务完成后依然保留.aria2文件
#force-save=false
# BT校验相关, 默认:true
#bt-hash-check-seed=true
# 继续之前的BT任务时, 无需再次校验, 默认:false
bt-seed-unverified=true
# 保存磁力链接元数据为种子文件(.torrent文件), 默认:false
bt-save-metadata=true
EOF
# Download AriaNG
mkdir -p /usr/share/nginx/ariang && cd /usr/share/nginx/ariang
wget --no-check-certificate https://github.com/mayswind/AriaNg/releases/download/0.5.0/AriaNg-0.5.0.zip
if [ $? -eq 0 ];then
echo -e "${green} AriaNG下载成功 ${font}"
else
echo -e "${red} AriaNG下载失败 ${font}"
exit 1
fi
unzip AriaNg-0.5.0.zip
if [ $? -eq 0 ];then
echo -e "${green} AriaNG解压成功 ${font}"
else
echo -e "${red} AriaNG解压失败 ${font}"
exit 1
fi
# Download Kodexplorer
mkdir -p /usr/share/nginx/kodexplorer && cd /usr/share/nginx/kodexplorer
wget --no-check-certificate http://static.kodcloud.com/update/download/kodexplorer4.40.zip
if [ $? -eq 0 ];then
echo -e "${green} Kodexplorer下载成功 ${font}"
else
echo -e "${red} Kodexplorer下载失败 ${font}"
exit 1
fi
unzip kodexplorer4.40.zip
if [ $? -eq 0 ];then
echo -e "${green} Kodexplorer解压成功 ${font}"
else
echo -e "${red} Kodexplorer解压失败 ${font}"
exit 1
fi
# Create Nginx MasterConfigFile
touch /etc/nginx/conf/conf.d/ariang.conf
cat > /etc/nginx/conf/conf.d/ariang.conf <<EOF
server {
listen 11585;
server_name ${HostIP};
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/ariang;
index index.html index.htm index.php;
}
}
EOF
# Create KodExplorer MasterConfigFile
touch /etc/nginx/conf/conf.d/kodexplorer.conf
cat > /etc/nginx/conf/conf.d/kodexplorer.conf <<EOF
server {
listen 11586;
server_name ${HostIP};
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/kodexplorer;
index index.html index.htm index.php;
}
location ~ \.php$ {
root /usr/share/nginx/kodexplorer;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/kodexplorer\$fastcgi_script_name;
include fastcgi_params;
}
}
EOF
# Fix Permission issue
chown -R apache:apache /usr/share/nginx/kodexplorer
chown -R apache:apache /usr/share/nginx/ariang
# Start Nginx Service
systemctl restart nginx
if [ $? -eq 0 ];then
echo -e "${green} Nginx启动成功 ${font}"
else
echo -e "${red} Nginx启动失败 ${font}"
exit 1
fi
systemctl enable nginx
# Create Aria2 Service File
touch /etc/systemd/system/aria2.service
cat > /etc/systemd/system/aria2.service <<EOF
[Unit]
Description=aria2
[Service]
User=apache
Group=apache
ExecStart=/usr/bin/aria2c --conf-path=/etc/aria2/aria2.conf
Restart=on-abort
[Install]
WantedBy=multi-user.target
EOF
# Reload Systemctl Server File
systemctl daemon-reload
# Start Aria2
systemctl start aria2
systemctl enable aria2
echo
echo "#############################################################"
echo "# Aria2 + AriaNG + KodExplorer Installation Complete #"
echo "# AriaNG WebSite: http://${HostIP}:11585 #"
echo "# KodExplorer WebSite: http://${HostIP}:11586 #"
echo "# Default Aria2 RPC Password: lala.im #"
echo "# Change Aria2 RPC Password: /etc/aria2/aria2.conf #"
echo "#############################################################"
echo