forked from mmmwhy/pure_attention
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ss-panel-v3-mod.sh
326 lines (325 loc) · 12.6 KB
/
ss-panel-v3-mod.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
#!/bin/bash
#Check Root
[ $(id -u) != "0" ] && { echo "Error: You must be root to run this script"; exit 1; }
install_ss_panel_mod_v3(){
yum -y remove httpd
yum install -y unzip zip git
num=$1
if [ "${num}" != "1" ]; then
wget -c --no-check-certificate https://raw.githubusercontent.com/mmmwhy/ss-panel-and-ss-py-mu/master/lnmp1.4.zip && unzip lnmp1.4.zip && rm -rf lnmp1.4.zip && cd lnmp1.4 && chmod +x install.sh && ./install.sh lnmp
fi
cd /home/wwwroot/
cp -r default/phpmyadmin/ .
cd default
rm -rf index.html
git clone https://github.com/mmmwhy/mod.git tmp && mv tmp/.git . && rm -rf tmp && git reset --hard
cp config/.config.php.example config/.config.php
chattr -i .user.ini
mv .user.ini public
chown -R root:root *
chmod -R 777 *
chown -R www:www storage
chattr +i public/.user.ini
wget -N -P /usr/local/nginx/conf/ --no-check-certificate https://raw.githubusercontent.com/mmmwhy/ss-panel-and-ss-py-mu/master/nginx.conf
service nginx restart
IPAddress=`wget http://whatismyip.akamai.com/ -O - -q ; echo`;
sed -i "s#103.74.192.11#${IPAddress}#" /home/wwwroot/default/sql/sspanel.sql
mysql -uroot -proot -e"create database sspanel;"
mysql -uroot -proot -e"use sspanel;"
mysql -uroot -proot sspanel < /home/wwwroot/default/sql/sspanel.sql
cd /home/wwwroot/default
php -n xcat initdownload
php xcat initQQWry
yum -y install vixie-cron crontabs
rm -rf /var/spool/cron/root
echo 'SHELL=/bin/bash' >> /var/spool/cron/root
echo 'PATH=/sbin:/bin:/usr/sbin:/usr/bin' >> /var/spool/cron/root
echo '*/20 * * * * /usr/sbin/ntpdate pool.ntp.org > /dev/null 2>&1' >> /var/spool/cron/root
echo '30 22 * * * php /home/wwwroot/default/xcat sendDiaryMail' >> /var/spool/cron/root
echo '0 0 * * * php /home/wwwroot/default/xcat dailyjob' >> /var/spool/cron/root
echo '*/1 * * * * php /home/wwwroot/default/xcat checkjob' >> /var/spool/cron/root
/sbin/service crond restart
}
Libtest(){
#自动选择下载节点
GIT='raw.githubusercontent.com'
LIB='download.libsodium.org'
GIT_PING=`ping -c 1 -w 1 $GIT|grep time=|awk '{print $7}'|sed "s/time=//"`
LIB_PING=`ping -c 1 -w 1 $LIB|grep time=|awk '{print $7}'|sed "s/time=//"`
echo "$GIT_PING $GIT" > ping.pl
echo "$LIB_PING $LIB" >> ping.pl
libAddr=`sort -V ping.pl|sed -n '1p'|awk '{print $2}'`
if [ "$libAddr" == "$GIT" ];then
libAddr='https://raw.githubusercontent.com/mmmwhy/ss-panel-and-ss-py-mu/master/libsodium-1.0.13.tar.gz'
else
libAddr='https://download.libsodium.org/libsodium/releases/libsodium-1.0.13.tar.gz'
fi
rm -f ping.pl
}
Get_Dist_Version()
{
if [ -s /usr/bin/python3 ]; then
Version=`/usr/bin/python3 -c 'import platform; print(platform.linux_distribution()[1][0])'`
elif [ -s /usr/bin/python2 ]; then
Version=`/usr/bin/python2 -c 'import platform; print platform.linux_distribution()[1][0]'`
fi
}
python_test(){
#测速决定使用哪个源
tsinghua='pypi.tuna.tsinghua.edu.cn'
pypi='mirror-ord.pypi.io'
doubanio='pypi.doubanio.com'
pubyun='pypi.pubyun.com'
tsinghua_PING=`ping -c 1 -w 1 $tsinghua|grep time=|awk '{print $8}'|sed "s/time=//"`
pypi_PING=`ping -c 1 -w 1 $pypi|grep time=|awk '{print $8}'|sed "s/time=//"`
doubanio_PING=`ping -c 1 -w 1 $doubanio|grep time=|awk '{print $8}'|sed "s/time=//"`
pubyun_PING=`ping -c 1 -w 1 $pubyun|grep time=|awk '{print $8}'|sed "s/time=//"`
echo "$tsinghua_PING $tsinghua" > ping.pl
echo "$pypi_PING $pypi" >> ping.pl
echo "$doubanio_PING $doubanio" >> ping.pl
echo "$pubyun_PING $pubyun" >> ping.pl
pyAddr=`sort -V ping.pl|sed -n '1p'|awk '{print $2}'`
if [ "$pyAddr" == "$tsinghua" ]; then
pyAddr='https://pypi.tuna.tsinghua.edu.cn/simple'
elif [ "$pyAddr" == "$pypi" ]; then
pyAddr='https://mirror-ord.pypi.io/simple'
elif [ "$pyAddr" == "$doubanio" ]; then
pyAddr='http://pypi.doubanio.com/simple --trusted-host pypi.doubanio.com'
elif [ "$pyAddr" == "$pubyun_PING" ]; then
pyAddr='http://pypi.pubyun.com/simple --trusted-host pypi.pubyun.com'
fi
rm -f ping.pl
}
install_centos_ssr(){
cd /root
Get_Dist_Version
if [ $Version == "7" ]; then
wget --no-check-certificate https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
rpm -ivh epel-release-latest-7.noarch.rpm
else
wget --no-check-certificate https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm
rpm -ivh epel-release-latest-6.noarch.rpm
fi
rm -rf *.rpm
yum -y update --exclude=kernel*
yum -y install git gcc python-setuptools lsof lrzsz python-devel libffi-devel openssl-devel iptables
yum -y groupinstall "Development Tools"
#第一次yum安装 supervisor pip
yum -y install supervisor python-pip
supervisord
#第二次pip supervisor是否安装成功
if [ -z "`pip`" ]; then
curl -O https://bootstrap.pypa.io/get-pip.py
python get-pip.py
rm -rf *.py
fi
if [ -z "`ps aux|grep supervisord|grep python`" ]; then
pip install supervisor
supervisord
fi
#第三次检测pip supervisor是否安装成功
if [ -z "`pip`" ]; then
if [ -z "`easy_install`"]; then
wget http://peak.telecommunity.com/dist/ez_setup.py
python ez_setup.py
fi
easy_install pip
fi
if [ -z "`ps aux|grep supervisord|grep python`" ]; then
easy_install supervisor
supervisord
fi
pip install --upgrade pip
Libtest
wget --no-check-certificate $libAddr
tar xf libsodium-1.0.13.tar.gz && cd libsodium-1.0.13
./configure && make -j2 && make install
echo /usr/local/lib > /etc/ld.so.conf.d/usr_local_lib.conf
ldconfig
git clone -b manyuser https://github.com/glzjin/shadowsocks.git "/root/shadowsocks"
cd /root/shadowsocks
chkconfig supervisord on
#第一次安装
python_test
pip install -r requirements.txt -i $pyAddr
#第二次检测是否安装成功
if [ -z "`python -c 'import requests;print(requests)'`" ]; then
pip install -r requirements.txt #用自带的源试试再装一遍
fi
#第三次检测是否成功
if [ -z "`python -c 'import requests;print(requests)'`" ]; then
mkdir python && cd python
git clone https://github.com/shazow/urllib3.git && cd urllib3
python setup.py install && cd ..
git clone https://github.com/nakagami/CyMySQL.git && cd CyMySQL
python setup.py install && cd ..
git clone https://github.com/requests/requests.git && cd requests
python setup.py install && cd ..
git clone https://github.com/pyca/pyopenssl.git && cd pyopenssl
python setup.py install && cd ..
git clone https://github.com/cedadev/ndg_httpsclient.git && cd ndg_httpsclient
python setup.py install && cd ..
git clone https://github.com/etingof/pyasn1.git && cd pyasn1
python setup.py install && cd ..
rm -rf python
fi
systemctl stop firewalld.service
systemctl disable firewalld.service
cp apiconfig.py userapiconfig.py
cp config.json user-config.json
}
install_ubuntu_ssr(){
apt-get update -y
apt-get install supervisor lsof -y
apt-get install build-essential wget -y
apt-get install iptables git -y
wget --no-check-certificate $libAddr
tar xf libsodium-1.0.13.tar.gz && cd libsodium-1.0.13
./configure && make -j2 && make install
echo /usr/local/lib > /etc/ld.so.conf.d/usr_local_lib.conf
ldconfig
apt-get install python-pip git -y
pip install cymysql
cd /root
git clone -b manyuser https://github.com/glzjin/shadowsocks.git "/root/shadowsocks"
cd shadowsocks
pip install -r requirements.txt
chmod +x *.sh
# 配置程序
cp apiconfig.py userapiconfig.py
cp config.json user-config.json
}
install_node(){
clear
echo
echo "#############################################################"
echo "# One click Install Shadowsocks-Python-Manyuser #"
echo "# Github: https://github.com/mmmwhy/ss-panel-and-ss-py-mu #"
echo "# Author: 91vps #"
echo "#############################################################"
echo
#Check Root
[ $(id -u) != "0" ] && { echo "Error: You must be root to run this script"; exit 1; }
#check OS version
check_sys(){
if [[ -f /etc/redhat-release ]]; then
release="centos"
elif cat /etc/issue | grep -q -E -i "debian"; then
release="debian"
elif cat /etc/issue | grep -q -E -i "ubuntu"; then
release="ubuntu"
elif cat /etc/issue | grep -q -E -i "centos|red hat|redhat"; then
release="centos"
elif cat /proc/version | grep -q -E -i "debian"; then
release="debian"
elif cat /proc/version | grep -q -E -i "ubuntu"; then
release="ubuntu"
elif cat /proc/version | grep -q -E -i "centos|red hat|redhat"; then
release="centos"
fi
}
install_ssr_for_each(){
check_sys
if [[ ${release} = "centos" ]]; then
install_centos_ssr
else
install_ubuntu_ssr
fi
}
# 取消文件数量限制
sed -i '$a * hard nofile 512000\n* soft nofile 512000' /etc/security/limits.conf
read -p "Please input your domain(like:https://ss.feiyang.li or http://114.114.114.114): " Userdomain
read -p "Please input your muKey(like:mupass): " Usermukey
read -p "Please input your Node_ID(like:1): " UserNODE_ID
install_ssr_for_each
cd /root/shadowsocks
echo -e "modify Config.py...\n"
sed -i "s#'zhaoj.in'#'jd.hk'#" /root/shadowsocks/userapiconfig.py
Userdomain=${Userdomain:-"http://127.0.0.1"}
sed -i "s#https://zhaoj.in#${Userdomain}#" /root/shadowsocks/userapiconfig.py
Usermukey=${Usermukey:-"mupass"}
sed -i "s#glzjin#${Usermukey}#" /root/shadowsocks/userapiconfig.py
UserNODE_ID=${UserNODE_ID:-"3"}
sed -i '2d' /root/shadowsocks/userapiconfig.py
sed -i "2a\NODE_ID = ${UserNODE_ID}" /root/shadowsocks/userapiconfig.py
# 启用supervisord
supervisorctl shutdown
#某些机器没有echo_supervisord_conf
wget -N -P /etc/ --no-check-certificate https://raw.githubusercontent.com/mmmwhy/ss-panel-and-ss-py-mu/master/supervisord.conf
supervisord
#iptables
iptables -F
iptables -X
iptables -I INPUT -p tcp -m tcp --dport 22:65535 -j ACCEPT
iptables -I INPUT -p udp -m udp --dport 22:65535 -j ACCEPT
iptables-save >/etc/sysconfig/iptables
iptables-save >/etc/sysconfig/iptables
echo 'iptables-restore /etc/sysconfig/iptables' >> /etc/rc.local
echo "/usr/bin/supervisord -c /etc/supervisord.conf" >> /etc/rc.local
chmod +x /etc/rc.d/rc.local
echo "#############################################################"
echo "# 安装完成,节点即将重启使配置生效 #"
echo "# Github: https://github.com/mmmwhy/ss-panel-and-ss-py-mu #"
echo "# Author: 91vps #"
echo "#############################################################"
reboot now
}
install_panel_and_node(){
install_ss_panel_mod_v3 $1
# 取消文件数量限制
sed -i '$a * hard nofile 512000\n* soft nofile 512000' /etc/security/limits.conf
install_centos_ssr
wget -N -P /root/shadowsocks/ --no-check-certificate https://raw.githubusercontent.com/mmmwhy/ss-panel-and-ss-py-mu/master/userapiconfig.py
# 启用supervisord
echo_supervisord_conf > /etc/supervisord.conf
sed -i '$a [program:ssr]\ncommand = python /root/shadowsocks/server.py\nuser = root\nautostart = true\nautorestart = true' /etc/supervisord.conf
supervisord
#iptables
systemctl stop firewalld.service
systemctl disable firewalld.service
yum install iptables -y
iptables -F
iptables -X
iptables -I INPUT -p tcp -m tcp --dport 22:65535 -j ACCEPT
iptables -I INPUT -p udp -m udp --dport 22:65535 -j ACCEPT
iptables-save >/etc/sysconfig/iptables
iptables-save >/etc/sysconfig/iptables
echo 'iptables-restore /etc/sysconfig/iptables' >> /etc/rc.local
echo "/usr/bin/supervisord -c /etc/supervisord.conf" >> /etc/rc.local
chmod +x /etc/rc.d/rc.local
echo "#############################################################"
echo "# 安装完成,登录http://${IPAddress}看看吧~ #"
echo "# 用户名: 91vps 密码: 91vps #"
echo "# phpmyadmin:http://${IPAddress}:888 用户名密码均为:root #"
echo "# 安装完成,节点即将重启使配置生效 #"
echo "# Github: https://github.com/mmmwhy/ss-panel-and-ss-py-mu #"
echo "#############################################################"
reboot now
}
echo
echo "#############################################################"
echo "# One click Install SS-panel and Shadowsocks-Py-Mu #"
echo "# Github: https://github.com/mmmwhy/ss-panel-and-ss-py-mu #"
echo "# Author: 91vps #"
echo "# Please choose the server you want #"
echo "# 1 SS-V3_mod_panel and node One click Install #"
echo "# 2 SS-node One click Install #"
echo "#############################################################"
echo
num=$1
if [ "${num}" == "1" ]; then
install_panel_and_node 1
else
stty erase '^H' && read -p " 请输入数字 [1-2]:" num
case "$num" in
1)
install_panel_and_node
;;
2)
install_node
;;
*)
echo "请输入正确数字 [1-2]"
;;
esac
fi