123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007 |
- #!/usr/bin/env bash
- PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
- export PATH
- # System Required: CentOS 7+/Ubuntu 18+/Debian 10+
- # Version: v2.2.0
- # Description: One click Install Trojan Panel server
- # Author: jonssonyan <https://jonssonyan.com>
- # Github: https://github.com/trojanpanel/install-script
- init_var() {
- ECHO_TYPE="echo -e"
- package_manager=""
- release=""
- get_arch=""
- can_google=0
- # Docker
- DOCKER_MIRROR='"https://hub-mirror.c.163.com","https://ccr.ccs.tencentyun.com","https://mirror.baidubce.com","https://dockerproxy.com"'
- # Project directory
- TP_DATA="/tpdata/"
- STATIC_HTML="https://github.com/trojanpanel/install-script/releases/download/v1.0/html.tar.gz"
- # Web
- WEB_PATH="/tpdata/web/"
- # Cert
- CERT_PATH="/tpdata/cert/"
- DOMAIN_FILE="/tpdata/domain.lock"
- domain=""
- crt_path=""
- key_path=""
- # Caddy2
- CADDY_DATA="/tpdata/caddy/"
- CADDY_CONFIG="${CADDY_DATA}config.json"
- CADDY_LOG="${CADDY_DATA}logs/"
- CADDY_CERT_DIR="${CERT_PATH}certificates/acme-v02.api.letsencrypt.org-directory/"
- caddy_port=80
- caddy_remote_port=8863
- your_email=""
- ssl_option=1
- ssl_module_type=1
- ssl_module="acme"
- # Nginx
- NGINX_DATA="/tpdata/nginx/"
- NGINX_CONFIG="${NGINX_DATA}default.conf"
- nginx_port=80
- nginx_remote_port=8863
- nginx_https=1
- # MariaDB
- MARIA_DATA="/tpdata/mariadb/"
- mariadb_ip="127.0.0.1"
- mariadb_port=9507
- mariadb_user="root"
- mariadb_pas=""
- # Redis
- REDIS_DATA="/tpdata/redis/"
- redis_host="127.0.0.1"
- redis_port=6378
- redis_pass=""
- # Trojan Panel Frontend
- TROJAN_PANEL_UI_DATA="/tpdata/trojan-panel-ui/"
- # Nginx
- UI_NGINX_DATA="${TROJAN_PANEL_UI_DATA}nginx/"
- UI_NGINX_CONFIG="${UI_NGINX_DATA}default.conf"
- trojan_panel_ui_port=8888
- ui_https=1
- trojan_panel_ip="127.0.0.1"
- trojan_panel_server_port=8081
- # Trojan Panel Backend
- TROJAN_PANEL_DATA="/tpdata/trojan-panel/"
- TROJAN_PANEL_WEBFILE="${TROJAN_PANEL_DATA}webfile/"
- TROJAN_PANEL_LOGS="${TROJAN_PANEL_DATA}logs/"
- TROJAN_PANEL_CONFIG="${TROJAN_PANEL_DATA}config/"
- trojan_panel_config_path="${TROJAN_PANEL_DATA}config/config.ini"
- trojan_panel_port=8081
- # Trojan Panel Core
- TROJAN_PANEL_CORE_DATA="/tpdata/trojan-panel-core/"
- TROJAN_PANEL_CORE_LOGS="${TROJAN_PANEL_CORE_DATA}logs/"
- TROJAN_PANEL_CORE_CONFIG="${TROJAN_PANEL_CORE_DATA}config/"
- trojan_panel_core_config_path="${TROJAN_PANEL_CORE_DATA}config/config.ini"
- database="trojan_panel_db"
- account_table="account"
- grpc_port=8100
- trojan_panel_core_port=8082
- # Version
- trojan_panel_ui_current_version=""
- trojan_panel_ui_latest_version="v2.1.6"
- trojan_panel_current_version=""
- trojan_panel_latest_version="v2.2.0"
- trojan_panel_core_current_version=""
- trojan_panel_core_latest_version="v2.2.1"
- # SQL
- sql_215="alter table account change validity_period preset_expire int unsigned default 0 not null comment '预设过期时长';alter table account add preset_quota bigint default 0 not null comment '预设配额' after preset_expire;update account set preset_quota = quota where last_login_time = 0;update account set quota = 0 where last_login_time = 0;alter table node add priority int default 100 not null comment '优先级' after port;INSERT INTO casbin_rule (p_type, v0, v1, v2, v3, v4, v5) VALUES ('p', 'sysadmin', '/api/account/clashSubscribeForSb', 'GET', 'default', 'default', 'default');alter table node_hysteria add server_name varchar(64) default '' not null comment '用于验证服务端证书的 hostname' after down_mbps;alter table node_hysteria add insecure tinyint(1) default 0 not null comment '忽略一切证书错误' after server_name;alter table node_hysteria add fast_open tinyint(1) default 0 not null comment '启用 Fast Open (降低连接建立延迟)' after insecure;"
- }
- echo_content() {
- case $1 in
- "red")
- ${ECHO_TYPE} "\033[31m$2\033[0m"
- ;;
- "green")
- ${ECHO_TYPE} "\033[32m$2\033[0m"
- ;;
- "yellow")
- ${ECHO_TYPE} "\033[33m$2\033[0m"
- ;;
- "blue")
- ${ECHO_TYPE} "\033[34m$2\033[0m"
- ;;
- "purple")
- ${ECHO_TYPE} "\033[35m$2\033[0m"
- ;;
- "skyBlue")
- ${ECHO_TYPE} "\033[36m$2\033[0m"
- ;;
- "white")
- ${ECHO_TYPE} "\033[37m$2\033[0m"
- ;;
- esac
- }
- mkdir_tools() {
- # Project directory
- mkdir -p ${TP_DATA}
- # Web
- mkdir -p ${WEB_PATH}
- # Cert
- mkdir -p ${CERT_PATH}
- touch ${DOMAIN_FILE}
- # Caddy2
- mkdir -p ${CADDY_DATA}
- touch ${CADDY_CONFIG}
- mkdir -p ${CADDY_LOG}
- # Nginx
- mkdir -p ${NGINX_DATA}
- touch ${NGINX_CONFIG}
- # MariaDB
- mkdir -p ${MARIA_DATA}
- # Redis
- mkdir -p ${REDIS_DATA}
- # Trojan Panel Frontend
- mkdir -p ${TROJAN_PANEL_UI_DATA}
- # Nginx
- mkdir -p ${UI_NGINX_DATA}
- touch ${UI_NGINX_CONFIG}
- # Trojan Panel Backend
- mkdir -p ${TROJAN_PANEL_DATA}
- mkdir -p ${TROJAN_PANEL_LOGS}
- # Trojan Panel Core
- mkdir -p ${TROJAN_PANEL_CORE_DATA}
- mkdir -p ${TROJAN_PANEL_CORE_LOGS}
- }
- can_connect() {
- ping -c2 -i0.3 -W1 "$1" &>/dev/null
- if [[ "$?" == "0" ]]; then
- return 0
- else
- return 1
- fi
- }
- # query .ini configuration file information
- get_ini_value() {
- local config_file="$1"
- local key="$2"
- local section=""
- local section_flag=0
- # split group and key names
- IFS='.' read -r group_name key_name <<<"$key"
- while IFS='=' read -r name val; do
- # processing section name
- if [[ $name =~ ^\[(.*)\]$ ]]; then
- section="${BASH_REMATCH[1]}"
- if [[ $section == $group_name ]]; then
- section_flag=1
- else
- section_flag=0
- fi
- continue
- fi
- # extract the value of the configuration item
- if [[ $section_flag -eq 1 && $name == $key_name ]]; then
- echo "$val"
- return
- fi
- done <"$config_file"
- }
- # Version number comparison greater than or equal to
- version_ge() {
- local v1=${1#v}
- local v2=${2#v}
- local v1_parts=(${v1//./ })
- local v2_parts=(${v2//./ })
- for ((i = 0; i < 3; i++)); do
- if ((${v1_parts[i]} < ${v2_parts[i]})); then
- echo false
- return 0
- elif ((${v1_parts[i]} > ${v2_parts[i]})); then
- echo true
- return 0
- fi
- done
- echo true
- }
- check_sys() {
- if [[ $(command -v yum) ]]; then
- package_manager='yum'
- elif [[ $(command -v dnf) ]]; then
- package_manager='dnf'
- elif [[ $(command -v apt) ]]; then
- package_manager='apt'
- elif [[ $(command -v apt-get) ]]; then
- package_manager='apt-get'
- fi
- if [[ -z "${package_manager}" ]]; then
- echo_content red "The system is not currently supported"
- exit 0
- fi
- if [[ -n $(find /etc -name "redhat-release") ]] || grep </proc/version -q -i "centos"; then
- release="centos"
- elif grep </etc/issue -q -i "debian" && [[ -f "/etc/issue" ]] || grep </etc/issue -q -i "debian" && [[ -f "/proc/version" ]]; then
- release="debian"
- elif grep </etc/issue -q -i "ubuntu" && [[ -f "/etc/issue" ]] || grep </etc/issue -q -i "ubuntu" && [[ -f "/proc/version" ]]; then
- release="ubuntu"
- fi
- if [[ -z "${release}" ]]; then
- echo_content red "The operating system only supports CentOS 7+/Ubuntu 18+/Debian 10+"
- exit 0
- fi
- if [[ $(arch) =~ ("x86_64"|"amd64"|"arm64"|"aarch64"|"arm"|"s390x") ]]; then
- get_arch=$(arch)
- fi
- if [[ -z "${get_arch}" ]]; then
- echo_content red "The processor architecture only supports amd64/arm64/arm/s390x"
- exit 0
- fi
- can_connect www.google.com
- [[ "$?" == "0" ]] && can_google=1
- }
- depend_install() {
- if [[ "${package_manager}" != 'yum' && "${package_manager}" != 'dnf' ]]; then
- ${package_manager} update -y
- fi
- ${package_manager} install -y \
- curl \
- wget \
- tar \
- lsof \
- systemd
- }
- # Install Docker
- install_docker() {
- if [[ ! $(docker -v 2>/dev/null) ]]; then
- echo_content green "---> Install Docker"
- # turn off firewall
- if [[ "$(firewall-cmd --state 2>/dev/null)" == "running" ]]; then
- if [[ "${release}" == "centos" ]]; then
- systemctl disable firewalld
- elif [[ "${release}" == "debian" || "${release}" == "ubuntu" ]]; then
- sudo ufw disable
- fi
- fi
- # set time zone
- timedatectl set-timezone Asia/Shanghai
- if [[ ${can_google} == 0 ]]; then
- sh <(curl -sL https://get.docker.com) --mirror Aliyun
- mkdir -p /etc/docker &&
- cat >/etc/docker/daemon.json <<EOF
- {
- "registry-mirrors":[${DOCKER_MIRROR}],
- "log-driver":"json-file",
- "log-opts":{
- "max-size":"50m",
- "max-file":"3"
- }
- }
- EOF
- else
- sh <(curl -sL https://get.docker.com)
- mkdir -p /etc/docker &&
- cat >/etc/docker/daemon.json <<EOF
- {
- "log-driver":"json-file",
- "log-opts":{
- "max-size":"50m",
- "max-file":"3"
- }
- }
- EOF
- fi
- systemctl enable docker &&
- systemctl restart docker
- if [[ $(docker -v 2>/dev/null) ]]; then
- echo_content skyBlue "---> Docker installation completed"
- else
- echo_content red "---> Docker installation failed"
- exit 0
- fi
- else
- echo_content skyBlue "---> You have installed Docker"
- fi
- }
- # Custom Settings Certificate
- install_custom_cert() {
- if [[ -z "$(cat "${DOMAIN_FILE}")" ]]; then
- while read -r -p "Please enter the file path of the .crt certificate (required): " crt_path; do
- if [[ -z "${crt_path}" ]]; then
- echo_content red "Path cannot be empty"
- else
- if [[ ! -f "${crt_path}" ]]; then
- echo_content red "The file path for the .crt certificate does not exist"
- else
- cp "${crt_path}" "${CERT_PATH}$1.crt"
- break
- fi
- fi
- done
- while read -r -p "Please enter the file path of the .key certificate (required): " key_path; do
- if [[ -z "${key_path}" ]]; then
- echo_content red "Path cannot be empty"
- else
- if [[ ! -f "${key_path}" ]]; then
- echo_content red "The file path for the .key certificate does not exist"
- else
- cp "${key_path}" "${CERT_PATH}$1.key"
- break
- fi
- fi
- done
- cat >${DOMAIN_FILE} <<EOF
- $1
- EOF
- echo_content red "\n=============================================================="
- echo_content skyBlue "---> Custom settings certificate installation completed"
- echo_content yellow "Certificate Directory: ${CERT_PATH}"
- echo_content red "\n=============================================================="
- fi
- }
- # Caddy2 https custom settings certificate configuration file
- caddy2_https_config() {
- domain=$1
- cat >${CADDY_CONFIG} <<EOF
- {
- "admin":{
- "disabled":true
- },
- "logging":{
- "logs":{
- "default":{
- "writer":{
- "output":"file",
- "filename":"${CADDY_LOG}error.log"
- },
- "level":"ERROR"
- }
- }
- },
- "storage":{
- "module":"file_system",
- "root":"${CERT_PATH}"
- },
- "apps":{
- "http":{
- "http_port": ${caddy_port},
- "servers":{
- "srv0":{
- "listen":[
- ":${caddy_port}"
- ],
- "routes":[
- {
- "match":[
- {
- "host":[
- "${domain}"
- ]
- }
- ],
- "handle":[
- {
- "handler":"static_response",
- "headers":{
- "Location":[
- "https://{http.request.host}:${caddy_remote_port}{http.request.uri}"
- ]
- },
- "status_code":301
- }
- ]
- }
- ]
- },
- "srv1":{
- "listen":[
- ":${caddy_remote_port}"
- ],
- "routes":[
- {
- "handle":[
- {
- "handler":"subroute",
- "routes":[
- {
- "match":[
- {
- "host":[
- "${domain}"
- ]
- }
- ],
- "handle":[
- {
- "handler":"file_server",
- "root":"${WEB_PATH}",
- "index_names":[
- "index.html",
- "index.htm"
- ]
- }
- ],
- "terminal":true
- }
- ]
- }
- ]
- }
- ],
- "tls_connection_policies":[
- {
- "match":{
- "sni":[
- "${domain}"
- ]
- }
- }
- ],
- "automatic_https":{
- "disable":true
- }
- }
- }
- },
- "tls":{
- "certificates":{
- "automate":[
- "${domain}"
- ],
- "load_files":[
- {
- "certificate":"${CADDY_CERT_DIR}${domain}/${domain}.crt",
- "key":"${CADDY_CERT_DIR}${domain}/${domain}.key"
- }
- ]
- },
- "automation":{
- "policies":[
- {
- "issuers":[
- {
- "module":"${ssl_module}",
- "email":"${your_email}"
- }
- ]
- }
- ]
- }
- }
- }
- }
- EOF
- }
- # Caddy2 https automatic application and renewal certificate configuration file
- caddy2_https_auto_config() {
- domain=$1
- cat >${CADDY_CONFIG} <<EOF
- {
- "admin":{
- "disabled":true
- },
- "logging":{
- "logs":{
- "default":{
- "writer":{
- "output":"file",
- "filename":"${CADDY_LOG}error.log"
- },
- "level":"ERROR"
- }
- }
- },
- "storage":{
- "module":"file_system",
- "root":"${CERT_PATH}"
- },
- "apps":{
- "http":{
- "http_port": ${caddy_port},
- "servers":{
- "srv0":{
- "listen":[
- ":${caddy_port}"
- ],
- "routes":[
- {
- "match":[
- {
- "host":[
- "${domain}"
- ]
- }
- ],
- "handle":[
- {
- "handler":"static_response",
- "headers":{
- "Location":[
- "https://{http.request.host}:${caddy_remote_port}{http.request.uri}"
- ]
- },
- "status_code":301
- }
- ]
- }
- ]
- },
- "srv1":{
- "listen":[
- ":${caddy_remote_port}"
- ],
- "routes":[
- {
- "handle":[
- {
- "handler":"subroute",
- "routes":[
- {
- "match":[
- {
- "host":[
- "${domain}"
- ]
- }
- ],
- "handle":[
- {
- "handler":"file_server",
- "root":"${WEB_PATH}",
- "index_names":[
- "index.html",
- "index.htm"
- ]
- }
- ],
- "terminal":true
- }
- ]
- }
- ]
- }
- ],
- "tls_connection_policies":[
- {
- "match":{
- "sni":[
- "${domain}"
- ]
- }
- }
- ],
- "automatic_https":{
- "disable":true
- }
- }
- }
- },
- "tls":{
- "certificates":{
- "automate":[
- "${domain}"
- ]
- },
- "automation":{
- "policies":[
- {
- "issuers":[
- {
- "module":"${ssl_module}",
- "email":"${your_email}"
- }
- ]
- }
- ]
- }
- }
- }
- }
- EOF
- }
- # Install Caddy2
- install_caddy2() {
- if [[ -z $(docker ps -a -q -f "name=^trojan-panel-caddy$") ]]; then
- echo_content green "---> Install Caddy2+https"
- wget --no-check-certificate -O ${WEB_PATH}html.tar.gz -N ${STATIC_HTML} &&
- tar -zxvf ${WEB_PATH}html.tar.gz -k -C ${WEB_PATH}
- read -r -p "Please enter the port of Caddy2 (default: 80): " caddy_port
- [[ -z "${caddy_port}" ]] && caddy_port=80
- read -r -p "Please enter the forwarding port of Caddy2 (default: 8863): " caddy_remote_port
- [[ -z "${caddy_remote_port}" ]] && caddy_remote_port=8863
- echo_content yellow "Tip: Please confirm that the domain name has been resolved to this machine, otherwise the installation may fail"
- while read -r -p "Please enter your domain name (required): " domain; do
- if [[ -z "${domain}" ]]; then
- echo_content red "Domain name cannot be empty"
- else
- break
- fi
- done
- read -r -p "Please enter your email (optional): " your_email
- while read -r -p "Please choose the way to set up the certificate? (1/automatically apply for and renew the certificate 2/manually set the certificate path default: 1: " ssl_option; do
- if [[ -z ${ssl_option} || ${ssl_option} == 1 ]]; then
- while read -r -p "Please choose the way to apply for the certificate (1/acme 2/zerossl default: 1: " ssl_module_type; do
- if [[ -z "${ssl_module_type}" || ${ssl_module_type} == 1 ]]; then
- ssl_module="acme"
- CADDY_CERT_DIR="${CERT_PATH}certificates/acme-v02.api.letsencrypt.org-directory/"
- break
- elif [[ ${ssl_module_type} == 2 ]]; then
- ssl_module="zerossl"
- CADDY_CERT_DIR="${CERT_PATH}certificates/acme.zerossl.com-v2-dv90/"
- break
- else
- echo_content red "Cannot enter other characters except 1 and 2"
- fi
- done
- caddy2_https_auto_config "${domain}"
- break
- elif [[ ${ssl_option} == 2 ]]; then
- install_custom_cert "${domain}"
- caddy2_https_config "${domain}"
- break
- else
- echo_content red "Cannot enter other characters except 1 and 2"
- fi
- done
- # Caddy2 temporary listening port for automatic certificate application
- if [[ -n $(lsof -i:${caddy_port},${caddy_remote_port} -t) ]]; then
- kill -9 "$(lsof -i:${caddy_port},${caddy_remote_port} -t)"
- fi
- docker pull caddy:2.6.2 &&
- docker run -d --name trojan-panel-caddy --restart always \
- --network=host \
- -v "${CADDY_CONFIG}":"${CADDY_CONFIG}" \
- -v ${CERT_PATH}:"${CADDY_CERT_DIR}${domain}/" \
- -v ${WEB_PATH}:${WEB_PATH} \
- -v ${CADDY_LOG}:${CADDY_LOG} \
- caddy:2.6.2 caddy run --config ${CADDY_CONFIG}
- cat >${DOMAIN_FILE} <<EOF
- ${domain}
- EOF
- if [[ -n $(docker ps -q -f "name=^trojan-panel-caddy$" -f "status=running") ]]; then
- echo_content red "\n=============================================================="
- echo_content skyBlue "---> Caddy2+https installation completed"
- echo_content yellow "Certificate Directory: ${CERT_PATH}"
- echo_content red "\n=============================================================="
- else
- echo_content red "---> Caddy2+https installation fails or runs abnormally, please try to repair or uninstall and reinstall"
- exit 0
- fi
- else
- echo_content skyBlue "---> You have installed Caddy2+https"
- fi
- }
- # Nginx http configuration file
- nginx_http_config() {
- cat >${NGINX_CONFIG} <<-EOF
- server {
- listen ${nginx_port};
- server_name localhost;
- location / {
- root ${WEB_PATH};
- index index.html index.htm;
- }
- error_page 497 http://\$host:${nginx_port}\$request_uri;
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root /usr/share/nginx/html;
- }
- }
- EOF
- }
- # Nginx https configuration file
- nginx_https_config() {
- domain=$1
- cat >${NGINX_CONFIG} <<-EOF
- server {
- listen ${nginx_port};
- server_name localhost;
- return 301 http://\$host:${nginx_remote_port}\$request_uri;
- }
- server {
- listen ${nginx_remote_port} ssl;
- server_name localhost;
- # force ssl
- ssl on;
- ssl_certificate ${CERT_PATH}${domain}.crt;
- ssl_certificate_key ${CERT_PATH}${domain}.key;
- # cache validity period
- ssl_session_timeout 5m;
- # secure link optional encryption protocol
- ssl_protocols TLSv1.3;
- # encryption algorithm
- ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
- # use server-side preferred algorithm
- ssl_prefer_server_ciphers on;
- #access_log /var/log/nginx/host.access.log main;
- location / {
- root ${WEB_PATH};
- index index.html index.htm;
- }
- #error_page 404 /404.html;
- #497 http->https
- error_page 497 https://\$host:${nginx_remote_port}\$request_uri;
- # redirect server error pages to the static page /50x.html
- #
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root /usr/share/nginx/html;
- }
- }
- EOF
- }
- # Install Nginx
- install_nginx() {
- if [[ -z $(docker ps -a -q -f "name=^trojan-panel-nginx$") ]]; then
- echo_content green "---> Install Nginx"
- wget --no-check-certificate -O ${WEB_PATH}html.tar.gz -N ${STATIC_HTML} &&
- tar -zxvf ${WEB_PATH}html.tar.gz -k -C ${WEB_PATH}
- read -r -p "Please enter the port of Nginx (default: 80): " nginx_port
- [[ -z "${nginx_port}" ]] && nginx_port=80
- read -r -p "Please enter the forwarding port of Nginx (default: 8863): " nginx_remote_port
- [[ -z "${nginx_remote_port}" ]] && nginx_remote_port=8863
- while read -r -p "Please choose whether to enable https in Nginx? (0/off 1/on default: 1): " nginx_https; do
- if [[ -z ${nginx_https} || ${nginx_https} == 1 ]]; then
- install_custom_cert "custom_cert"
- nginx_https_config "custom_cert"
- break
- elif [[ ${nginx_https} == 0 ]]; then
- nginx_http_config
- break
- else
- echo_content red "Cannot enter other characters except 1 and 2"
- fi
- done
- docker pull nginx:1.20-alpine &&
- docker run -d --name trojan-panel-nginx --restart always \
- --network=host \
- -v "${NGINX_CONFIG}":"/etc/nginx/conf.d/default.conf" \
- -v ${CERT_PATH}:${CERT_PATH} \
- -v ${WEB_PATH}:${WEB_PATH} \
- nginx:1.20-alpine
- if [[ -n $(docker ps -q -f "name=^trojan-panel-nginx$" -f "status=running") ]]; then
- echo_content skyBlue "---> Nginx installation completed"
- else
- echo_content red "---> Nginx installation fails or runs abnormally, please try to repair or uninstall and reinstall"
- exit 0
- fi
- else
- echo_content skyBlue "---> You have installed Nginx"
- fi
- }
- # Install a web server
- install_reverse_proxy() {
- if [[ -z $(docker ps -a -q -f "name=^trojan-panel-caddy$|^trojan-panel-nginx$") ]]; then
- echo_content green "---> Install a web server"
- while :; do
- echo_content yellow "1. Install Caddy2+https (recommend)"
- echo_content yellow "2. Install Nginx"
- echo_content yellow "3. Not install"
- read -r -p "Please select (default: 1): " whether_install_reverse_proxy
- [[ -z "${whether_install_reverse_proxy}" ]] && whether_install_reverse_proxy=1
- case ${whether_install_reverse_proxy} in
- 1)
- install_caddy2
- break
- ;;
- 2)
- install_nginx
- break
- ;;
- 3)
- break
- ;;
- *)
- echo_content red "No such option"
- continue
- ;;
- esac
- done
- echo_content skyBlue "---> Web server installation completed"
- fi
- }
- # Set certificate
- install_cert() {
- if [[ -z "$(cat "${DOMAIN_FILE}")" ]]; then
- echo_content green "---> Set certificate"
- while :; do
- echo_content yellow "1. Custom certificate"
- echo_content yellow "2. Not set"
- read -r -p "Please select (default: 1): " whether_install_cert
- [[ -z "${whether_install_cert}" ]] && whether_install_cert=1
- case ${whether_install_cert} in
- 1)
- install_custom_cert "custom_cert"
- break
- ;;
- 2)
- break
- ;;
- *)
- echo_content red "No such option"
- continue
- ;;
- esac
- done
- echo_content green "---> Certificate setup completed"
- fi
- }
- # Install MariaDB
- install_mariadb() {
- if [[ -z $(docker ps -a -q -f "name=^trojan-panel-mariadb$") ]]; then
- echo_content green "---> Install MariaDB"
- read -r -p "Please enter the port of MariaDB (default: 9507): " mariadb_port
- [[ -z "${mariadb_port}" ]] && mariadb_port=9507
- read -r -p "Please enter the username of MariaDB (default: root): " mariadb_user
- [[ -z "${mariadb_user}" ]] && mariadb_user="root"
- while read -r -p "Please enter the password of MariaDB (required): " mariadb_pas; do
- if [[ -z "${mariadb_pas}" ]]; then
- echo_content red "Password can not be empty"
- else
- break
- fi
- done
- if [[ "${mariadb_user}" == "root" ]]; then
- docker pull mariadb:10.7.3 &&
- docker run -d --name trojan-panel-mariadb --restart always \
- --network=host \
- -e MYSQL_DATABASE="trojan_panel_db" \
- -e MYSQL_ROOT_PASSWORD="${mariadb_pas}" \
- -e TZ=Asia/Shanghai \
- mariadb:10.7.3 \
- --port ${mariadb_port} \
- --character-set-server=utf8mb4 \
- --collation-server=utf8mb4_unicode_ci
- else
- docker pull mariadb:10.7.3 &&
- docker run -d --name trojan-panel-mariadb --restart always \
- --network=host \
- -e MYSQL_DATABASE="trojan_panel_db" \
- -e MYSQL_ROOT_PASSWORD="${mariadb_pas}" \
- -e MYSQL_USER="${mariadb_user}" \
- -e MYSQL_PASSWORD="${mariadb_pas}" \
- -e TZ=Asia/Shanghai \
- mariadb:10.7.3 \
- --port ${mariadb_port} \
- --character-set-server=utf8mb4 \
- --collation-server=utf8mb4_unicode_ci
- fi
- if [[ -n $(docker ps -q -f "name=^trojan-panel-mariadb$" -f "status=running") ]]; then
- echo_content skyBlue "---> MariaDB installation completed"
- echo_content yellow "---> The MariaDB password of root (please keep it safe): ${mariadb_pas}"
- if [[ "${mariadb_user}" != "root" ]]; then
- echo_content yellow "---> The MariaDB password of ${mariadb_user} (please keep it safe): ${mariadb_pas}"
- fi
- else
- echo_content red "---> MariaDB installation fails or runs abnormally, please try to repair or uninstall and reinstall"
- exit 0
- fi
- else
- echo_content skyBlue "---> You have installed MariaDB"
- fi
- }
- # Install Redis
- install_redis() {
- if [[ -z $(docker ps -a -q -f "name=^trojan-panel-redis$") ]]; then
- echo_content green "---> Install Redis"
- read -r -p "Please enter the port of Redis (default: 6378): " redis_port
- [[ -z "${redis_port}" ]] && redis_port=6378
- while read -r -p "Please enter the Redis password (required): " redis_pass; do
- if [[ -z "${redis_pass}" ]]; then
- echo_content red "Password can not be empty"
- else
- break
- fi
- done
- docker pull redis:6.2.7 &&
- docker run -d --name trojan-panel-redis --restart always \
- --network=host \
- redis:6.2.7 \
- redis-server --requirepass "${redis_pass}" --port "${redis_port}"
- if [[ -n $(docker ps -q -f "name=^trojan-panel-redis$" -f "status=running") ]]; then
- echo_content skyBlue "---> Redis installation completed"
- echo_content yellow "---> Redis password (please keep it safe): ${redis_pass}"
- else
- echo_content red "---> Redis installation fails or runs abnormally, please try to repair or uninstall and reinstall"
- exit 0
- fi
- else
- echo_content skyBlue "---> You have installed Redis"
- fi
- }
- # Trojan Panel Frontend Nginx http configuration file
- ui_http_config() {
- cat >${UI_NGINX_CONFIG} <<-EOF
- server {
- listen ${trojan_panel_ui_port};
- server_name localhost;
- location / {
- root ${TROJAN_PANEL_UI_DATA};
- index index.html index.htm;
- }
- location /api {
- proxy_pass http://${trojan_panel_ip}:${trojan_panel_server_port};
- }
- error_page 497 http://\$host:${trojan_panel_ui_port}\$request_uri;
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root /usr/share/nginx/html;
- }
- }
- EOF
- }
- # Trojan Panel Frontend Nginx https configuration file
- ui_https_config() {
- cat >${UI_NGINX_CONFIG} <<-EOF
- server {
- listen ${trojan_panel_ui_port} ssl;
- server_name localhost;
- # force ssl
- ssl on;
- ssl_certificate ${CERT_PATH}${domain}.crt;
- ssl_certificate_key ${CERT_PATH}${domain}.key;
- # cache validity period
- ssl_session_timeout 5m;
- # secure link optional encryption protocol
- ssl_protocols TLSv1.3;
- # encryption algorithm
- ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
- # use server-side preferred algorithm
- ssl_prefer_server_ciphers on;
- #access_log /var/log/nginx/host.access.log main;
- location / {
- root ${TROJAN_PANEL_UI_DATA};
- index index.html index.htm;
- }
- location /api {
- proxy_pass http://${trojan_panel_ip}:${trojan_panel_server_port};
- }
- #error_page 404 /404.html;
- #497 http->https
- error_page 497 https://\$host:${trojan_panel_ui_port}\$request_uri;
- # redirect server error pages to the static page /50x.html
- #
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root /usr/share/nginx/html;
- }
- }
- EOF
- }
- # Install Trojan Panel Frontend
- install_trojan_panel_ui() {
- if [[ -z $(docker ps -a -q -f "name=^trojan-panel-ui$") ]]; then
- echo_content green "---> Install Trojan Panel Frontend"
- read -r -p "Please enter the IP address of the Trojan Panel Backend (default: local host): " trojan_panel_ip
- [[ -z "${trojan_panel_ip}" ]] && trojan_panel_ip="127.0.0.1"
- read -r -p "Please enter the service port of the Trojan Panel Backend (default: 8081): " trojan_panel_server_port
- [[ -z "${trojan_panel_server_port}" ]] && trojan_panel_server_port=8081
- read -r -p "Please enter the port of the Trojan Panel Frontend (default: 8888): " trojan_panel_ui_port
- [[ -z "${trojan_panel_ui_port}" ]] && trojan_panel_ui_port="8888"
- while read -r -p "Please choose whether to enable https on the Trojan Panel Frontend? (0/off 1/on default: 1): " ui_https; do
- if [[ -z ${ui_https} || ${ui_https} == 1 ]]; then
- install_custom_cert "custom_cert"
- domain=$(cat "${DOMAIN_FILE}")
- ui_https_config
- break
- elif [[ ${ui_https} == 0 ]]; then
- ui_http_config
- break
- else
- echo_content red "Cannot enter other characters except 1 and 2"
- fi
- done
- docker pull jonssonyan/trojan-panel-ui:2.1.6 &&
- docker run -d --name trojan-panel-ui --restart always \
- --network=host \
- -v "${UI_NGINX_CONFIG}":"/etc/nginx/conf.d/default.conf" \
- -v ${CERT_PATH}:${CERT_PATH} \
- jonssonyan/trojan-panel-ui:2.1.6
- if [[ -n $(docker ps -q -f "name=^trojan-panel-ui$" -f "status=running") ]]; then
- echo_content skyBlue "---> Trojan Panel Frontend installation completed"
- https_flag=$([[ -z ${ui_https} || ${ui_https} == 1 ]] && echo "https" || echo "http")
- domain_or_ip=$([[ -z ${domain} || "${domain}" == "custom_cert" ]] && echo "ip" || echo "${domain}")
- echo_content red "\n=============================================================="
- echo_content skyBlue "Trojan Panel Frontend installed successfully"
- echo_content yellow "Web management panel address: ${https_flag}://${domain_or_ip}:${trojan_panel_ui_port}"
- echo_content red "\n=============================================================="
- else
- echo_content red "---> Trojan Panel Frontend installation fails or runs abnormally, please try to repair or uninstall and reinstall"
- exit 0
- fi
- else
- echo_content skyBlue "---> You have installed the Trojan Panel Frontend"
- fi
- }
- # Install Trojan Panel Backend
- install_trojan_panel() {
- if [[ -z $(docker ps -a -q -f "name=^trojan-panel$") ]]; then
- echo_content green "---> Install Trojan Panel Backend"
- read -r -p "Please enter the service port of the Trojan Panel Backend (default: 8081): " trojan_panel_port
- [[ -z "${trojan_panel_port}" ]] && trojan_panel_port=8081
- read -r -p "Please enter the IP address of MariaDB (default: local host): " mariadb_ip
- [[ -z "${mariadb_ip}" ]] && mariadb_ip="127.0.0.1"
- read -r -p "Please enter the port of MariaDB (default: 9507): " mariadb_port
- [[ -z "${mariadb_port}" ]] && mariadb_port=9507
- read -r -p "Please enter the username of MariaDB (default: root): " mariadb_user
- [[ -z "${mariadb_user}" ]] && mariadb_user="root"
- while read -r -p "Please enter the password of MariaDB (required): " mariadb_pas; do
- if [[ -z "${mariadb_pas}" ]]; then
- echo_content red "Password can not be empty"
- else
- break
- fi
- done
- docker exec trojan-panel-mariadb mysql --default-character-set=utf8 -h"${mariadb_ip}" -P"${mariadb_port}" -u"${mariadb_user}" -p"${mariadb_pas}" -e "create database if not exists trojan_panel_db;" &>/dev/null
- read -r -p "Please enter the IP address of Redis (default: local host): " redis_host
- [[ -z "${redis_host}" ]] && redis_host="127.0.0.1"
- read -r -p "Please enter the port of Redis (default: 6378): " redis_port
- [[ -z "${redis_port}" ]] && redis_port=6378
- while read -r -p "Please enter the Redis password (required): " redis_pass; do
- if [[ -z "${redis_pass}" ]]; then
- echo_content red "Password can not be empty"
- else
- break
- fi
- done
- docker exec trojan-panel-redis redis-cli -h "${redis_host}" -p "${redis_port}" -a "${redis_pass}" -e "flushall" &>/dev/null
- docker pull jonssonyan/trojan-panel:2.2.0 &&
- docker run -d --name trojan-panel --restart always \
- --network=host \
- -v ${WEB_PATH}:${TROJAN_PANEL_WEBFILE} \
- -v ${TROJAN_PANEL_LOGS}:${TROJAN_PANEL_LOGS} \
- -v ${TROJAN_PANEL_CONFIG}:${TROJAN_PANEL_CONFIG} \
- -v /etc/localtime:/etc/localtime \
- -e GIN_MODE=release \
- -e "mariadb_ip=${mariadb_ip}" \
- -e "mariadb_port=${mariadb_port}" \
- -e "mariadb_user=${mariadb_user}" \
- -e "mariadb_pas=${mariadb_pas}" \
- -e "redis_host=${redis_host}" \
- -e "redis_port=${redis_port}" \
- -e "redis_pass=${redis_pass}" \
- -e "server_port=${trojan_panel_port}" \
- jonssonyan/trojan-panel:2.2.0
- if [[ -n $(docker ps -q -f "name=^trojan-panel$" -f "status=running") ]]; then
- echo_content skyBlue "---> Trojan Panel Backend installation completed"
- echo_content red "\n=============================================================="
- echo_content skyBlue "Trojan Panel Backend installed successfully"
- echo_content yellow "MariaDB ${mariadb_user} password (please keep it safe): ${mariadb_pas}"
- echo_content yellow "Redis password (please keep it safe): ${redis_pass}"
- echo_content yellow "System administrator Default username: sysadmin Default password: 123456"
- echo_content yellow "Please log in to the management panel to change the password in time"
- echo_content red "\n=============================================================="
- else
- echo_content red "---> Trojan Panel Backend installation fails or runs abnormally, please try to repair or uninstall and reinstall"
- exit 0
- fi
- else
- echo_content skyBlue "---> You have installed the Trojan Panel Backend"
- fi
- }
- # Install Trojan Panel Core
- install_trojan_panel_core() {
- if [[ -z $(docker ps -a -q -f "name=^trojan-panel-core$") ]]; then
- echo_content green "---> Install Trojan Panel Core"
- read -r -p "Please enter the service port of the Trojan Panel Core (default: 8082): " trojan_panel_core_port
- [[ -z "${trojan_panel_core_port}" ]] && trojan_panel_core_port=8082
- read -r -p "Please enter the IP address of MariaDB (default: local host): " mariadb_ip
- [[ -z "${mariadb_ip}" ]] && mariadb_ip="127.0.0.1"
- read -r -p "Please enter the port of MariaDB (default: 9507): " mariadb_port
- [[ -z "${mariadb_port}" ]] && mariadb_port=9507
- read -r -p "Please enter the username of MariaDB (default: root): " mariadb_user
- [[ -z "${mariadb_user}" ]] && mariadb_user="root"
- while read -r -p "Please enter the password of MariaDB (required): " mariadb_pas; do
- if [[ -z "${mariadb_pas}" ]]; then
- echo_content red "Password can not be empty"
- else
- break
- fi
- done
- read -r -p "Please enter the database name (default: trojan_panel_db): " database
- [[ -z "${database}" ]] && database="trojan_panel_db"
- read -r -p "Please enter the user table name of the database (default: account): " account_table
- [[ -z "${account_table}" ]] && account_table="account"
- read -r -p "Please enter the IP address of Redis (default: local host): " redis_host
- [[ -z "${redis_host}" ]] && redis_host="127.0.0.1"
- read -r -p "Please enter the port of Redis (default: 6378): " redis_port
- [[ -z "${redis_port}" ]] && redis_port=6378
- while read -r -p "Please enter the Redis password (required): " redis_pass; do
- if [[ -z "${redis_pass}" ]]; then
- echo_content red "Password can not be empty"
- else
- break
- fi
- done
- read -r -p "Please enter the API port (default: 8100): " grpc_port
- [[ -z "${grpc_port}" ]] && grpc_port=8100
- domain=$(cat "${DOMAIN_FILE}")
- docker pull jonssonyan/trojan-panel-core:2.2.1 &&
- docker run -d --name trojan-panel-core --restart always \
- --network=host \
- -v ${TROJAN_PANEL_CORE_DATA}bin/xray/config/:${TROJAN_PANEL_CORE_DATA}bin/xray/config/ \
- -v ${TROJAN_PANEL_CORE_DATA}bin/trojango/config/:${TROJAN_PANEL_CORE_DATA}bin/trojango/config/ \
- -v ${TROJAN_PANEL_CORE_DATA}bin/hysteria/config/:${TROJAN_PANEL_CORE_DATA}bin/hysteria/config/ \
- -v ${TROJAN_PANEL_CORE_DATA}bin/naiveproxy/config/:${TROJAN_PANEL_CORE_DATA}bin/naiveproxy/config/ \
- -v ${TROJAN_PANEL_CORE_LOGS}:${TROJAN_PANEL_CORE_LOGS} \
- -v ${TROJAN_PANEL_CORE_CONFIG}:${TROJAN_PANEL_CORE_CONFIG} \
- -v ${CERT_PATH}:${CERT_PATH} \
- -v ${WEB_PATH}:${WEB_PATH} \
- -v /etc/localtime:/etc/localtime \
- -e GIN_MODE=release \
- -e "mariadb_ip=${mariadb_ip}" \
- -e "mariadb_port=${mariadb_port}" \
- -e "mariadb_user=${mariadb_user}" \
- -e "mariadb_pas=${mariadb_pas}" \
- -e "database=${database}" \
- -e "account-table=${account_table}" \
- -e "redis_host=${redis_host}" \
- -e "redis_port=${redis_port}" \
- -e "redis_pass=${redis_pass}" \
- -e "crt_path=${CERT_PATH}${domain}.crt" \
- -e "key_path=${CERT_PATH}${domain}.key" \
- -e "grpc_port=${grpc_port}" \
- -e "server_port=${trojan_panel_core_port}" \
- jonssonyan/trojan-panel-core:2.2.1
- if [[ -n $(docker ps -q -f "name=^trojan-panel-core$" -f "status=running") ]]; then
- echo_content skyBlue "---> Trojan Panel Core installation completed"
- else
- echo_content red "---> Trojan Panel Core installation fails or runs abnormally, please try to repair or uninstall and reinstall"
- exit 0
- fi
- else
- echo_content skyBlue "---> You have installed the Trojan Panel Core"
- fi
- }
- # Update Trojan Panel database structure
- update_trojan_panel_database() {
- echo_content skyBlue "---> Update Trojan Panel database structure"
- version_214_215=("v2.1.4")
- if [[ "${version_214_215[*]}" =~ "${trojan_panel_current_version}" ]]; then
- docker exec trojan-panel-mariadb mysql --default-character-set=utf8 -h"${mariadb_ip}" -P"${mariadb_port}" -u"${mariadb_user}" -p"${mariadb_pas}" -Dtrojan_panel_db -e "${sql_215}" &>/dev/null &&
- trojan_panel_current_version="v2.1.5"
- fi
- echo_content skyBlue "---> Trojan Panel database structure update completed"
- }
- # Update Trojan Panel Core database structure
- update_trojan_panel_core_database() {
- echo_content skyBlue "---> Update Trojan Panel Core database structure"
- echo_content skyBlue "---> Trojan Panel Core database structure update completed"
- }
- # Update Trojan Panel Frontend
- update_trojan_panel_ui() {
- if [[ -z $(docker ps -a -q -f "name=^trojan-panel-ui$") ]]; then
- echo_content red "---> Please install the Trojan Panel Frontend first"
- exit 0
- fi
- trojan_panel_ui_current_version=$(docker exec trojan-panel-ui cat ${TROJAN_PANEL_UI_DATA}version)
- if [[ -z "${trojan_panel_ui_current_version}" || ! "${trojan_panel_ui_current_version}" =~ ^v.* ]]; then
- echo_content red "---> The current version does not support online updates"
- exit 0
- fi
- echo_content yellow "Tip: The current version of the Trojan Panel Frontend (trojan-panel-ui) is ${trojan_panel_ui_current_version} the latest version is ${trojan_panel_ui_latest_version}"
- if [[ "${trojan_panel_ui_current_version}" != "${trojan_panel_ui_latest_version}" ]]; then
- echo_content green "---> Update Trojan Panel Frontend"
- docker rm -f trojan-panel-ui &&
- docker rmi -f jonssonyan/trojan-panel-ui:2.1.6
- docker pull jonssonyan/trojan-panel-ui:2.1.6 &&
- docker run -d --name trojan-panel-ui --restart always \
- --network=host \
- -v "${UI_NGINX_CONFIG}":"/etc/nginx/conf.d/default.conf" \
- -v ${CERT_PATH}:${CERT_PATH} \
- jonssonyan/trojan-panel-ui:2.1.6
- if [[ -n $(docker ps -q -f "name=^trojan-panel-ui$" -f "status=running") ]]; then
- echo_content skyBlue "---> Trojan Panel Frontend update completed"
- else
- echo_content red "---> Trojan Panel Frontend update fails or runs abnormally, please try to repair or uninstall and reinstall"
- fi
- else
- echo_content skyBlue "---> You have installed the latest version of the Trojan Panel Frontend"
- fi
- }
- # Update Trojan Panel Backend
- update_trojan_panel() {
- if [[ -z $(docker ps -a -q -f "name=^trojan-panel$") ]]; then
- echo_content red "---> Please install the Trojan Panel Backend first"
- exit 0
- fi
- trojan_panel_current_version=$(docker exec trojan-panel ./trojan-panel -version)
- if [[ -z "${trojan_panel_current_version}" || ! "${trojan_panel_current_version}" =~ ^v.* || ! $(version_ge "${trojan_panel_current_version}" "v2.1.4") ]]; then
- echo_content red "---> The current version does not support online updates"
- exit 0
- fi
- echo_content yellow "Tip: The current version of the Trojan Panel Backend (trojan-panel) is ${trojan_panel_current_version} The latest version is ${trojan_panel_latest_version}"
- if [[ "${trojan_panel_current_version}" != "${trojan_panel_latest_version}" ]]; then
- echo_content green "---> Update Trojan Panel Backend"
- mariadb_ip=$(get_ini_value ${trojan_panel_config_path} mysql.host)
- mariadb_port=$(get_ini_value ${trojan_panel_config_path} mysql.port)
- mariadb_user=$(get_ini_value ${trojan_panel_config_path} mysql.user)
- mariadb_pas=$(get_ini_value ${trojan_panel_config_path} mysql.password)
- redis_host=$(get_ini_value ${trojan_panel_config_path} redis.host)
- redis_port=$(get_ini_value ${trojan_panel_config_path} redis.port)
- redis_pass=$(get_ini_value ${trojan_panel_config_path} redis.password)
- trojan_panel_port=$(get_ini_value ${trojan_panel_config_path} server.port)
- update_trojan_panel_database
- docker exec trojan-panel-redis redis-cli -h "${redis_host}" -p "${redis_port}" -a "${redis_pass}" -e "flushall" &>/dev/null
- docker rm -f trojan-panel &&
- docker rmi -f jonssonyan/trojan-panel:2.2.0
- docker pull jonssonyan/trojan-panel:2.2.0 &&
- docker run -d --name trojan-panel --restart always \
- --network=host \
- -v ${WEB_PATH}:${TROJAN_PANEL_WEBFILE} \
- -v ${TROJAN_PANEL_LOGS}:${TROJAN_PANEL_LOGS} \
- -v ${TROJAN_PANEL_CONFIG}:${TROJAN_PANEL_CONFIG} \
- -v /etc/localtime:/etc/localtime \
- -e GIN_MODE=release \
- -e "mariadb_ip=${mariadb_ip}" \
- -e "mariadb_port=${mariadb_port}" \
- -e "mariadb_user=${mariadb_user}" \
- -e "mariadb_pas=${mariadb_pas}" \
- -e "redis_host=${redis_host}" \
- -e "redis_port=${redis_port}" \
- -e "redis_pass=${redis_pass}" \
- -e "server_port=${trojan_panel_port}" \
- jonssonyan/trojan-panel:2.2.0
- if [[ -n $(docker ps -q -f "name=^trojan-panel$" -f "status=running") ]]; then
- echo_content skyBlue "---> Trojan Panel backend update completed"
- else
- echo_content red "---> Trojan Panel Backend update fails or runs abnormally, please try to repair or uninstall and reinstall"
- fi
- else
- echo_content skyBlue "---> You have installed the latest version of the Trojan Panel Backend"
- fi
- }
- # Update Trojan Panel Core
- update_trojan_panel_core() {
- if [[ -z $(docker ps -a -q -f "name=^trojan-panel-core$") ]]; then
- echo_content red "---> Please install the Trojan Panel Core first"
- exit 0
- fi
- trojan_panel_core_current_version=$(docker exec trojan-panel-core ./trojan-panel-core -version)
- if [[ -z "${trojan_panel_core_current_version}" || ! "${trojan_panel_core_current_version}" =~ ^v.* || ! $(version_ge "${trojan_panel_core_current_version}" "v2.1.1") ]]; then
- echo_content red "---> The current version does not support online updates"
- exit 0
- fi
- echo_content yellow "Tip: The current version of the Trojan Panel Core (trojan-panel-core) is ${trojan_panel_core_current_version} The latest version is ${trojan_panel_core_latest_version}"
- if [[ "${trojan_panel_core_current_version}" != "${trojan_panel_core_latest_version}" ]]; then
- echo_content green "---> Update Trojan Panel Core"
- mariadb_ip=$(get_ini_value ${trojan_panel_core_config_path} mysql.host)
- mariadb_port=$(get_ini_value ${trojan_panel_core_config_path} mysql.port)
- mariadb_user=$(get_ini_value ${trojan_panel_core_config_path} mysql.user)
- mariadb_pas=$(get_ini_value ${trojan_panel_core_config_path} mysql.password)
- redis_host=$(get_ini_value ${trojan_panel_core_config_path} redis.host)
- redis_port=$(get_ini_value ${trojan_panel_core_config_path} redis.port)
- redis_pass=$(get_ini_value ${trojan_panel_core_config_path} redis.password)
- grpc_port=$(get_ini_value ${trojan_panel_core_config_path} grpc.port)
- trojan_panel_core_port=$(get_ini_value ${trojan_panel_core_config_path} server.port)
- update_trojan_panel_core_database
- docker exec trojan-panel-redis redis-cli -h "${redis_host}" -p "${redis_port}" -a "${redis_pass}" -e "flushall" &>/dev/null
- docker rm -f trojan-panel-core &&
- docker rmi -f jonssonyan/trojan-panel-core:2.2.1
- domain=$(cat "${DOMAIN_FILE}")
- docker pull jonssonyan/trojan-panel-core:2.2.1 &&
- docker run -d --name trojan-panel-core --restart always \
- --network=host \
- -v ${TROJAN_PANEL_CORE_DATA}bin/xray/config/:${TROJAN_PANEL_CORE_DATA}bin/xray/config/ \
- -v ${TROJAN_PANEL_CORE_DATA}bin/trojango/config/:${TROJAN_PANEL_CORE_DATA}bin/trojango/config/ \
- -v ${TROJAN_PANEL_CORE_DATA}bin/hysteria/config/:${TROJAN_PANEL_CORE_DATA}bin/hysteria/config/ \
- -v ${TROJAN_PANEL_CORE_DATA}bin/naiveproxy/config/:${TROJAN_PANEL_CORE_DATA}bin/naiveproxy/config/ \
- -v ${TROJAN_PANEL_CORE_LOGS}:${TROJAN_PANEL_CORE_LOGS} \
- -v ${TROJAN_PANEL_CORE_CONFIG}:${TROJAN_PANEL_CORE_CONFIG} \
- -v ${CERT_PATH}:${CERT_PATH} \
- -v ${WEB_PATH}:${WEB_PATH} \
- -v /etc/localtime:/etc/localtime \
- -e GIN_MODE=release \
- -e "mariadb_ip=${mariadb_ip}" \
- -e "mariadb_port=${mariadb_port}" \
- -e "mariadb_user=${mariadb_user}" \
- -e "mariadb_pas=${mariadb_pas}" \
- -e "database=${database}" \
- -e "account-table=${account_table}" \
- -e "redis_host=${redis_host}" \
- -e "redis_port=${redis_port}" \
- -e "redis_pass=${redis_pass}" \
- -e "crt_path=${CERT_PATH}${domain}.crt" \
- -e "key_path=${CERT_PATH}${domain}.key" \
- -e "grpc_port=${grpc_port}" \
- -e "server_port=${trojan_panel_core_port}" \
- jonssonyan/trojan-panel-core:2.2.1
- if [[ -n $(docker ps -q -f "name=^trojan-panel-core$" -f "status=running") ]]; then
- echo_content skyBlue "---> Trojan Panel Core update completed"
- else
- echo_content red "---> Trojan Panel Core update fails or runs abnormally, please try to repair or uninstall and reinstall"
- fi
- else
- echo_content skyBlue "---> You have installed the latest version of the Trojan Panel Core"
- fi
- }
- # Uninstall Caddy2+https
- uninstall_caddy2() {
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-caddy$") ]]; then
- echo_content green "---> Uninstall Caddy2+https"
- docker rm -f trojan-panel-caddy &&
- rm -rf ${CADDY_DATA}
- echo_content skyBlue "---> Caddy2+https uninstallation completed"
- else
- echo_content red "---> Please install Caddy2+https first"
- fi
- }
- # Uninstall Nginx
- uninstall_nginx() {
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-nginx") ]]; then
- echo_content green "---> Uninstall Nginx"
- docker rm -f trojan-panel-nginx &&
- rm -rf ${NGINX_DATA}
- echo_content skyBlue "---> Nginx uninstallation completed"
- else
- echo_content red "---> Please install Nginx first"
- fi
- }
- # Uninstall MariaDB
- uninstall_mariadb() {
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-mariadb$") ]]; then
- echo_content green "---> Uninstall MariaDB"
- docker rm -f trojan-panel-mariadb &&
- rm -rf ${MARIA_DATA}
- echo_content skyBlue "---> MariaDB uninstall completed"
- else
- echo_content red "---> Please install MariaDB first"
- fi
- }
- # Uninstall Redis
- uninstall_redis() {
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-redis$") ]]; then
- echo_content green "---> Uninstall Redis"
- docker rm -f trojan-panel-redis &&
- rm -rf ${REDIS_DATA}
- echo_content skyBlue "---> Redis uninstall completed"
- else
- echo_content red "---> Please install Redis first"
- fi
- }
- # Uninstall Trojan Panel Frontend
- uninstall_trojan_panel_ui() {
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-ui$") ]]; then
- echo_content green "---> Uninstall Trojan Panel Frontend"
- docker rm -f trojan-panel-ui &&
- docker rmi -f jonssonyan/trojan-panel-ui:2.1.6 &&
- rm -rf ${TROJAN_PANEL_UI_DATA}
- echo_content skyBlue "---> Trojan Panel Frontend uninstallation completed"
- else
- echo_content red "---> Please install the Trojan Panel Frontend first"
- fi
- }
- # Uninstall Trojan Panel Backend
- uninstall_trojan_panel() {
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel$") ]]; then
- echo_content green "---> Uninstall Trojan Panel Backend"
- docker rm -f trojan-panel &&
- docker rmi -f jonssonyan/trojan-panel:2.2.0 &&
- rm -rf ${TROJAN_PANEL_DATA}
- echo_content skyBlue "---> Trojan Panel Backend uninstallation completed"
- else
- echo_content red "---> Please install the Trojan Panel Backend first"
- fi
- }
- # Uninstall Trojan Panel Core
- uninstall_trojan_panel_core() {
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-core$") ]]; then
- echo_content green "---> Uninstall Trojan Panel Core"
- docker rm -f trojan-panel-core &&
- docker rmi -f jonssonyan/trojan-panel-core:2.2.1 &&
- rm -rf ${TROJAN_PANEL_CORE_DATA}
- echo_content skyBlue "---> Trojan Panel Core uninstallation completed"
- else
- echo_content red "---> Please install the Trojan Panel Core first"
- fi
- }
- # Uninstall all Trojan Panel related containers
- uninstall_all() {
- echo_content green "---> Uninstall all Trojan Panel related containers"
- docker rm -f $(docker ps -a -q -f "name=^trojan-panel")
- docker rmi -f $(docker images | grep "^jonssonyan/trojan-panel" | awk '{print $3}')
- rm -rf ${TP_DATA}
- echo_content skyBlue "---> Uninstall all Trojan Panel related containers completed"
- }
- # Modify Trojan Panel Frontend port
- update_trojan_panel_ui_port() {
- if [[ -n $(docker ps -q -f "name=^trojan-panel-ui$" -f "status=running") ]]; then
- echo_content green "---> Modify Trojan Panel Frontend port"
- trojan_panel_ui_port=$(grep 'listen.*ssl' ${UI_NGINX_CONFIG} | awk '{print $2}')
- if [[ -z "${trojan_panel_ui_port}" ]]; then
- ui_https=0
- trojan_panel_ui_port=$(grep -oP 'listen\s+\K\d+' ${UI_NGINX_CONFIG} | awk 'NR==1')
- fi
- if [[ -z "${trojan_panel_ui_port}" ]]; then
- echo_content red "---> Trojan Panel Frontend port not queried"
- exit 0
- fi
- echo_content yellow "Tip: The current port of the Trojan Panel Frontend (trojan-panel-ui) is ${trojan_panel_ui_port}"
- read -r -p "Please enter the new port of the Trojan Panel Frontend (default: 8888): " trojan_panel_ui_port
- [[ -z "${trojan_panel_ui_port}" ]] && trojan_panel_ui_port="8888"
- if [[ ${ui_https} == 0 ]]; then
- # http
- sed -i "s/listen.*;/listen ${trojan_panel_ui_port};/g" ${UI_NGINX_CONFIG} &&
- sed -i "s/http:\/\/\$host:.*\$request_uri;/http:\/\/\$host:${trojan_panel_ui_port}\$request_uri;/g" ${UI_NGINX_CONFIG} &&
- docker restart trojan-panel-ui
- else
- # https
- sed -i "s/listen.*ssl;/listen ${trojan_panel_ui_port} ssl;/g" ${UI_NGINX_CONFIG} &&
- sed -i "s/https:\/\/\$host:.*\$request_uri;/https:\/\/\$host:${trojan_panel_ui_port}\$request_uri;/g" ${UI_NGINX_CONFIG} &&
- docker restart trojan-panel-ui
- fi
- if [[ "$?" == "0" ]]; then
- echo_content skyBlue "---> Trojan Panel Frontend port modification completed"
- else
- echo_content red "---> Trojan Panel Frontend port modification failed"
- fi
- else
- echo_content red "---> The Trojan Panel Frontend is not installed or is running abnormally, please repair or uninstall and reinstall and try again"
- fi
- }
- # Refresh Redis cache
- redis_flush_all() {
- if [[ -z $(docker ps -a -q -f "name=^trojan-panel-redis$") ]]; then
- echo_content red "---> Please install Redis first"
- exit 0
- fi
- if [[ -z $(docker ps -q -f "name=^trojan-panel-redis$" -f "status=running") ]]; then
- echo_content red "---> Redis is running abnormally"
- exit 0
- fi
- echo_content green "---> Refresh Redis cache"
- read -r -p "Please enter the IP address of Redis (default: local host): " redis_host
- [[ -z "${redis_host}" ]] && redis_host="127.0.0.1"
- read -r -p "Please enter the port of Redis (default: 6378): " redis_port
- [[ -z "${redis_port}" ]] && redis_port=6378
- while read -r -p "Please enter the Redis password (required): " redis_pass; do
- if [[ -z "${redis_pass}" ]]; then
- echo_content red "Password can not be empty"
- else
- break
- fi
- done
- docker exec trojan-panel-redis redis-cli -h "${redis_host}" -p "${redis_port}" -a "${redis_pass}" -e "flushall" &>/dev/null
- echo_content skyBlue "---> Redis cache refresh completed"
- }
- # Replace certificate
- change_cert() {
- domain_1=$(cat "${DOMAIN_FILE}")
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-caddy$") ]]; then
- docker rm -f trojan-panel-caddy &&
- rm -rf ${CADDY_LOG}* &&
- echo "" >${CADDY_CONFIG} &&
- rm -rf ${WEB_PATH}*
- fi
- rm -rf ${CERT_PATH}* &&
- echo "" >${DOMAIN_FILE}
- install_reverse_proxy
- install_cert
- domain_2=$(cat "${DOMAIN_FILE}")
- if [[ -n "${domain_1}" && -n "${domain_2}" ]]; then
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-nginx$") ]]; then
- sed -i "s/${domain_1}/${domain_2}/g" ${NGINX_CONFIG} &&
- docker restart trojan-panel-nginx
- fi
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-ui$") ]]; then
- sed -i "s/${domain_1}/${domain_2}/g" ${UI_NGINX_DATA} &&
- docker restart trojan-panel-ui
- fi
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-core$") ]]; then
- find /tpdata/trojan-panel-core/bin/ -type f -exec sed -i "s/${domain_1}/${domain_2}/g" {} + &&
- sed -i "s/${domain_1}/${domain_2}/g" ${trojan_panel_core_config_path} &&
- docker restart trojan-panel-core
- fi
- fi
- }
- # Forgot sysadmin password
- forget_pass() {
- while :; do
- echo_content yellow "1. Query MariaDB password"
- echo_content yellow "2. Query Redis password"
- echo_content yellow "3. Reset the username and password of the admin panel system administrator"
- echo_content yellow "4. Quit"
- read -r -p "Please choose (default: 4): " forget_pass_option
- [[ -z "${forget_pass_option}" ]] && forget_pass_option=4
- case ${forget_pass_option} in
- 1)
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel$") ]]; then
- mariadb_user=$(get_ini_value ${trojan_panel_config_path} mysql.user)
- mariadb_pas=$(get_ini_value ${trojan_panel_config_path} mysql.password)
- echo_content red "\n=============================================================="
- echo_content yellow "MariaDB ${mariadb_user} password (please keep it safe): ${mariadb_pas}"
- echo_content red "\n=============================================================="
- else
- echo_content red "---> Please execute on the Trojan Panel backend server"
- fi
- ;;
- 2)
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel$") ]]; then
- redis_pass=$(get_ini_value ${trojan_panel_config_path} redis.password)
- echo_content red "\n=============================================================="
- echo_content yellow "Redis password (please keep it safe): ${redis_pass}"
- echo_content red "\n=============================================================="
- else
- echo_content red "---> Please execute on the Trojan Panel backend server"
- fi
- ;;
- 3)
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-mariadb$") ]]; then
- read -r -p "Please enter the IP address of MariaDB (default: local host): " mariadb_ip
- [[ -z "${mariadb_ip}" ]] && mariadb_ip="127.0.0.1"
- read -r -p "Please enter the port of MariaDB (default: 9507): " mariadb_port
- [[ -z "${mariadb_port}" ]] && mariadb_port=9507
- read -r -p "Please enter the username of MariaDB (default: root): " mariadb_user
- [[ -z "${mariadb_user}" ]] && mariadb_user="root"
- while read -r -p "Please enter the password of MariaDB (required): " mariadb_pas; do
- if [[ -z "${mariadb_pas}" ]]; then
- echo_content red "Password can not be empty"
- else
- break
- fi
- done
- docker exec trojan-panel-mariadb mysql --default-character-set=utf8 -h"${mariadb_ip}" -P"${mariadb_port}" -u"${mariadb_user}" -p"${mariadb_pas}" -Dtrojan_panel_db -e "update account set username = 'sysadmin',pass = 'tFjD2X1F6i9FfWp2GDU5Vbi1conuaChDKIYbw9zMFrqvMoSz',hash='4366294571b8b267d9cf15b56660f0a70659568a86fc270a52fdc9e5' where id = 1 limit 1"
- if [[ "$?" == "0" ]]; then
- echo_content red "\n=============================================================="
- echo_content yellow "System administrator Default username: sysadmin Default password: 123456"
- echo_content yellow "Please log in to the management panel to change the password in time"
- echo_content red "\n=============================================================="
- else
- echo_content red "Admin panel sysadmin username and password reset failed"
- fi
- else
- echo_content red "---> Please execute on the MariaDB server"
- fi
- ;;
- 4)
- break
- ;;
- *)
- echo_content red "No such option"
- continue
- ;;
- esac
- done
- }
- # Fault detection
- failure_testing() {
- echo_content green "---> Start troubleshooting"
- if [[ ! $(docker -v 2>/dev/null) ]]; then
- echo_content red "---> Docker is running abnormally"
- else
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-caddy$") ]]; then
- if [[ -z $(docker ps -q -f "name=^trojan-panel-caddy$" -f "status=running") ]]; then
- echo_content red "---> Caddy2 is running abnormally and the running log is as follows:"
- docker logs trojan-panel-caddy
- fi
- domain=$(cat "${DOMAIN_FILE}")
- if [[ -n ${domain} && ! -f "${CERT_PATH}${domain}.crt" ]]; then
- echo_content red "---> The certificate application is abnormal, please try 1. Change the sub-domain name to re-build 2. Restart the server to re-apply for the certificate 3. Re-build and select the custom certificate option"
- if [[ -f ${CADDY_LOG}error.log ]]; then
- echo_content red "Caddy2 error log is as follows:"
- tail -n 20 ${CADDY_LOG}error.log | grep error
- fi
- fi
- fi
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-mariadb$") && -z $(docker ps -q -f "name=^trojan-panel-mariadb$" -f "status=running") ]]; then
- echo_content red "---> The MariaDB is running abnormally and the running log is as follows:"
- docker logs trojan-panel-mariadb
- fi
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-redis$") && -z $(docker ps -q -f "name=^trojan-panel-redis$" -f "status=running") ]]; then
- echo_content red "---> The Redis is running abnormally and the running log is as follows:"
- docker logs trojan-panel-redis
- fi
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel$") && -z $(docker ps -q -f "name=^trojan-panel$" -f "status=running") ]]; then
- echo_content red "---> The Trojan Panel Backend is running abnormally and the running log is as follows:"
- if [[ -f ${TROJAN_PANEL_LOGS}trojan-panel.log ]]; then
- tail -n 20 ${TROJAN_PANEL_LOGS}trojan-panel.log | grep error
- else
- docker logs trojan-panel
- fi
- fi
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-ui$") && -z $(docker ps -q -f "name=^trojan-panel-ui$" -f "status=running") ]]; then
- echo_content red "---> The Trojan Panel Frontend is running abnormally and the running log is as follows:"
- docker logs trojan-panel-ui
- fi
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-core$") && -z $(docker ps -q -f "name=^trojan-panel-core$" -f "status=running") ]]; then
- echo_content red "---> The Trojan Panel Core is running abnormally and the running log is as follows:"
- if [[ -f ${TROJAN_PANEL_CORE_LOGS}trojan-panel.log ]]; then
- tail -n 20 ${TROJAN_PANEL_CORE_LOGS}trojan-panel.log | grep error
- else
- docker logs trojan-panel-core
- fi
- fi
- fi
- echo_content green "---> Troubleshooting ended"
- }
- log_query() {
- while :; do
- echo_content skyBlue "Applications that can query logs are as follows:"
- echo_content yellow "1. Trojan Panel Backend"
- echo_content yellow "2. Trojan Panel Frontend"
- echo_content yellow "3. Quit"
- read -r -p "Please select an application (default: 3): " select_log_query_type
- [[ -z "${select_log_query_type}" ]] && select_log_query_type=3
- case ${select_log_query_type} in
- 1)
- log_file_path=${TROJAN_PANEL_LOGS}trojan-panel.log
- ;;
- 2)
- log_file_path=${TROJAN_PANEL_CORE_LOGS}trojan-panel-core.log
- ;;
- 3)
- break
- ;;
- *)
- echo_content red "No such option"
- continue
- ;;
- esac
- read -r -p "Please enter the number of rows to query (default: 20): " select_log_query_line_type
- [[ -z "${select_log_query_line_type}" ]] && select_log_query_line_type=20
- if [[ -f ${log_file_path} ]]; then
- echo_content skyBlue "The log is as follows:"
- tail -n ${select_log_query_line_type} ${log_file_path}
- else
- echo_content red "No log file exists"
- fi
- done
- }
- version_query() {
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-ui$") && -n $(docker ps -q -f "name=^trojan-panel-ui$" -f "status=running") ]]; then
- trojan_panel_ui_current_version=$(docker exec trojan-panel-ui cat ${TROJAN_PANEL_UI_DATA}version)
- echo_content yellow "The current version of Trojan Panel Frontend(trojan-panel-ui) is ${trojan_panel_ui_current_version} the latest version is ${trojan_panel_ui_latest_version}"
- fi
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel$") && -n $(docker ps -q -f "name=^trojan-panel$" -f "status=running") ]]; then
- trojan_panel_current_version=$(docker exec trojan-panel ./trojan-panel -version)
- echo_content yellow "The current version of Trojan Panel Backend(trojan-panel) is ${trojan_panel_current_version} the latest version is ${trojan_panel_latest_version}"
- fi
- if [[ -n $(docker ps -a -q -f "name=^trojan-panel-core$") && -n $(docker ps -q -f "name=^trojan-panel-core$" -f "status=running") ]]; then
- trojan_panel_core_current_version=$(docker exec trojan-panel-core ./trojan-panel-core -version)
- echo_content yellow "The current version of Trojan Panel Core(trojan-panel-core) is ${trojan_panel_core_current_version} the latest version is ${trojan_panel_core_latest_version}"
- fi
- }
- main() {
- cd "$HOME" || exit 0
- init_var
- mkdir_tools
- check_sys
- depend_install
- clear
- echo_content red "\n=============================================================="
- echo_content skyBlue "System Required: CentOS 7+/Ubuntu 18+/Debian 10+"
- echo_content skyBlue "Version: v2.2.0"
- echo_content skyBlue "Description: One click Install Trojan Panel server"
- echo_content skyBlue "Author: jonssonyan <https://jonssonyan.com>"
- echo_content skyBlue "Github: https://github.com/trojanpanel"
- echo_content skyBlue "Docs: https://trojanpanel.github.io"
- echo_content red "\n=============================================================="
- echo_content yellow "1. Install Trojan Panel Frontend"
- echo_content yellow "2. Install Trojan Panel Backend"
- echo_content yellow "3. Install Trojan Panel Core"
- echo_content yellow "4. Install Caddy2+https"
- echo_content yellow "5. Install Nginx"
- echo_content yellow "6. Install MariaDB"
- echo_content yellow "7. Install Redis"
- echo_content green "\n=============================================================="
- echo_content yellow "8. Update Trojan Panel Frontend"
- echo_content yellow "9. Update Trojan Panel Backend"
- echo_content yellow "10. Update Trojan Panel Core"
- echo_content green "\n=============================================================="
- echo_content yellow "11. Uninstall Trojan Panel Frontend"
- echo_content yellow "12. Uninstall Trojan Panel Backend"
- echo_content yellow "13. Uninstall Trojan Panel Core"
- echo_content yellow "14. Uninstall Caddy2+https"
- echo_content yellow "15. Uninstall Nginx"
- echo_content yellow "16. Uninstall MariaDB"
- echo_content yellow "17. Uninstall Redis"
- echo_content yellow "18. Uninstall all Trojan Panel related containers"
- echo_content green "\n=============================================================="
- echo_content yellow "19. Modify Trojan Panel Frontend port"
- echo_content yellow "20. Refresh Redis cache"
- echo_content yellow "21. Replace certificate"
- echo_content yellow "22. Forgot sysadmin password"
- echo_content green "\n=============================================================="
- echo_content yellow "23. Fault detection"
- echo_content yellow "24. Log query"
- echo_content yellow "25. Version query"
- read -r -p "Please choose: " selectInstall_type
- case ${selectInstall_type} in
- 1)
- install_docker
- install_reverse_proxy
- install_cert
- install_trojan_panel_ui
- ;;
- 2)
- install_docker
- install_mariadb
- install_redis
- install_trojan_panel
- ;;
- 3)
- install_docker
- install_reverse_proxy
- install_cert
- install_trojan_panel_core
- ;;
- 4)
- install_docker
- install_caddy2
- ;;
- 5)
- install_docker
- install_nginx
- ;;
- 6)
- install_docker
- install_mariadb
- ;;
- 7)
- install_docker
- install_redis
- ;;
- 8)
- update_trojan_panel_ui
- ;;
- 9)
- update_trojan_panel
- ;;
- 10)
- update_trojan_panel_core
- ;;
- 11)
- uninstall_trojan_panel_ui
- ;;
- 12)
- uninstall_trojan_panel
- ;;
- 13)
- uninstall_trojan_panel_core
- ;;
- 14)
- uninstall_caddy2
- ;;
- 15)
- uninstall_nginx
- ;;
- 16)
- uninstall_mariadb
- ;;
- 17)
- uninstall_redis
- ;;
- 18)
- uninstall_all
- ;;
- 19)
- update_trojan_panel_ui_port
- ;;
- 20)
- redis_flush_all
- ;;
- 21)
- change_cert
- ;;
- 22)
- forget_pass
- ;;
- 23)
- failure_testing
- ;;
- 24)
- log_query
- ;;
- 25)
- version_query
- ;;
- *)
- echo_content red "No such option"
- ;;
- esac
- }
- main
|