forked from lanhebe/proxypool
-
Notifications
You must be signed in to change notification settings - Fork 1
/
onekey_install.sh
360 lines (334 loc) · 11.3 KB
/
onekey_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
#!/bin/bash
blue(){
echo -e "\033[34m\033[01m$1\033[0m"
}
green(){
echo -e "\033[32m\033[01m$1\033[0m"
}
red(){
echo -e "\033[31m\033[01m$1\033[0m"
}
yellow(){
echo -e "\033[33m\033[01m$1\033[0m"
}
#判断系统
check_os(){
if [ ! -e '/etc/redhat-release' ]; then
red "==============="
red " 仅支持CentOS7"
red "==============="
exit
fi
if [ -n "$(grep ' 6\.' /etc/redhat-release)" ] ;then
red "==============="
red " 仅支持CentOS7"
red "==============="
exit
fi
if [ -n "$(grep ' 8\.' /etc/redhat-release)" ] ;then
red "==============="
red " 仅支持CentOS7"
red "==============="
exit
fi
}
disable_selinux(){
yum -y install net-tools socat
Port80=`netstat -tlpn | awk -F '[: ]+' '$1=="tcp"{print $5}' | grep -w 80`
Port443=`netstat -tlpn | awk -F '[: ]+' '$1=="tcp"{print $5}' | grep -w 443`
if [ -n "$Port80" ]; then
process80=`netstat -tlpn | awk -F '[: ]+' '$5=="80"{print $9}'`
red "==========================================================="
red "检测到80端口被占用,占用进程为:${process80},本次安装结束"
red "==========================================================="
exit 1
fi
if [ -n "$Port443" ]; then
process443=`netstat -tlpn | awk -F '[: ]+' '$5=="443"{print $9}'`
red "============================================================="
red "检测到443端口被占用,占用进程为:${process443},本次安装结束"
red "============================================================="
exit 1
fi
if [ -f "/etc/selinux/config" ]; then
CHECK=$(grep SELINUX= /etc/selinux/config | grep -v "#")
if [ "$CHECK" == "SELINUX=enforcing" ]; then
green "$(date +"%Y-%m-%d %H:%M:%S") - SELinux状态非disabled,关闭SELinux."
setenforce 0
sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
#loggreen "SELinux is not disabled, add port 80/443 to SELinux rules."
#loggreen "==== Install semanage"
#logcmd "yum install -y policycoreutils-python"
#semanage port -a -t http_port_t -p tcp 80
#semanage port -a -t http_port_t -p tcp 443
#semanage port -a -t http_port_t -p tcp 37212
#semanage port -a -t http_port_t -p tcp 37213
elif [ "$CHECK" == "SELINUX=permissive" ]; then
green "$(date +"%Y-%m-%d %H:%M:%S") - SELinux状态非disabled,关闭SELinux."
setenforce 0
sed -i 's/SELINUX=permissive/SELINUX=disabled/g' /etc/selinux/config
fi
fi
firewall_status=`systemctl status firewalld | grep "Active: active"`
if [ -n "$firewall_status" ]; then
green "检测到firewalld开启状态,关闭firewalld"
#firewall-cmd --zone=public --add-port=80/tcp --permanent
#firewall-cmd --zone=public --add-port=443/tcp --permanent
#firewall-cmd --reload
systemctl stop firewalld
systemctl disable firewalld
fi
yum install -y iptables-services
systemctl start iptables
systemctl enable iptables
iptables -F
SSH_PORT=$(awk '$1=="Port" {print $2}' /etc/ssh/sshd_config)
if [ ! -n "$SSH_PORT" ]; then
iptables -A INPUT -p tcp -m tcp --dport 22 -j ACCEPT
else
iptables -A INPUT -p tcp -m tcp --dport ${SSH_PORT} -j ACCEPT
fi
iptables -A INPUT -p tcp -m tcp --dport 80 -j ACCEPT
iptables -A INPUT -p tcp -m tcp --dport 443 -j ACCEPT
iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
iptables -A INPUT -i lo -j ACCEPT
iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT ACCEPT
service iptables save
green "====================================================================="
green "安全起见,iptables仅开启ssh,http,https端口,如需开放其他端口请自行放行"
green "====================================================================="
}
check_domain(){
green "========================="
yellow "请输入绑定到本VPS的域名"
yellow " 安装时请关闭CDN"
green "========================="
read your_domain
real_addr=`ping ${your_domain} -c 1 | sed '1{s/[^(]*(//;s/).*//;q}'`
local_addr=`curl ipv4.icanhazip.com`
if [ $real_addr == $local_addr ] ; then
green "============================="
green "域名解析正常,开始安装爬虫"
green "============================="
sleep 1s
download_pc
install_nginx
config_ssl
else
red "================================="
red "域名解析地址与本VPS IP地址不一致"
red "本次安装失败,请确保域名解析正常"
red "================================="
exit 1
fi
}
install_nginx(){
echo
echo
green "==============="
green " 2.安装nginx"
green "==============="
sleep 1
#rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm --force --nodeps
while [ ! -f "nginx-release-centos-7-0.el7.ngx.noarch.rpm" ]
do
wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
if [ ! -f "nginx-release-centos-7-0.el7.ngx.noarch.rpm" ]; then
logred "$(date +"%Y-%m-%d %H:%M:%S") - 下载nginx rpm包失败,继续重试..."
fi
done
rpm -Uvh nginx-release-centos-7-0.el7.ngx.noarch.rpm --force --nodeps
yum install -y nginx
systemctl enable nginx.service
systemctl stop nginx.service
rm -f /etc/nginx/conf.d/default.conf
rm -f /etc/nginx/nginx.conf
mkdir /etc/nginx/ssl
if [ `yum list installed | grep nginx | wc -l` -ne 0 ]; then
echo
green "【checked】 nginx安装成功"
echo
echo
sleep 1
fi
cat > /etc/nginx/nginx.conf <<-EOF
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/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 /var/log/nginx/access.log main;
error_log /var/log/nginx/error.log error;
sendfile on;
#tcp_nopush on;
keepalive_timeout 120;
client_max_body_size 20m;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
EOF
curl https://get.acme.sh | sh -s [email protected]
~/.acme.sh/acme.sh --issue -d $your_domain --standalone
~/.acme.sh/acme.sh --installcert -d $your_domain \
--key-file /etc/nginx/ssl/$your_domain.key \
--fullchain-file /etc/nginx/ssl/fullchain.cer
cat > /etc/nginx/conf.d/default.conf<<-EOF
server {
listen 80 default_server;
server_name _;
return 404;
}
server {
listen 443 ssl default_server;
server_name _;
ssl_certificate /etc/nginx/ssl/fullchain.cer;
ssl_certificate_key /etc/nginx/ssl/$your_domain.key;
return 404;
}
server {
listen 80;
server_name $your_domain;
rewrite ^(.*)$ https://\$host\$1 permanent;
}
server {
listen 443 ssl http2;
server_name $your_domain;
root /usr/share/nginx/html;
index index.php index.html;
ssl_certificate /etc/nginx/ssl/fullchain.cer;
ssl_certificate_key /etc/nginx/ssl/$your_domain.key;
ssl_stapling on;
ssl_stapling_verify on;
add_header Strict-Transport-Security "max-age=31536000";
access_log /var/log/nginx/hostscube.log combined;
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name;
include fastcgi_params;
}
location / {
proxy_pass http://127.0.0.1:12580/;
}
}
EOF
}
config_ssl(){
echo
green "===================="
green " 3.验证ssl证书"
green "===================="
echo
echo
sleep 1
systemctl restart nginx.service
~/.acme.sh/acme.sh --issue --force -d $your_domain --nginx
~/.acme.sh/acme.sh --installcert -d $your_domain \
--key-file /etc/nginx/ssl/$your_domain.key \
--fullchain-file /etc/nginx/ssl/fullchain.cer \
--reloadcmd "systemctl restart nginx"
sleep 1
echo
green "===================="
green " 爬虫安装成功"
green "===================="
echo
}
download_pc(){
echo
green "==============="
green " 1.安装爬虫"
green "==============="
sleep 1
wget https://github.com/lanhebe/proxypool/releases/download/v0.6/proxypool-linux-amd64-v0.6.0.gz
gzip -d proxypool-linux-amd64-v0.6.0.gz
mv proxypool-linux-amd64-v0.6.0 proxypool
chmod 755 proxypool
wget https://raw.githubusercontent.com/lanhebe/proxypool/master/config.yaml
wget https://raw.githubusercontent.com/lanhebe/proxypool/master/source.yaml
cat > ./config.yaml <<-EOF
domain: $your_domain
port: # default 12580
# source list file
source-files:
# use local file
- ./source.yaml
# use web file
# - https://example.com/config/source.yaml
# ======= 可选项,留空使用default值 =======
# postgresql database info
database_url: ""
# interval between each crawling
crawl-interval: # v0.5.x default 60 (minutes)
crontime: # v0.4.x default 60 (minutes). Deprecated in the newest version
# speed test
speedtest: false # default false. Warning: this will consume large network resources.
speedtest-interval: # default 720 (min)
connection: # default 5. The number of speed test connections simultaneously
timeout: # default 10 (seconds).
## active proxy speed test
active-interval: # default 60 (min)
active-frequency: # default 100 (requests per interval)
active-max-number: # default 100. If more than this number of active proxies, the extra will be deprecated by speed
# cloudflare api
cf_email: ""
cf_key: ""
EOF
nohup ./proxypool -c config.yaml >/dev/null 2>/dev/null &
}
uninstall_pc(){
red "============================================="
red "你的pc数据将全部丢失!!你确定要卸载吗?"
read -s -n1 -p "按回车键开始卸载,按ctrl+c取消"
yum remove -y nginx
pkill proxypool
rm -rf ~/proxypool
rm -rf ~/config.yaml
rm -rf ~/source.yaml
green "=========="
green " 卸载完成"
green "=========="
}
start_menu(){
clear
green "======================================="
green " 环境:适用于CentOS7,一键安装免费节点爬虫"
green " 作者:Littleyu+部分代码来源网络"
green " 网站:yugogo.xyz"
green " Youtube频道:yu little"
green "======================================="
green "1. 一键安装免费节点爬虫"
red "2. 卸载爬虫"
yellow "0. 退出脚本"
echo
read -p "请输入数字:" num
case "$num" in
1)
check_os
disable_selinux
check_domain
;;
2)
uninstall_pc
;;
0)
exit 1
;;
*)
clear
echo "请输入正确数字"
sleep 2s
start_menu
;;
esac
}
start_menu