install.sh 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. #!/usr/bin/env bash
  2. red='\033[0;31m'
  3. green='\033[0;32m'
  4. yellow='\033[0;33m'
  5. plain='\033[0m'
  6. cur_dir=$(pwd)
  7. # check root
  8. [[ $EUID -ne 0 ]] && echo -e "${red}错误:${plain} 必须使用root用户运行此脚本!\n" && exit 1
  9. # check os
  10. if [[ -f /etc/redhat-release ]]; then
  11. release="centos"
  12. elif cat /etc/issue | grep -Eqi "debian"; then
  13. release="debian"
  14. elif cat /etc/issue | grep -Eqi "ubuntu"; then
  15. release="ubuntu"
  16. elif cat /etc/issue | grep -Eqi "centos|red hat|redhat"; then
  17. release="centos"
  18. elif cat /proc/version | grep -Eqi "debian"; then
  19. release="debian"
  20. elif cat /proc/version | grep -Eqi "ubuntu"; then
  21. release="ubuntu"
  22. elif cat /proc/version | grep -Eqi "centos|red hat|redhat"; then
  23. release="centos"
  24. else
  25. echo -e "${red}未检测到系统版本,请联系脚本作者!${plain}\n" && exit 1
  26. fi
  27. arch=$(arch)
  28. if [[ $arch == "x86_64" || $arch == "x64" || $arch == "amd64" ]]; then
  29. arch="amd64"
  30. elif [[ $arch == "aarch64" || $arch == "arm64" ]]; then
  31. arch="arm64"
  32. else
  33. arch="amd64"
  34. echo -e "${red}检测架构失败,使用默认架构: ${arch}${plain}"
  35. fi
  36. echo "架构: ${arch}"
  37. if [ $(getconf WORD_BIT) != '32' ] && [ $(getconf LONG_BIT) != '64' ] ; then
  38. echo "本软件不支持 32 位系统(x86),请使用 64 位系统(x86_64),如果检测有误,请联系作者"
  39. exit -1
  40. fi
  41. os_version=""
  42. # os version
  43. if [[ -f /etc/os-release ]]; then
  44. os_version=$(awk -F'[= ."]' '/VERSION_ID/{print $3}' /etc/os-release)
  45. fi
  46. if [[ -z "$os_version" && -f /etc/lsb-release ]]; then
  47. os_version=$(awk -F'[= ."]+' '/DISTRIB_RELEASE/{print $2}' /etc/lsb-release)
  48. fi
  49. if [[ x"${release}" == x"centos" ]]; then
  50. if [[ ${os_version} -le 6 ]]; then
  51. echo -e "${red}请使用 CentOS 7 或更高版本的系统!${plain}\n" && exit 1
  52. fi
  53. elif [[ x"${release}" == x"ubuntu" ]]; then
  54. if [[ ${os_version} -lt 16 ]]; then
  55. echo -e "${red}请使用 Ubuntu 16 或更高版本的系统!${plain}\n" && exit 1
  56. fi
  57. elif [[ x"${release}" == x"debian" ]]; then
  58. if [[ ${os_version} -lt 8 ]]; then
  59. echo -e "${red}请使用 Debian 8 或更高版本的系统!${plain}\n" && exit 1
  60. fi
  61. fi
  62. confirm() {
  63. if [[ $# > 1 ]]; then
  64. echo && read -p "$1 [默认$2]: " temp
  65. if [[ x"${temp}" == x"" ]]; then
  66. temp=$2
  67. fi
  68. else
  69. read -p "$1 [y/n]: " temp
  70. fi
  71. if [[ x"${temp}" == x"y" || x"${temp}" == x"Y" ]]; then
  72. return 0
  73. else
  74. return 1
  75. fi
  76. }
  77. install_base() {
  78. if [[ x"${release}" == x"centos" ]]; then
  79. yum install wget curl tar unzip -y
  80. else
  81. apt install wget curl tar unzip -y
  82. fi
  83. }
  84. uninstall_old_v2ray() {
  85. if [[ -f /usr/bin/v2ray/v2ray ]]; then
  86. confirm "检测到旧版 v2ray,是否卸载,将删除 /usr/bin/v2ray/ 与 /etc/systemd/system/v2ray.service" "Y"
  87. if [[ $? != 0 ]]; then
  88. echo "不卸载则无法安装 v2-ui"
  89. exit 1
  90. fi
  91. echo -e "${green}卸载旧版 v2ray${plain}"
  92. systemctl stop v2ray
  93. rm /usr/bin/v2ray/ -rf
  94. rm /etc/systemd/system/v2ray.service -f
  95. systemctl daemon-reload
  96. fi
  97. if [[ -f /usr/local/bin/v2ray ]]; then
  98. confirm "检测到其它方式安装的 v2ray,是否卸载,v2-ui 自带官方 xray 内核,为防止与其端口冲突,建议卸载" "Y"
  99. if [[ $? != 0 ]]; then
  100. echo -e "${red}你选择了不卸载,请自行确保其它脚本安装的 v2ray 与 v2-ui ${green}自带的官方 xray 内核${red}不会端口冲突${plain}"
  101. else
  102. echo -e "${green}开始卸载其它方式安装的 v2ray${plain}"
  103. systemctl stop v2ray
  104. bash <(curl https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh) --remove
  105. systemctl daemon-reload
  106. fi
  107. fi
  108. }
  109. #close_firewall() {
  110. # if [[ x"${release}" == x"centos" ]]; then
  111. # systemctl stop firewalld
  112. # systemctl disable firewalld
  113. # elif [[ x"${release}" == x"ubuntu" ]]; then
  114. # ufw disable
  115. # elif [[ x"${release}" == x"debian" ]]; then
  116. # iptables -P INPUT ACCEPT
  117. # iptables -P OUTPUT ACCEPT
  118. # iptables -P FORWARD ACCEPT
  119. # iptables -F
  120. # fi
  121. #}
  122. install_v2-ui() {
  123. systemctl stop v2-ui
  124. cd /usr/local/
  125. if [[ -e /usr/local/v2-ui/ ]]; then
  126. rm /usr/local/v2-ui/ -rf
  127. fi
  128. if [ $# == 0 ] ;then
  129. last_version=$(curl -Ls "https://api.github.com/repos/wixfreto/v2-ui/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
  130. if [[ ! -n "$last_version" ]]; then
  131. echo -e "${red}检测 v2-ui 版本失败,可能是超出 Github API 限制,请稍后再试,或手动指定 v2-ui 版本安装${plain}"
  132. exit 1
  133. fi
  134. echo -e "检测到 v2-ui 最新版本:${last_version},开始安装"
  135. wget -N --no-check-certificate -O /usr/local/v2-ui-linux-${arch}.tar.gz https://github.com/wixfreto/v2-ui/releases/download/${last_version}/v2-ui-linux-${arch}.tar.gz
  136. if [[ $? -ne 0 ]]; then
  137. echo -e "${red}下载 v2-ui 失败,请确保你的服务器能够下载 Github 的文件${plain}"
  138. exit 1
  139. fi
  140. else
  141. last_version=$1
  142. url="https://github.com/wixfreto/v2-ui/releases/download/${last_version}/v2-ui-linux-${arch}.tar.gz"
  143. echo -e "开始安装 v2-ui v$1"
  144. wget -N --no-check-certificate -O /usr/local/v2-ui-linux-${arch}.tar.gz ${url}
  145. if [[ $? -ne 0 ]]; then
  146. echo -e "${red}下载 v2-ui v$1 失败,请确保此版本存在${plain}"
  147. exit 1
  148. fi
  149. fi
  150. tar zxvf v2-ui-linux-${arch}.tar.gz
  151. rm v2-ui-linux-${arch}.tar.gz -f
  152. cd v2-ui
  153. chmod +x v2-ui bin/xray-v2-ui-linux-${arch}
  154. cp -f v2-ui.service /etc/systemd/system/
  155. systemctl daemon-reload
  156. systemctl enable v2-ui
  157. systemctl start v2-ui
  158. echo -e "${green}v2-ui v${last_version}${plain} 安装完成,面板已启动,"
  159. echo -e ""
  160. echo -e "如果是全新安装,默认网页端口为 ${green}65432${plain},用户名和密码默认都是 ${green}admin${plain}"
  161. echo -e "请自行确保此端口没有被其他程序占用,${yellow}并且确保 65432 端口已放行${plain}"
  162. echo -e "若想将 65432 修改为其它端口,输入 v2-ui 命令进行修改,同样也要确保你修改的端口也是放行的"
  163. echo -e ""
  164. echo -e "如果是更新面板,则按你之前的方式访问面板"
  165. echo -e ""
  166. curl -o /usr/bin/v2-ui -Ls https://raw.githubusercontent.com/wixfreto/v2-ui/master/v2-ui.sh
  167. chmod +x /usr/bin/v2-ui
  168. echo -e "v2-ui 管理脚本使用方法: "
  169. echo -e "----------------------------------------------"
  170. echo -e "v2-ui - 显示管理菜单 (功能更多)"
  171. echo -e "v2-ui start - 启动 v2-ui 面板"
  172. echo -e "v2-ui stop - 停止 v2-ui 面板"
  173. echo -e "v2-ui restart - 重启 v2-ui 面板"
  174. echo -e "v2-ui status - 查看 v2-ui 状态"
  175. echo -e "v2-ui enable - 设置 v2-ui 开机自启"
  176. echo -e "v2-ui disable - 取消 v2-ui 开机自启"
  177. echo -e "v2-ui log - 查看 v2-ui 日志"
  178. echo -e "v2-ui update - 更新 v2-ui 面板"
  179. echo -e "v2-ui install - 安装 v2-ui 面板"
  180. echo -e "v2-ui uninstall - 卸载 v2-ui 面板"
  181. echo -e "----------------------------------------------"
  182. }
  183. echo -e "${green}开始安装${plain}"
  184. install_base
  185. uninstall_old_v2ray
  186. #close_firewall
  187. install_v2-ui $1