-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathinstall.sh
444 lines (383 loc) · 12.2 KB
/
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
#!/bin/bash
stty erase ^H
red='\e[91m'
green='\e[92m'
yellow='\e[94m'
magenta='\e[95m'
cyan='\e[96m'
none='\e[0m'
_red() { echo -e ${red}$*${none}; }
_green() { echo -e ${green}$*${none}; }
_yellow() { echo -e ${yellow}$*${none}; }
_magenta() { echo -e ${magenta}$*${none}; }
_cyan() { echo -e ${cyan}$*${none}; }
# Root
[[ $(id -u) != 0 ]] && echo -e "\n 请使用 ${red}root ${none}用户运行 ${yellow}~(^_^) ${none}\n" && exit 1
cmd="apt-get"
sys_bit=$(uname -m)
case $sys_bit in
'amd64' | x86_64) ;;
*)
echo -e "
这个 ${red}安装脚本${none} 不支持你的系统。 ${yellow}(-_-) ${none}
备注: 仅支持 Ubuntu 16+ / Debian 8+ / CentOS 7+ 系统
" && exit 1
;;
esac
if [[ $(command -v apt-get) || $(command -v yum) ]] && [[ $(command -v systemctl) ]]; then
if [[ $(command -v yum) ]]; then
cmd="yum"
fi
else
echo -e "
这个 ${red}安装脚本${none} 不支持你的系统。 ${yellow}(-_-) ${none}
备注: 仅支持 Ubuntu 16+ / Debian 8+ / CentOS 7+ 系统
" && exit 1
fi
if [ ! -d "/etc/ethminerpro/" ]; then
mkdir /etc/ethminerpro/
fi
error() {
echo -e "\n$red 输入错误!$none\n"
}
install_download() {
installPath="/etc/ethminerpro"
$cmd update -y
if [[ $cmd == "apt-get" ]]; then
$cmd install -y git curl wget supervisor
service supervisor restart
else
$cmd install -y epel-release
$cmd update -y
$cmd install -y git curl wget supervisor
systemctl enable supervisord
service supervisord restart
fi
[ -d ./ethminerpro ] && rm -rf ./ethminerpro
git clone --depth=1 https://github.com/ethminerpro/ethminerproxy.git
if [[ ! -d ./ethminerproxy ]]; then
echo
echo -e "$red 克隆脚本仓库出错了...$none"
echo
echo -e " 请尝试自行安装 Git: ${green}$cmd install -y git $none 之后再安装此脚本"
echo
exit 1
fi
mv ethminerproxy ethminerpro
cp -rf ./ethminerpro /etc/
if [[ ! -d $installPath ]]; then
echo
echo -e "$red 复制文件出错了...$none"
echo
echo -e " 使用最新版本的Ubuntu或者CentOS再试试"
echo
exit 1
fi
}
start_write_config() {
echo
echo "下载完成,开启守护"
echo
supervisorctl stop all
chmod a+x $installPath/ethminerproxy_linux
if [ -d "/etc/supervisor/conf/" ]; then
rm /etc/supervisor/conf/ethminerpro.conf -f
echo "[program:ethminerpro]" >>/etc/supervisor/conf/ethminerpro.conf
echo "command=${installPath}/ethminerproxy_linux" >>/etc/supervisor/conf/ethminerpro.conf
echo "directory=${installPath}/" >>/etc/supervisor/conf/ethminerpro.conf
echo "autostart=true" >>/etc/supervisor/conf/ethminerpro.conf
echo "autorestart=true" >>/etc/supervisor/conf/ethminerpro.conf
elif [ -d "/etc/supervisor/conf.d/" ]; then
rm /etc/supervisor/conf.d/ethminerpro.conf -f
echo "[program:ethminerpro]" >>/etc/supervisor/conf.d/ethminerpro.conf
echo "command=${installPath}/ethminerproxy_linux" >>/etc/supervisor/conf.d/ethminerpro.conf
echo "directory=${installPath}/" >>/etc/supervisor/conf.d/ethminerpro.conf
echo "autostart=true" >>/etc/supervisor/conf.d/ethminerpro.conf
echo "autorestart=true" >>/etc/supervisor/conf.d/ethminerpro.conf
elif [ -d "/etc/supervisord.d/" ]; then
rm /etc/supervisord.d/ethminerpro.ini -f
echo "[program:ethminerpro]" >>/etc/supervisord.d/ethminerpro.ini
echo "command=${installPath}/ethminerproxy_linux" >>/etc/supervisord.d/ethminerpro.ini
echo "directory=${installPath}/" >>/etc/supervisord.d/ethminerpro.ini
echo "autostart=true" >>/etc/supervisord.d/ethminerpro.ini
echo "autorestart=true" >>/etc/supervisord.d/ethminerpro.ini
else
echo
echo "----------------------------------------------------------------"
echo
echo " Supervisor安装目录没了,安装失败"
echo
exit 1
fi
if [[ $cmd == "apt-get" ]]; then
ufw disable
else
systemctl stop firewalld
fi
changeLimit="n"
if [ $(grep -c "root soft nofile" /etc/security/limits.conf) -eq '0' ]; then
echo "root soft nofile 60000" >>/etc/security/limits.conf
changeLimit="y"
fi
if [ $(grep -c "root hard nofile" /etc/security/limits.conf) -eq '0' ]; then
echo "root hard nofile 60000" >>/etc/security/limits.conf
changeLimit="y"
fi
change_limit_up
clear
echo
echo "----------------------------------------------------------------"
echo
if [[ "$changeLimit" = "y" ]]; then
echo -e "$red系统连接数限制已经改了,如果第一次运行本程序需要<重启服务器>配置才能生效!$none"
echo
fi
supervisorctl start all
supervisorctl reload
echo "如果还无法连接,请到云服务商控制台操作安全组,放行对应的端口"
echo
echo "安装完成...守护模式无日志,需要日志的请以nohup ./ethminerproxy_linux &方式运行"
echo
echo "以下配置文件:/etc/ethminerpro/conf.yaml,网页端可修改登录密码token"
echo
echo "[*---------]"
sleep 1
echo "[**--------]"
sleep 1
echo "[***-------]"
sleep 1
echo "[****------]"
sleep 1
echo "[*****-----]"
sleep 1
echo "[******----]"
echo
cat /etc/ethminerpro/conf.yaml
echo "----------------------------------------------------------------"
}
uninstall() {
clear
if [ -d "/etc/supervisor/conf/" ]; then
rm /etc/supervisor/conf/ethminerpro.conf -f
elif [ -d "/etc/supervisor/conf.d/" ]; then
rm /etc/supervisor/conf.d/ethminerpro.conf -f
elif [ -d "/etc/supervisord.d/" ]; then
rm /etc/supervisord.d/ethminerpro.ini -f
fi
supervisorctl reload
echo -e "$yellow 已关闭自启动${none}"
}
update(){
supervisorctl stop ethminerpro
[ -d ./ethminerpro ] && rm -rf ./ethminerpro
[ -d ./ethminerproxy ] && rm -rf ./ethminerproxy
git clone https://github.com/ethminerpro/ethminerproxy.git
if [[ ! -d ./ethminerproxy ]]; then
echo
echo -e "$red 克隆脚本仓库出错了...$none"
echo
echo -e " 请尝试自行安装 Git: ${green}$cmd install -y git $none 之后再安装此脚本"
echo
exit 1
fi
mv ethminerproxy ethminerpro
rm /etc/ethminerpro/ethminerproxy_linux -f
cp -rf ./ethminerpro/ethminerproxy_linux /etc/ethminerpro/ethminerproxy_linux
chmod a+x /etc/ethminerpro/ethminerproxy_linux
supervisorctl start ethminerpro
sleep 2s
echo "ethminerpro 已經更新至V5.1.0版本並啟動"
cat /etc/ethminerpro/conf.yaml
echo ""
echo "以上是配置文件信息"
}
start(){
supervisorctl start ethminerpro
echo "ethminerpro已啟動"
}
restart(){
supervisorctl restart ethminerpro
echo "ethminerpro 已經重新啟動"
}
stop(){
supervisorctl stop ethminerpro
echo "ethminerpro 已停止"
}
change_limit(){
change_limit_up
if grep -q "1000000" "/etc/profile"; then
echo -n "您的系統連接數限制可能已修改,當前連接限制:"
ulimit -n
exit
fi
change_limit_up
}
change_limit_up(){
# 优化TCP窗口
sed -i '/net.ipv4.tcp_no_metrics_save/d' /etc/sysctl.conf
sed -i '/net.ipv4.tcp_no_metrics_save/d' /etc/sysctl.conf
sed -i '/net.ipv4.tcp_ecn/d' /etc/sysctl.conf
sed -i '/net.ipv4.tcp_frto/d' /etc/sysctl.conf
sed -i '/net.ipv4.tcp_mtu_probing/d' /etc/sysctl.conf
sed -i '/net.ipv4.tcp_rfc1337/d' /etc/sysctl.conf
sed -i '/net.ipv4.tcp_sack/d' /etc/sysctl.conf
sed -i '/net.ipv4.tcp_fack/d' /etc/sysctl.conf
sed -i '/net.ipv4.tcp_window_scaling/d' /etc/sysctl.conf
sed -i '/net.ipv4.tcp_adv_win_scale/d' /etc/sysctl.conf
sed -i '/net.ipv4.tcp_moderate_rcvbuf/d' /etc/sysctl.conf
sed -i '/net.ipv4.tcp_rmem/d' /etc/sysctl.conf
sed -i '/net.ipv4.tcp_wmem/d' /etc/sysctl.conf
sed -i '/net.core.rmem_max/d' /etc/sysctl.conf
sed -i '/net.core.wmem_max/d' /etc/sysctl.conf
sed -i '/net.ipv4.udp_rmem_min/d' /etc/sysctl.conf
sed -i '/net.ipv4.udp_wmem_min/d' /etc/sysctl.conf
sed -i '/net.core.default_qdisc/d' /etc/sysctl.conf
sed -i '/net.ipv4.tcp_congestion_control/d' /etc/sysctl.conf
cat >>/etc/sysctl.conf <<EOF
net.ipv4.tcp_no_metrics_save=1
net.ipv4.tcp_ecn=0
net.ipv4.tcp_frto=0
net.ipv4.tcp_mtu_probing=0
net.ipv4.tcp_rfc1337=0
net.ipv4.tcp_sack=1
net.ipv4.tcp_fack=1
net.ipv4.tcp_window_scaling=1
net.ipv4.tcp_adv_win_scale=1
net.ipv4.tcp_moderate_rcvbuf=1
net.core.rmem_max=16777216
net.core.wmem_max=16777216
net.ipv4.tcp_rmem=4096 87380 16777216
net.ipv4.tcp_wmem=4096 16384 16777216
net.ipv4.udp_rmem_min=8192
net.ipv4.udp_wmem_min=8192
net.core.default_qdisc=fq
net.ipv4.tcp_congestion_control=bbr
EOF
sysctl -p && sysctl --system
#开启内核转发
sed -i '/net.ipv4.conf.all.route_localnet/d' /etc/sysctl.conf
sed -i '/net.ipv4.ip_forward/d' /etc/sysctl.conf
sed -i '/net.ipv4.conf.all.forwarding/d' /etc/sysctl.conf
sed -i '/net.ipv4.conf.default.forwarding/d' /etc/sysctl.conf
cat >>'/etc/sysctl.conf' <<EOF
net.ipv4.conf.all.route_localnet=1
net.ipv4.ip_forward=1
net.ipv4.conf.all.forwarding=1
net.ipv4.conf.default.forwarding=1
EOF
sysctl -p && sysctl --system
#修改连接数
echo "1000000" >/proc/sys/fs/file-max
sed -i '/fs.file-max/d' /etc/sysctl.conf
cat >>'/etc/sysctl.conf' <<EOF
fs.file-max=1000000
EOF
ulimit -SHn 1000000 && ulimit -c unlimited
echo "root soft nofile 1000000
root hard nofile 1000000
root soft nproc 1000000
root hard nproc 1000000
root soft core 1000000
root hard core 1000000
root hard memlock unlimited
root soft memlock unlimited
* soft nofile 1000000
* hard nofile 1000000
* soft nproc 1000000
* hard nproc 1000000
* soft core 1000000
* hard core 1000000
* hard memlock unlimited
* soft memlock unlimited
" >/etc/security/limits.conf
if grep -q "ulimit" /etc/profile; then
:
else
sed -i '/ulimit -SHn/d' /etc/profile
echo "ulimit -SHn 1000000" >>/etc/profile
fi
if grep -q "pam_limits.so" /etc/pam.d/common-session; then
:
else
sed -i '/required pam_limits.so/d' /etc/pam.d/common-session
echo "session required pam_limits.so" >>/etc/pam.d/common-session
fi
sed -i '/DefaultTimeoutStartSec/d' /etc/systemd/system.conf
sed -i '/DefaultTimeoutStopSec/d' /etc/systemd/system.conf
sed -i '/DefaultRestartSec/d' /etc/systemd/system.conf
sed -i '/DefaultLimitCORE/d' /etc/systemd/system.conf
sed -i '/DefaultLimitNOFILE/d' /etc/systemd/system.conf
sed -i '/DefaultLimitNPROC/d' /etc/systemd/system.conf
cat >>'/etc/systemd/system.conf' <<EOF
[Manager]
#DefaultTimeoutStartSec=90s
DefaultTimeoutStopSec=30s
#DefaultRestartSec=100ms
DefaultLimitCORE=infinity
DefaultLimitNOFILE=65535
DefaultLimitNPROC=65535
EOF
systemctl daemon-reload
echo "系統連接數限制已修改,手動reboot重啟下系統即可生效"
}
check_limit(){
echo -n "您的系統當前連接限制:"
ulimit -n
}
clear
while :; do
echo
echo "-------- ethminerpro 一键安装脚本 by:ethminerpro--------"
echo "github下载地址:https://github.com/ethminerpro/ethminerproxy"
echo "官方电报群:https://t.me/trexminerproxy"
echo
echo " 1. 安 装"
echo
echo " 2. 卸 载"
echo
echo " 3. 更 新"
echo
echo " 4. 启 动"
echo
echo " 5. 重 启"
echo
echo " 6. 停 止"
echo
echo " 7. 一鍵解除Linux連接數限制(需手動重啟系統生效)"
echo
echo " 8. 查看當前系統連接數限制"
echo
read -p "$(echo -e "请选择 [${magenta}1-8$none]:")" choose
case $choose in
1)
install_download
start_write_config
break
;;
2)
uninstall
break
;;
3)
update
;;
4)
start
;;
5)
restart
;;
6)
stop
;;
7)
change_limit
;;
8)
check_limit
;;
*)
echo "error請輸入正確的數字!"
;;
esac
done