-
Notifications
You must be signed in to change notification settings - Fork 239
/
install.sh
270 lines (236 loc) · 12.8 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
#!/bin/bash
export LANG=en_US.UTF-8
RED="\033[31m"
GREEN="\033[32m"
YELLOW="\033[33m"
PLAIN="\033[0m"
red() {
echo -e "\033[31m\033[01m$1\033[0m"
}
green() {
echo -e "\033[32m\033[01m$1\033[0m"
}
yellow() {
echo -e "\033[33m\033[01m$1\033[0m"
}
REGEX=("debian" "ubuntu" "centos|red hat|kernel|oracle linux|alma|rocky" "'amazon linux'" "fedora", "alpine")
RELEASE=("Debian" "Ubuntu" "CentOS" "CentOS" "Fedora" "Alpine")
PACKAGE_UPDATE=("apt-get update" "apt-get update" "yum -y update" "yum -y update" "yum -y update" "apk update -f")
PACKAGE_INSTALL=("apt -y install" "apt -y install" "yum -y install" "yum -y install" "yum -y install" "apk add -f")
PACKAGE_REMOVE=("apt -y remove" "apt -y remove" "yum -y remove" "yum -y remove" "yum -y remove" "apk del -f")
PACKAGE_UNINSTALL=("apt -y autoremove" "apt -y autoremove" "yum -y autoremove" "yum -y autoremove" "yum -y autoremove" "apk del -f")
[[ $EUID -ne 0 ]] && red "This script must be run as root user!" && exit 1
CMD=("$(grep -i pretty_name /etc/os-release 2>/dev/null | cut -d \" -f2)" "$(hostnamectl 2>/dev/null | grep -i system | cut -d : -f2)" "$(lsb_release -sd 2>/dev/null)" "$(grep -i description /etc/lsb-release 2>/dev/null | cut -d \" -f2)" "$(grep . /etc/redhat-release 2>/dev/null)" "$(grep . /etc/issue 2>/dev/null | cut -d \\ -f1 | sed '/^[ ]*$/d')")
for i in "${CMD[@]}"; do
SYS="$i" && [[ -n $SYS ]] && break
done
for ((int = 0; int < ${#REGEX[@]}; int++)); do
[[ $(echo "$SYS" | tr '[:upper:]' '[:lower:]') =~ ${REGEX[int]} ]] && SYSTEM="${RELEASE[int]}" && [[ -n $SYSTEM ]] && break
done
[[ -z $SYSTEM ]] && red "Script doesn't support your system. Please use a supported one" && exit 1
cur_dir=$(pwd)
os_version=$(grep -i version_id /etc/os-release | cut -d \" -f2 | cut -d . -f1)
[[ $SYSTEM == "CentOS" && ${os_version} -lt 7 ]] && echo -e "Please use the system 7 or higher version of the system!" && exit 1
[[ $SYSTEM == "Fedora" && ${os_version} -lt 29 ]] && echo -e "Please use Fedora 29 or higher version system!" && exit 1
[[ $SYSTEM == "Ubuntu" && ${os_version} -lt 16 ]] && echo -e "Please use Ubuntu 16 or higher version system!" && exit 1
[[ $SYSTEM == "Debian" && ${os_version} -lt 9 ]] && echo -e "Please use Debian 9 or higher version system!" && exit 1
archAffix(){
case "$(uname -m)" in
x86_64 | x64 | amd64 ) echo 'amd64' ;;
armv8 | arm64 | aarch64 ) echo 'arm64' ;;
s390x ) echo 's390x' ;;
* ) red "Unsupported CPU architecture! " && rm -f install.sh && exit 1 ;;
esac
}
info_bar(){
clear
echo -e "${GREEN} --------------------------------------------------------------------- ${PLAIN}"
echo -e "${GREEN} __ __ _ _ _____ ______ _ _ _ ${PLAIN}"
echo -e "${GREEN} \ \ / / | | | |_ _| | ____| | (_) | | ${PLAIN}"
echo -e "${GREEN} \ V / ______ | | | | | | | |__ _ __ __ _| |_ ___| |__ ${PLAIN}"
echo -e "${GREEN} > < |______| | | | | | | | __| | _ \ / _ | | / __| _ \ ${PLAIN}"
echo -e "${GREEN} / . \ | |__| |_| |_ | |____| | | | (_| | | \__ \ | | | ${PLAIN}"
echo -e "${GREEN} /_/ \_\ \____/|_____| |______|_| |_|\__, |_|_|___/_| |_| ${PLAIN}"
echo -e "${GREEN} __/ | ${PLAIN}"
echo -e "${GREEN} |___/ ${PLAIN}"
echo -e "${GREEN} --------------------------------------------------------------------- ${PLAIN}"
echo ""
echo -e "OS: ${GREEN} ${CMD} ${PLAIN}"
echo ""
sleep 2
}
check_status(){
yellow "Checking the IP configuration environment of the server. Please wait..." && sleep 1
WgcfIPv4Status=$(curl -s4m8 https://www.cloudflare.com/cdn-cgi/trace -k | grep warp | cut -d= -f2)
WgcfIPv6Status=$(curl -s6m8 https://www.cloudflare.com/cdn-cgi/trace -k | grep warp | cut -d= -f2)
if [[ $WgcfIPv4Status =~ "on"|"plus" ]] || [[ $WgcfIPv6Status =~ "on"|"plus" ]]; then
wg-quick down wgcf >/dev/null 2>&1
v6=$(curl -s6m8 ip.gs -k)
v4=$(curl -s4m8 ip.gs -k)
wg-quick up wgcf >/dev/null 2>&1
else
v6=$(curl -s6m8 ip.gs -k)
v4=$(curl -s4m8 ip.gs -k)
if [[ -z $v4 && -n $v6 ]]; then
yellow "IPv6 only is detected. So the DNS64 parsing server has been added automatically"
echo -e "nameserver 2606:4700:4700::1111" > /etc/resolv.conf
fi
fi
sleep 1
}
install_base(){
if [[ ! $SYSTEM == "CentOS" ]]; then
${PACKAGE_UPDATE[int]}
fi
if [[ -z $(type -P curl) ]]; then
${PACKAGE_INSTALL[int]} curl
fi
if [[ -z $(type -P tar) ]]; then
${PACKAGE_INSTALL[int]} tar
fi
check_status
}
download_xui(){
if [ $# == 0 ]; then
last_version=$(curl -Ls "https://api.github.com/repos/NidukaAkalanka/x-ui-english/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/') || last_version=$(curl -sm8 https://raw.githubusercontent.com/NidukaAkalanka/x-ui-english/main/config/version >/dev/null 2>&1)
if [[ -z "$last_version" ]]; then
red "Detecting the X-UI version failed, please make sure your server can connect to the Github API"
rm -f install.sh
exit 1
fi
yellow "The latest version of X-UI is detected: $ {last_version}, starting installation..."
wget -N --no-check-certificate -O /usr/local/x-ui-linux-$(archAffix).tar.gz https://github.com/NidukaAkalanka/x-ui-english/releases/download/${last_version}/x-ui-linux-$(archAffix).tar.gz
if [[ $? -ne 0 ]]; then
red "Download the X-UI failure, please make sure your server can connect and download files from github"
rm -f install.sh
exit 1
fi
else
last_version=$1
url="https://github.com/NidukaAkalanka/x-ui-english/releases/download/${last_version}/x-ui-linux-$(archAffix).tar.gz"
yellow "Starting installation x-ui $1"
wget -N --no-check-certificate -O /usr/local/x-ui-linux-$(archAffix).tar.gz ${url}
if [[ $? -ne 0 ]]; then
red "Download X-UI V $ 1 Failure, please make sure this version exists"
rm -f install.sh
exit 1
fi
fi
cd /usr/local/
tar zxvf x-ui-linux-$(archAffix).tar.gz
rm -f x-ui-linux-$(archAffix).tar.gz
cd x-ui
chmod +x x-ui bin/xray-linux-$(archAffix)
cp -f x-ui.service /etc/systemd/system/
wget -N --no-check-certificate https://raw.githubusercontent.com/NidukaAkalanka/x-ui-english/main/x-ui.sh -O /usr/bin/x-ui
chmod +x /usr/local/x-ui/x-ui.sh
chmod +x /usr/bin/x-ui
}
panel_config() {
yellow "For security reasons, after the installation/ update, you need to remember the port and the account password"
read -rp "Please set the login user name [default is a random user name]: " config_account
[[ -z $config_account ]] && config_account=$(date +%s%N | md5sum | cut -c 1-8)
read -rp "Please set the login password. Don't include spaces [default is a random password]: " config_password
[[ -z $config_password ]] && config_password=$(date +%s%N | md5sum | cut -c 1-8)
read -rp "Please set the panel access port [default is a random port]: " config_port
[[ -z $config_port ]] && config_port=$(shuf -i 1000-65535 -n 1)
until [[ -z $(ss -ntlp | awk '{print $4}' | grep -w "$config_port") ]]; do
if [[ -n $(ss -ntlp | awk '{print $4}' | grep -w "$config_port") ]]; then
yellow "The port you set is currently in uese, please reassign another port"
read -rp "Please set the panel access port [default ia a random port]: " config_port
[[ -z $config_port ]] && config_port=$(shuf -i 1000-65535 -n 1)
fi
done
/usr/local/x-ui/x-ui setting -username ${config_account} -password ${config_password} >/dev/null 2>&1
/usr/local/x-ui/x-ui setting -port ${config_port} >/dev/null 2>&1
}
install_xui() {
info_bar
if [[ -e /usr/local/x-ui/ ]]; then
yellow "The X-UI panel has been installed at present. Please confirm you want to update it. There would not be any data loss."
read -rp "Please enter the option [y/n, default n]: " yn
if [[ $yn =~ "Y"|"y" ]]; then
cd
mv /etc/x-ui/x-ui.db /etc/x-ui-english.db.bak # Backing up Chinese X-UI db (if any)
mv /etc/x-ui-english/x-ui-english.db /etc/x-ui-english.db.bak # Backing up English X-UI db
systemctl stop x-ui
systemctl disable x-ui
rm /etc/systemd/system/x-ui.service -f
systemctl daemon-reload
systemctl reset-failed
rm /etc/x-ui/ -rf
rm /usr/local/x-ui/ -rf
rm /usr/bin/x-ui -f
else
red "Cancelled. The script exits!"
exit 1
fi
fi
systemctl stop x-ui >/dev/null 2>&1
install_base
download_xui $1
cd
mkdir /etc/x-ui-english #makidng a directory to import the backup
mv /etc/x-ui-english.db.bak /etc/x-ui-english/x-ui-english.db # Importing the backed up db
panel_config
systemctl daemon-reload
systemctl enable x-ui >/dev/null 2>&1
systemctl start x-ui
systemctl restart x-ui
cd $cur_dir
rm -f install.sh
green "X-UI v${last_version} Installation / Upgrade is Completed, The Panel has been Started"
echo -e ""
echo -e "${GREEN} -------------------------------------------------------------------- ${PLAIN}"
echo -e "${GREEN} __ __ _ _ _____ ______ _ _ _ ${PLAIN}"
echo -e "${GREEN} \ \ / / | | | |_ _| | ____| | (_) | | ${PLAIN}"
echo -e "${GREEN} \ V / ______ | | | | | | | |__ _ __ __ _| |_ ___| |__ ${PLAIN}"
echo -e "${GREEN} > < |______| | | | | | | | __| | _ \ / _ | | / __| _ \ ${PLAIN}"
echo -e "${GREEN} / . \ | |__| |_| |_ | |____| | | | (_| | | \__ \ | | | ${PLAIN}"
echo -e "${GREEN} /_/ \_\ \____/|_____| |______|_| |_|\__, |_|_|___/_| |_| ${PLAIN}"
echo -e "${GREEN} __/ | ${PLAIN}"
echo -e "${GREEN} |___/ ${PLAIN}"
echo -e "${GREEN} --------------------------------------------------------------------- ${PLAIN}"
echo -e ""
echo -e "------------------------------------------------------------------------------"
echo -e "X-UI MANAGEMENT SCRIPT USAGE: "
echo -e "------------------------------------------------------------------------------"
echo -e "x-ui - Show the management menu"
echo -e "x-ui start - Start X-UI panel"
echo -e "x-ui stop - Stop X-UI panel"
echo -e "x-ui restart - Restart X-UI panel"
echo -e "x-ui status - View X-UI status"
echo -e "x-ui enable - Set X-UI boot self-starting"
echo -e "x-ui disable - Cancel X-UI boot self-starting"
echo -e "x-ui log - View x-ui log"
echo -e "x-ui v2-ui - Migrate V2-UI to X-UI"
echo -e "x-ui update - Update X-UI panel"
echo -e "x-ui install - Install X-UI panel"
echo -e "x-ui uninstall - Uninstall X-UI panel"
echo -e "------------------------------------------------------------------------------"
echo -e "------------------------------------------------------------------------------"
echo -e "Please do consider supporting authors"
echo -e "------------------------------------------------------------------------------"
echo -e "vaxilu - https://github.com/vaxilu"
echo -e "taffychan - https://github.com/taffychan"
echo -e "Hossin Asaadi - https://github.com/hossinasaadi"
echo -e "Yu FranzKafka - https://github.com/FranzKafkaYu"
echo -e "Niduka Akalanka - https://github.com/NidukaAkalanka"
echo -e "--------------------------------------------------------------------------------"
show_login_info
echo -e ""
yellow "(If you cannot access the X-UI panel, first enter the X-UI command in the SSH command line, and then select the 17 option to let go of the firewall port)"
}
show_login_info(){
if [[ -n $v4 && -z $v6 ]]; then
echo -e "Panel IPv4 login address is: ${GREEN}http://$v4:$config_port ${PLAIN}"
elif [[ -n $v6 && -z $v4 ]]; then
echo -e "Panel IPv6 login address is: ${GREEN}http://[$v6]:$config_port ${PLAIN}"
elif [[ -n $v4 && -n $v6 ]]; then
echo -e "Panel IPv4 login address is: ${GREEN}http://$v4:$config_port ${PLAIN}"
echo -e "Panel IPv6 login address is: ${GREEN}http://[$v6]:$config_port ${PLAIN}"
fi
echo -e "Username: ${GREEN}$config_account ${PLAIN}"
echo -e "Password: ${GREEN}$config_password ${PLAIN}"
}
install_xui $1