2022-04-29 11:53:02 -04:00
#!/bin/bash
#========================================================
2022-11-12 22:53:01 -05:00
# System Required: CentOS 7+ / Debian 8+ / Ubuntu 16+ / Alpine 3+ /
2022-12-12 09:50:36 -05:00
# Arch has only been tested once, if there is any problem, please report with screenshots Dysf888@pm.me
2022-04-29 12:29:17 -04:00
# Description: Nezha Monitoring Install Script
2022-04-29 11:53:02 -04:00
# Github: https://github.com/naiba/nezha
#========================================================
NZ_BASE_PATH = "/opt/nezha"
NZ_DASHBOARD_PATH = " ${ NZ_BASE_PATH } /dashboard "
NZ_AGENT_PATH = " ${ NZ_BASE_PATH } /agent "
2023-11-29 20:39:00 -05:00
NZ_DASHBOARD_SERVICE = "/etc/systemd/system/nezha-dashboard.service"
NZ_DASHBOARD_SERVICERC = "/etc/init.d/nezha-dashboard"
2024-05-21 11:11:43 -04:00
NZ_VERSION = "v0.16.3"
2022-04-29 11:53:02 -04:00
red = '\033[0;31m'
green = '\033[0;32m'
yellow = '\033[0;33m'
plain = '\033[0m'
export PATH = $PATH :/usr/local/bin
os_arch = ""
2022-11-12 22:53:01 -05:00
[ -e /etc/os-release ] && cat /etc/os-release | grep -i "PRETTY_NAME" | grep -qi "alpine" && os_alpine = '1'
2022-04-29 11:53:02 -04:00
pre_check( ) {
2022-11-12 22:53:01 -05:00
[ " $os_alpine " != 1 ] && ! command -v systemctl >/dev/null 2>& 1 && echo "This system is not supported: systemctl not found" && exit 1
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
# check root
2022-04-29 12:29:17 -04:00
[ [ $EUID -ne 0 ] ] && echo -e " ${ red } ERROR: ${ plain } This script must be run with the root user!\n " && exit 1
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
## os_arch
if [ [ $( uname -m | grep 'x86_64' ) != "" ] ] ; then
os_arch = "amd64"
2024-01-18 00:34:58 -05:00
elif [ [ $( uname -m | grep 'i386\|i686' ) != "" ] ] ; then
2022-04-29 11:53:02 -04:00
os_arch = "386"
2024-01-18 00:34:58 -05:00
elif [ [ $( uname -m | grep 'aarch64\|armv8b\|armv8l' ) != "" ] ] ; then
2022-04-29 11:53:02 -04:00
os_arch = "arm64"
2024-01-18 00:34:58 -05:00
elif [ [ $( uname -m | grep 'arm' ) != "" ] ] ; then
2022-04-29 11:53:02 -04:00
os_arch = "arm"
2024-01-18 00:34:58 -05:00
elif [ [ $( uname -m | grep 's390x' ) != "" ] ] ; then
2022-04-29 11:53:02 -04:00
os_arch = "s390x"
2024-01-18 00:34:58 -05:00
elif [ [ $( uname -m | grep 'riscv64' ) != "" ] ] ; then
2022-04-29 11:53:02 -04:00
os_arch = "riscv64"
fi
2023-11-13 03:10:09 -05:00
2023-03-05 09:08:41 -05:00
## China_IP
if [ [ -z " ${ CN } " ] ] ; then
if [ [ $( curl -m 10 -s https://ipapi.co/json | grep 'China' ) != "" ] ] ; then
echo "According to the information provided by ipapi.co, the current IP may be in China"
2024-01-18 00:34:58 -05:00
read -e -r -p "Is the installation done with a Chinese Mirror? [Y/n] (Custom Mirror Input 3):" input
2023-03-05 09:08:41 -05:00
case $input in
2024-01-18 00:34:58 -05:00
[ yY] [ eE] [ sS] | [ yY] )
echo "Use Chinese Mirror"
CN = true
2023-03-05 09:08:41 -05:00
; ;
2023-11-13 03:10:09 -05:00
2024-01-18 00:34:58 -05:00
[ nN] [ oO] | [ nN] )
echo "No Use Chinese Mirror"
2023-03-05 09:08:41 -05:00
; ;
2024-01-18 00:34:58 -05:00
[ 3] )
echo "Use Custom Mirror"
read -e -r -p "Please enter a custom image (e.g. :dn-dao-github-mirror.daocloud.io), leave blank to nouse: " input
case $input in
2023-03-05 09:08:41 -05:00
*)
2024-01-18 00:34:58 -05:00
CUSTOM_MIRROR = $input
; ;
esac
; ;
*)
echo "No Use Chinese Mirror"
2023-03-05 09:08:41 -05:00
; ;
esac
fi
fi
2023-11-13 03:10:09 -05:00
2024-01-18 00:34:58 -05:00
if [ [ -n " ${ CUSTOM_MIRROR } " ] ] ; then
2023-12-03 21:23:56 -05:00
GITHUB_RAW_URL = "gitee.com/naibahq/nezha/raw/master"
2024-01-18 00:34:58 -05:00
GITHUB_URL = $CUSTOM_MIRROR
2023-11-29 21:49:06 -05:00
Get_Docker_URL = "get.docker.com"
2023-03-06 02:49:18 -05:00
Get_Docker_Argu = " -s docker --mirror Aliyun"
Docker_IMG = "registry.cn-shanghai.aliyuncs.com\/naibahq\/nezha-dashboard"
2024-01-18 00:34:58 -05:00
else
if [ [ -z " ${ CN } " ] ] ; then
GITHUB_RAW_URL = "raw.githubusercontent.com/naiba/nezha/master"
GITHUB_URL = "github.com"
Get_Docker_URL = "get.docker.com"
Get_Docker_Argu = " "
Docker_IMG = "ghcr.io\/naiba\/nezha-dashboard"
else
GITHUB_RAW_URL = "gitee.com/naibahq/nezha/raw/master"
2024-04-18 09:42:04 -04:00
GITHUB_URL = "github.com"
2024-01-18 00:34:58 -05:00
Get_Docker_URL = "get.docker.com"
Get_Docker_Argu = " -s docker --mirror Aliyun"
Docker_IMG = "registry.cn-shanghai.aliyuncs.com\/naibahq\/nezha-dashboard"
fi
2023-03-05 09:08:41 -05:00
fi
2022-04-29 11:53:02 -04:00
}
2024-03-29 23:08:29 -04:00
installation_check( ) {
if docker compose version >/dev/null 2>& 1; then
DOCKER_COMPOSE_COMMAND = "docker compose"
if $DOCKER_COMPOSE_COMMAND ls | grep -qw " $NZ_DASHBOARD_PATH /docker-compose.yaml " >/dev/null 2>& 1; then
NEZHA_IMAGES = $( docker images --format "{{.Repository}}:{{.Tag}}" | grep -w "nezha-dashboard" )
if [ -n " $NEZHA_IMAGES " ] ; then
echo "Docker image with nezha-dashboard repository exists:"
echo " $NEZHA_IMAGES "
IS_DOCKER_NEZHA = 1
return
else
echo "No Docker images with the nezha-dashboard repository were found."
fi
fi
elif command -v docker-compose >/dev/null 2>& 1; then
DOCKER_COMPOSE_COMMAND = "docker-compose"
if $DOCKER_COMPOSE_COMMAND -f " $NZ_DASHBOARD_PATH /docker-compose.yaml " config >/dev/null 2>& 1; then
NEZHA_IMAGES = $( docker images --format "{{.Repository}}:{{.Tag}}" | grep -w "nezha-dashboard" )
if [ -n " $NEZHA_IMAGES " ] ; then
echo "Docker image with nezha-dashboard repository exists:"
echo " $NEZHA_IMAGES "
IS_DOCKER_NEZHA = 1
return
else
echo "No Docker images with the nezha-dashboard repository were found."
fi
2022-04-29 11:53:02 -04:00
fi
fi
2024-03-29 23:08:29 -04:00
if [ [ -f $NZ_DASHBOARD_PATH /app ] ] ; then
IS_DOCKER_NEZHA = 0
FRESH_INSTALL = 0
fi
}
select_version( ) {
if [ [ -z $IS_DOCKER_NEZHA ] ] ; then
echo -e " ${ yellow } Select your installation method(Input anything is ok if you are installing agent):\n1. Docker\n2. Standalone ${ plain } "
while true; do
read -e -r -p "Please enter [1-2]: " option
case " ${ option } " in
1)
IS_DOCKER_NEZHA = 1
break
; ;
2)
IS_DOCKER_NEZHA = 0
break
; ;
*)
echo " ${ red } Please enter the correct number [1-2] ${ plain } "
; ;
esac
done
2022-04-29 11:53:02 -04:00
fi
}
update_script( ) {
2022-04-29 12:29:17 -04:00
echo -e "> Update Script"
2023-11-13 03:10:09 -05:00
2022-08-02 22:39:28 -04:00
curl -sL https://${ GITHUB_RAW_URL } /script/install_en.sh -o /tmp/nezha.sh
2022-04-29 11:53:02 -04:00
new_version = $( cat /tmp/nezha.sh | grep "NZ_VERSION" | head -n 1 | awk -F "=" '{print $2}' | sed 's/\"//g;s/,//g;s/ //g' )
if [ ! -n " $new_version " ] ; then
2023-11-29 20:39:00 -05:00
echo -e " Script failed to get, please check if the network can link https:// ${ GITHUB_RAW_URL } /script/install.sh "
2022-04-29 11:53:02 -04:00
return 1
fi
2022-04-29 12:29:17 -04:00
echo -e " The current latest version is: ${ new_version } "
2022-04-29 11:53:02 -04:00
mv -f /tmp/nezha.sh ./nezha.sh && chmod a+x ./nezha.sh
2023-11-13 03:10:09 -05:00
2022-04-29 12:29:17 -04:00
echo -e "Execute new script after 3s"
2022-04-29 11:53:02 -04:00
sleep 3s
clear
exec ./nezha.sh
exit 0
}
before_show_menu( ) {
2022-04-29 12:29:17 -04:00
echo && echo -n -e " ${ yellow } * Press Enter to return to the main menu * ${ plain } " && read temp
2022-04-29 11:53:02 -04:00
show_menu
}
install_base( ) {
2022-05-13 07:29:03 -04:00
( command -v git >/dev/null 2>& 1 && command -v curl >/dev/null 2>& 1 && command -v wget >/dev/null 2>& 1 && command -v unzip >/dev/null 2>& 1 && command -v getenforce >/dev/null 2>& 1) ||
2024-06-13 22:24:58 -04:00
( install_soft curl wget git unzip)
2022-04-29 11:53:02 -04:00
}
2023-11-29 20:39:00 -05:00
2024-01-18 00:34:58 -05:00
install_arch( ) {
2022-12-12 09:50:36 -05:00
echo -e " ${ green } Info: ${ plain } Archlinux needs to add nezha-agent user to install libselinux. It will be deleted automatically after installation. It is recommended to check manually\n "
read -e -r -p "Do you need to install libselinux? [Y/n] " input
case $input in
2024-01-18 00:34:58 -05:00
[ yY] [ eE] [ sS] | [ yY] )
useradd -m nezha-agent
sed -i " $ a\nezha-agent ALL=(ALL ) NOPASSWD:ALL " /etc/sudoers
2024-05-31 10:05:05 -04:00
sudo -iu nezha-agent bash -c ' gpg --keyserver keys.gnupg.net --recv-keys 4695881C254508D1;
2023-01-21 20:02:58 -05:00
cd /tmp; git clone https://aur.archlinux.org/libsepol.git; cd libsepol; makepkg -si --noconfirm --asdeps; cd ..;
2023-11-13 03:10:09 -05:00
git clone https://aur.archlinux.org/libselinux.git; cd libselinux; makepkg -si --noconfirm; cd ..;
2023-01-21 20:02:58 -05:00
rm -rf libsepol libselinux'
2024-02-21 07:19:34 -05:00
sed -i '/nezha-agent/d' /etc/sudoers && sleep 30s && killall -u nezha-agent && userdel -r nezha-agent
2024-01-18 00:34:58 -05:00
echo -e " ${ red } Info: ${ plain } user nezha-agent has been deleted, Be sure to check it manually!\n "
2022-12-12 09:50:36 -05:00
; ;
2024-01-18 00:34:58 -05:00
[ nN] [ oO] | [ nN] )
echo "Libselinux will not be installed"
2022-12-12 09:50:36 -05:00
; ;
2024-01-18 00:34:58 -05:00
*)
echo "Libselinux will not be installed"
exit 0
2022-12-12 09:50:36 -05:00
; ;
esac
}
2022-04-29 11:53:02 -04:00
install_soft( ) {
2022-12-10 05:05:10 -05:00
( command -v yum >/dev/null 2>& 1 && yum makecache && yum install $* selinux-policy -y) ||
2024-01-18 00:34:58 -05:00
( command -v apt >/dev/null 2>& 1 && apt update && apt install $* selinux-utils -y) ||
( command -v pacman >/dev/null 2>& 1 && pacman -Syu $* base-devel --noconfirm && install_arch) ||
( command -v apt-get >/dev/null 2>& 1 && apt-get update && apt-get install $* selinux-utils -y) ||
( command -v apk >/dev/null 2>& 1 && apk update && apk add $* -f)
2022-04-29 11:53:02 -04:00
}
install_dashboard( ) {
install_base
2023-11-13 03:10:09 -05:00
2022-04-29 12:29:17 -04:00
echo -e "> Install Panel"
2023-11-13 03:10:09 -05:00
2022-04-29 12:29:17 -04:00
# Nezha Monitoring Folder
2024-03-29 23:08:29 -04:00
if [ [ ! $FRESH_INSTALL = = 0 ] ] ; then
2022-05-07 10:58:47 -04:00
mkdir -p $NZ_DASHBOARD_PATH
else
echo "You may have already installed the dashboard, repeated installation will overwrite the data, please pay attention to backup."
read -e -r -p "Exit the installation? [Y/n] " input
case $input in
2024-01-18 00:34:58 -05:00
[ yY] [ eE] [ sS] | [ yY] )
echo "Exit the installation."
exit 0
2022-05-07 10:58:47 -04:00
; ;
2024-01-18 00:34:58 -05:00
[ nN] [ oO] | [ nN] )
echo "Continue."
2022-05-07 10:58:47 -04:00
; ;
2024-01-18 00:34:58 -05:00
*)
echo "Exit the installation."
exit 0
2022-05-07 10:58:47 -04:00
; ;
esac
fi
2022-04-29 11:53:02 -04:00
chmod 777 -R $NZ_DASHBOARD_PATH
2023-11-13 03:10:09 -05:00
2024-03-29 23:08:29 -04:00
if [ [ $IS_DOCKER_NEZHA = = 1 ] ] ; then
install_dashboard_docker
elif [ [ $IS_DOCKER_NEZHA = = 0 ] ] ; then
install_dashboard_standalone
2022-04-29 11:53:02 -04:00
fi
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
modify_dashboard_config 0
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ [ $# = = 0 ] ] ; then
before_show_menu
fi
}
2024-03-29 23:08:29 -04:00
install_dashboard_docker( ) {
if [ [ ! $FRESH_INSTALL = = 0 ] ] ; then
command -v docker >/dev/null 2>& 1
if [ [ $? != 0 ] ] ; then
echo -e "Installing Docker"
if [ " $os_alpine " != 1 ] ; then
bash <( curl -sL https://${ Get_Docker_URL } ) ${ Get_Docker_Argu } >/dev/null 2>& 1
if [ [ $? != 0 ] ] ; then
echo -e " ${ red } Script failed to get, please check if the network can link ${ Get_Docker_URL } ${ plain } "
return 0
fi
systemctl enable docker.service
systemctl start docker.service
else
apk add docker docker-compose >/dev/null 2>& 1
rc-update add docker
rc-service docker start
fi
echo -e " ${ green } Docker ${ plain } installed successfully "
installation_check
fi
2023-11-29 20:39:00 -05:00
fi
2024-03-29 23:08:29 -04:00
}
2023-11-29 20:39:00 -05:00
2024-03-29 23:08:29 -04:00
install_dashboard_standalone( ) {
2023-11-29 20:39:00 -05:00
if [ ! -d " ${ NZ_DASHBOARD_PATH } /resource/template/theme-custom " ] || [ ! -d " ${ NZ_DASHBOARD_PATH } /resource/static/custom " ] ; then
mkdir -p " ${ NZ_DASHBOARD_PATH } /resource/template/theme-custom " " ${ NZ_DASHBOARD_PATH } /resource/static/custom " >/dev/null 2>& 1
fi
}
2024-01-18 00:34:58 -05:00
selinux( ) {
2022-05-13 07:29:03 -04:00
#Check SELinux
2024-02-23 09:55:42 -05:00
command -v getenforce >/dev/null 2>& 1
if [ $? -eq 0 ] ; then
2022-12-12 09:50:36 -05:00
getenforce | grep '[Ee]nfor'
2024-01-18 00:34:58 -05:00
if [ $? -eq 0 ] ; then
2022-12-12 09:50:36 -05:00
echo -e "SELinux running, closing now! "
setenforce 0 & >/dev/null
find_key = "SELINUX="
sed -ri " /^ $find_key /c ${ find_key } disabled " /etc/selinux/config
fi
2022-05-13 07:29:03 -04:00
fi
}
2022-04-29 11:53:02 -04:00
install_agent( ) {
install_base
2022-05-13 07:29:03 -04:00
selinux
2023-11-13 03:10:09 -05:00
2022-04-29 12:29:17 -04:00
echo -e "> Install Nezha Agent"
2023-11-13 03:10:09 -05:00
2022-04-29 12:29:17 -04:00
echo -e "Obtaining Agent version"
2023-11-13 03:10:09 -05:00
2023-05-10 12:08:54 -04:00
local version = $( curl -m 10 -sL "https://api.github.com/repos/nezhahq/agent/releases/latest" | grep "tag_name" | head -n 1 | awk -F ":" '{print $2}' | sed 's/\"//g;s/,//g;s/ //g' )
2022-04-29 11:53:02 -04:00
if [ ! -n " $version " ] ; then
2023-05-10 12:08:54 -04:00
version = $( curl -m 10 -sL "https://fastly.jsdelivr.net/gh/nezhahq/agent/" | grep "option\.value" | awk -F "'" '{print $2}' | sed 's/nezhahq\/agent@/v/g' )
2022-04-29 11:53:02 -04:00
fi
2022-05-07 10:58:47 -04:00
if [ ! -n " $version " ] ; then
2023-05-10 12:08:54 -04:00
version = $( curl -m 10 -sL "https://gcore.jsdelivr.net/gh/nezhahq/agent/" | grep "option\.value" | awk -F "'" '{print $2}' | sed 's/nezhahq\/agent@/v/g' )
2022-05-07 10:58:47 -04:00
fi
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ ! -n " $version " ] ; then
2023-05-10 12:08:54 -04:00
echo -e "Fail to obtaine agent version, please check if the network can link https://api.github.com/repos/nezhahq/agent/releases/latest"
2022-04-29 11:53:02 -04:00
return 0
else
2022-04-29 12:29:17 -04:00
echo -e " The current latest version is: ${ version } "
2022-04-29 11:53:02 -04:00
fi
2023-11-13 03:10:09 -05:00
2022-04-29 12:29:17 -04:00
# Nezha Monitoring Folder
2022-04-29 11:53:02 -04:00
mkdir -p $NZ_AGENT_PATH
chmod 777 -R $NZ_AGENT_PATH
2023-11-13 03:10:09 -05:00
2022-04-29 12:29:17 -04:00
echo -e "Downloading Agent"
2024-04-12 23:14:46 -04:00
wget -t 2 -T 60 -O nezha-agent_linux_${ os_arch } .zip https://${ GITHUB_URL } /nezhahq/agent/releases/download/${ version } /nezha-agent_linux_${ os_arch } .zip >/dev/null 2>& 1
2022-04-29 11:53:02 -04:00
if [ [ $? != 0 ] ] ; then
2022-04-29 12:29:17 -04:00
echo -e " ${ red } Fail to download agent, please check if the network can link ${ GITHUB_URL } ${ plain } "
2022-04-29 11:53:02 -04:00
return 0
fi
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
unzip -qo nezha-agent_linux_${ os_arch } .zip &&
2024-01-18 00:34:58 -05:00
mv nezha-agent $NZ_AGENT_PATH &&
rm -rf nezha-agent_linux_${ os_arch } .zip README.md
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ $# -ge 3 ] ; then
modify_agent_config " $@ "
else
modify_agent_config 0
fi
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ [ $# = = 0 ] ] ; then
before_show_menu
fi
}
modify_agent_config( ) {
2022-04-29 12:29:17 -04:00
echo -e "> Modify Agent Configuration"
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ $# -lt 3 ] ; then
2022-04-29 12:29:17 -04:00
echo "Please add Agent in the admin panel first, record the secret" &&
2024-01-18 00:34:58 -05:00
read -ep "Please enter a domain that resolves to the IP where the panel is located (no CDN sets): " nz_grpc_host &&
read -ep "Please enter the panel RPC port (default 5555): " nz_grpc_port &&
read -ep "Please enter the Agent secret: " nz_client_secret &&
read -ep "Do you want to enable SSL/TLS encryption for the gRPC port (--tls)? Press [y] if yes, the default is not required, and users can press Enter to skip if you don't understand: " nz_grpc_proxy
grep -qiw 'Y' <<< " ${ nz_grpc_proxy } " && args = '--tls'
2022-04-29 11:53:02 -04:00
if [ [ -z " ${ nz_grpc_host } " || -z " ${ nz_client_secret } " ] ] ; then
2022-04-29 12:29:17 -04:00
echo -e " ${ red } All options cannot be empty ${ plain } "
2022-04-29 11:53:02 -04:00
before_show_menu
return 1
fi
if [ [ -z " ${ nz_grpc_port } " ] ] ; then
nz_grpc_port = 5555
fi
else
nz_grpc_host = $1
nz_grpc_port = $2
nz_client_secret = $3
2023-11-13 03:10:09 -05:00
shift 3
if [ $# -gt 0 ] ; then
2024-05-19 10:34:57 -04:00
args = " $* "
2023-11-13 03:10:09 -05:00
fi
2022-04-29 11:53:02 -04:00
fi
2023-11-13 03:10:09 -05:00
2024-05-21 11:11:43 -04:00
${ NZ_AGENT_PATH } /nezha-agent service install -s " $nz_grpc_host : $nz_grpc_port " -p $nz_client_secret $args >/dev/null 2>& 1
if [ $? -ne 0 ] ; then
${ NZ_AGENT_PATH } /nezha-agent service uninstall >/dev/null 2>& 1
${ NZ_AGENT_PATH } /nezha-agent service install -s " $nz_grpc_host : $nz_grpc_port " -p $nz_client_secret $args >/dev/null 2>& 1
2022-04-29 11:53:02 -04:00
fi
2023-11-13 03:10:09 -05:00
2022-04-29 12:29:17 -04:00
echo -e " Agent configuration ${ green } modified successfully, please wait for agent self-restart to take effect ${ plain } "
2023-11-13 03:10:09 -05:00
2023-11-30 00:16:39 -05:00
#if [[ $# == 0 ]]; then
# before_show_menu
#fi
2022-04-29 11:53:02 -04:00
}
modify_dashboard_config( ) {
2022-04-29 12:29:17 -04:00
echo -e "> Modify Panel Configuration"
2023-11-13 03:10:09 -05:00
2024-03-29 23:08:29 -04:00
if [ [ $IS_DOCKER_NEZHA = = 1 ] ] ; then
echo -e "Download Docker Script"
2024-04-12 23:14:46 -04:00
wget -t 2 -T 60 -O /tmp/nezha-docker-compose.yaml https://${ GITHUB_RAW_URL } /script/docker-compose.yaml >/dev/null 2>& 1
2024-03-29 23:08:29 -04:00
if [ [ $? != 0 ] ] ; then
echo -e " ${ red } Script failed to get, please check if the network can link ${ GITHUB_RAW_URL } ${ plain } "
return 0
fi
2022-04-29 11:53:02 -04:00
fi
2023-11-13 03:10:09 -05:00
2024-04-12 23:14:46 -04:00
wget -t 2 -T 60 -O /tmp/nezha-config.yaml https://${ GITHUB_RAW_URL } /script/config.yaml >/dev/null 2>& 1
2022-04-29 11:53:02 -04:00
if [ [ $? != 0 ] ] ; then
2022-04-29 12:29:17 -04:00
echo -e " ${ red } Script failed to get, please check if the network can link ${ GITHUB_RAW_URL } ${ plain } "
2022-04-29 11:53:02 -04:00
return 0
fi
2023-11-13 03:10:09 -05:00
2022-04-29 12:29:17 -04:00
echo "About the GitHub Oauth2 application: create it at https://github.com/settings/developers, no review required, and fill in the http(s)://domain_or_IP/oauth2/callback" &&
2024-01-18 00:34:58 -05:00
echo "(Not recommended) About the Gitee Oauth2 application: create it at https://gitee.com/oauth/applications, no auditing required, and fill in the http(s)://domain_or_IP/oauth2/callback" &&
read -ep "Please enter the OAuth2 provider (github/gitlab/jihulab/gitee, default github): " nz_oauth2_type &&
read -ep "Please enter the Client ID of the Oauth2 application: " nz_github_oauth_client_id &&
read -ep "Please enter the Client Secret of the Oauth2 application: " nz_github_oauth_client_secret &&
read -ep "Please enter your GitHub/Gitee login name as the administrator, separated by commas: " nz_admin_logins &&
read -ep "Please enter the site title: " nz_site_title &&
read -ep "Please enter the site access port: (default 8008)" nz_site_port &&
read -ep "Please enter the RPC port to be used for Agent access: (default 5555)" nz_grpc_port
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ [ -z " ${ nz_admin_logins } " || -z " ${ nz_github_oauth_client_id } " || -z " ${ nz_github_oauth_client_secret } " || -z " ${ nz_site_title } " ] ] ; then
2022-04-29 12:29:17 -04:00
echo -e " ${ red } All options cannot be empty ${ plain } "
2022-04-29 11:53:02 -04:00
before_show_menu
return 1
fi
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ [ -z " ${ nz_site_port } " ] ] ; then
nz_site_port = 8008
fi
if [ [ -z " ${ nz_grpc_port } " ] ] ; then
nz_grpc_port = 5555
fi
if [ [ -z " ${ nz_oauth2_type } " ] ] ; then
nz_oauth2_type = github
fi
2023-11-13 03:10:09 -05:00
2022-05-29 11:05:12 -04:00
sed -i " s/nz_oauth2_type/ ${ nz_oauth2_type } / " /tmp/nezha-config.yaml
sed -i " s/nz_admin_logins/ ${ nz_admin_logins } / " /tmp/nezha-config.yaml
sed -i " s/nz_grpc_port/ ${ nz_grpc_port } / " /tmp/nezha-config.yaml
sed -i " s/nz_github_oauth_client_id/ ${ nz_github_oauth_client_id } / " /tmp/nezha-config.yaml
sed -i " s/nz_github_oauth_client_secret/ ${ nz_github_oauth_client_secret } / " /tmp/nezha-config.yaml
sed -i " s/nz_site_title/ ${ nz_site_title } / " /tmp/nezha-config.yaml
sed -i "s/nz_language/en-US/" /tmp/nezha-config.yaml
2024-03-29 23:08:29 -04:00
if [ [ $IS_DOCKER_NEZHA = = 1 ] ] ; then
sed -i " s/nz_site_port/ ${ nz_site_port } / " /tmp/nezha-docker-compose.yaml
sed -i " s/nz_grpc_port/ ${ nz_grpc_port } /g " /tmp/nezha-docker-compose.yaml
sed -i " s/nz_image_url/ ${ Docker_IMG } / " /tmp/nezha-docker-compose.yaml
elif [ [ $IS_DOCKER_NEZHA = = 0 ] ] ; then
sed -i " s/80/ ${ nz_site_port } / " /tmp/nezha-config.yaml
2023-11-29 20:39:00 -05:00
fi
2024-01-18 00:34:58 -05:00
2023-11-29 20:39:00 -05:00
mkdir -p $NZ_DASHBOARD_PATH /data
mv -f /tmp/nezha-config.yaml ${ NZ_DASHBOARD_PATH } /data/config.yaml
2024-03-29 23:08:29 -04:00
if [ [ $IS_DOCKER_NEZHA = = 1 ] ] ; then
mv -f /tmp/nezha-docker-compose.yaml ${ NZ_DASHBOARD_PATH } /docker-compose.yaml
fi
2023-11-29 20:39:00 -05:00
2024-03-29 23:08:29 -04:00
if [ [ $IS_DOCKER_NEZHA = = 0 ] ] ; then
echo -e "Downloading service file"
if [ " $os_alpine " != 1 ] ; then
2024-04-12 23:14:46 -04:00
wget -t 2 -T 60 -O $NZ_DASHBOARD_SERVICE https://${ GITHUB_RAW_URL } /script/nezha-dashboard.service >/dev/null 2>& 1
2024-03-29 23:08:29 -04:00
else
2024-04-12 23:14:46 -04:00
wget -t 2 -T 60 -O $NZ_DASHBOARD_SERVICERC https://${ GITHUB_RAW_URL } /script/nezha-dashboard >/dev/null 2>& 1
2024-03-29 23:08:29 -04:00
chmod +x $NZ_DASHBOARD_SERVICERC
if [ [ $? != 0 ] ] ; then
echo -e " ${ red } File failed to get, please check if the network can link ${ GITHUB_RAW_URL } ${ plain } "
return 0
fi
2023-11-29 20:39:00 -05:00
fi
fi
echo -e " Dashboard configuration ${ green } modified successfully, please wait for Dashboard self-restart to take effect ${ plain } "
2024-01-18 00:34:58 -05:00
2024-03-29 23:08:29 -04:00
restart_and_update
2024-01-18 00:34:58 -05:00
2023-11-29 20:39:00 -05:00
if [ [ $# = = 0 ] ] ; then
before_show_menu
fi
}
2022-04-29 11:53:02 -04:00
restart_and_update( ) {
2022-04-29 12:29:17 -04:00
echo -e "> Restart and Update the Panel"
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
cd $NZ_DASHBOARD_PATH
2023-11-13 03:10:09 -05:00
2024-03-29 23:08:29 -04:00
if [ [ $IS_DOCKER_NEZHA = = 1 ] ] ; then
restart_and_update_docker
elif [ [ $IS_DOCKER_NEZHA = = 0 ] ] ; then
restart_and_update_standalone
2022-11-07 22:00:28 -05:00
fi
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ [ $? = = 0 ] ] ; then
2022-04-29 12:29:17 -04:00
echo -e " ${ green } Nezha Monitoring Restart Successful ${ plain } "
echo -e " Default panel address: ${ yellow } domain:Site_access_port ${ plain } "
2022-04-29 11:53:02 -04:00
else
2022-04-29 12:29:17 -04:00
echo -e " ${ red } The restart failed, probably because the boot time exceeded two seconds, please check the log information later ${ plain } "
2022-04-29 11:53:02 -04:00
fi
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ [ $# = = 0 ] ] ; then
before_show_menu
fi
}
2024-03-29 23:08:29 -04:00
restart_and_update_docker( ) {
$DOCKER_COMPOSE_COMMAND pull
$DOCKER_COMPOSE_COMMAND down
$DOCKER_COMPOSE_COMMAND up -d
}
2023-11-29 20:39:00 -05:00
2024-03-29 23:08:29 -04:00
restart_and_update_standalone( ) {
2023-11-29 20:39:00 -05:00
if [ " $os_alpine " != 1 ] ; then
systemctl stop nezha-dashboard
else
rc-service nezha-dashboard stop
fi
2024-01-18 00:34:58 -05:00
wget -qO app.zip https://${ GITHUB_URL } /naiba/nezha/releases/latest/download/dashboard-linux-$os_arch .zip >/dev/null 2>& 1 && unzip -qq app.zip && mv dist/dashboard-linux-$os_arch app && rm -r app.zip dist
2023-11-29 20:39:00 -05:00
2024-01-18 00:34:58 -05:00
if [ " $os_alpine " != 1 ] ; then
2023-11-29 20:39:00 -05:00
systemctl daemon-reload
systemctl enable nezha-dashboard
systemctl restart nezha-dashboard
else
rc-update add nezha-dashboard
rc-service nezha-dashboard restart
fi
}
2022-04-29 11:53:02 -04:00
start_dashboard( ) {
2022-04-29 12:29:17 -04:00
echo -e "> Start Panel"
2023-11-13 03:10:09 -05:00
2024-03-29 23:08:29 -04:00
if [ [ $IS_DOCKER_NEZHA = = 1 ] ] ; then
start_dashboard_docker
elif [ [ $IS_DOCKER_NEZHA = = 0 ] ] ; then
start_dashboard_standalone
2022-11-07 22:00:28 -05:00
fi
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ [ $? = = 0 ] ] ; then
2022-04-29 12:29:17 -04:00
echo -e " ${ green } Nezha Monitoring Start Successful ${ plain } "
2022-04-29 11:53:02 -04:00
else
2022-04-29 12:29:17 -04:00
echo -e " ${ red } Failed to start, please check the log message later ${ plain } "
2022-04-29 11:53:02 -04:00
fi
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ [ $# = = 0 ] ] ; then
before_show_menu
fi
}
2024-03-29 23:08:29 -04:00
start_dashboard_docker( ) {
cd $NZ_DASHBOARD_PATH && $DOCKER_COMPOSE_COMMAND up -d
}
2024-01-18 00:34:58 -05:00
2024-03-29 23:08:29 -04:00
start_dashboard_standalone( ) {
2023-11-29 20:39:00 -05:00
if [ " $os_alpine " != 1 ] ; then
systemctl start nezha-dashboard
else
rc-service nezha-dashboard start
fi
}
2022-04-29 11:53:02 -04:00
stop_dashboard( ) {
2022-04-29 12:29:17 -04:00
echo -e "> Stop Panel"
2023-11-13 03:10:09 -05:00
2024-03-29 23:08:29 -04:00
if [ [ $IS_DOCKER_NEZHA = = 1 ] ] ; then
stop_dashboard_docker
elif [ [ $IS_DOCKER_NEZHA = = 0 ] ] ; then
stop_dashboard_standalone
2022-11-07 22:00:28 -05:00
fi
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ [ $? = = 0 ] ] ; then
2022-04-29 12:29:17 -04:00
echo -e " ${ green } Nezha Monitoring Stop Successful ${ plain } "
2022-04-29 11:53:02 -04:00
else
2022-04-29 12:29:17 -04:00
echo -e " ${ red } Failed to stop, please check the log message later ${ plain } "
2022-04-29 11:53:02 -04:00
fi
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ [ $# = = 0 ] ] ; then
before_show_menu
fi
}
2024-03-29 23:08:29 -04:00
stop_dashboard_docker( ) {
cd $NZ_DASHBOARD_PATH && $DOCKER_COMPOSE_COMMAND down
}
2024-01-18 00:34:58 -05:00
2024-03-29 23:08:29 -04:00
stop_dashboard_standalone( ) {
2023-11-29 20:39:00 -05:00
if [ " $os_alpine " != 1 ] ; then
systemctl stop nezha-dashboard
else
rc-service nezha-dashboard stop
fi
}
2022-04-29 11:53:02 -04:00
show_dashboard_log( ) {
2022-04-29 12:29:17 -04:00
echo -e "> View Panel Log"
2023-11-13 03:10:09 -05:00
2024-03-29 23:08:29 -04:00
if [ [ $IS_DOCKER_NEZHA = = 1 ] ] ; then
show_dashboard_log_docker
elif [ [ $IS_DOCKER_NEZHA = = 0 ] ] ; then
show_dashboard_log_standalone
2022-11-07 22:00:28 -05:00
fi
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ [ $# = = 0 ] ] ; then
before_show_menu
fi
}
2024-03-29 23:08:29 -04:00
show_dashboard_log_docker( ) {
cd $NZ_DASHBOARD_PATH && $DOCKER_COMPOSE_COMMAND logs -f
}
2024-01-18 00:34:58 -05:00
2024-03-29 23:08:29 -04:00
show_dashboard_log_standalone( ) {
2023-11-29 20:39:00 -05:00
if [ " $os_alpine " != 1 ] ; then
journalctl -xf -u nezha-dashboard.service
else
2024-03-29 23:08:29 -04:00
tail -n 10 /var/log/nezha-dashboard.err
2023-11-29 20:39:00 -05:00
fi
}
2022-04-29 11:53:02 -04:00
uninstall_dashboard( ) {
2022-04-29 12:29:17 -04:00
echo -e "> Uninstall Panel"
2023-11-13 03:10:09 -05:00
2024-03-29 23:08:29 -04:00
if [ [ $IS_DOCKER_NEZHA = = 1 ] ] ; then
uninstall_dashboard_docker
elif [ [ $IS_DOCKER_NEZHA = = 0 ] ] ; then
uninstall_dashboard_standalone
2022-11-07 22:00:28 -05:00
fi
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
clean_all
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ [ $# = = 0 ] ] ; then
before_show_menu
fi
2023-11-29 20:39:00 -05:00
}
2024-03-29 23:08:29 -04:00
uninstall_dashboard_docker( ) {
cd $NZ_DASHBOARD_PATH && $DOCKER_COMPOSE_COMMAND down
rm -rf $NZ_DASHBOARD_PATH
docker rmi -f ghcr.io/naiba/nezha-dashboard >/dev/null 2>& 1
docker rmi -f registry.cn-shanghai.aliyuncs.com/naibahq/nezha-dashboard >/dev/null 2>& 1
}
2024-01-18 00:34:58 -05:00
2024-03-29 23:08:29 -04:00
uninstall_dashboard_standalone( ) {
2023-11-29 20:39:00 -05:00
rm -rf $NZ_DASHBOARD_PATH
if [ " $os_alpine " != 1 ] ; then
systemctl stop nezha-dashboard
else
rc-service nezha-dashboard stop
fi
if [ " $os_alpine " != 1 ] ; then
rm $NZ_DASHBOARD_SERVICE
else
rm $NZ_DASHBOARD_SERVICERC
fi
2022-04-29 11:53:02 -04:00
}
show_agent_log( ) {
2023-11-29 20:39:00 -05:00
echo -e "> > View Agent Log"
2023-11-13 03:10:09 -05:00
2023-11-29 20:39:00 -05:00
if [ " $os_alpine " != 1 ] ; then
journalctl -xf -u nezha-agent.service
else
2024-03-29 23:08:29 -04:00
tail -n 10 /var/log/nezha-agent.err
2023-11-29 20:39:00 -05:00
fi
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ [ $# = = 0 ] ] ; then
before_show_menu
fi
}
uninstall_agent( ) {
2022-04-29 12:29:17 -04:00
echo -e "> Uninstall Agent"
2023-11-13 03:10:09 -05:00
2024-05-21 11:11:43 -04:00
${ NZ_AGENT_PATH } /nezha-agent service uninstall
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
rm -rf $NZ_AGENT_PATH
clean_all
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ [ $# = = 0 ] ] ; then
before_show_menu
fi
}
restart_agent( ) {
2022-04-29 12:29:17 -04:00
echo -e "> Restart Agent"
2023-11-13 03:10:09 -05:00
2024-05-21 11:11:43 -04:00
${ NZ_AGENT_PATH } /nezha-agent service restart
2023-11-13 03:10:09 -05:00
2022-04-29 11:53:02 -04:00
if [ [ $# = = 0 ] ] ; then
before_show_menu
fi
}
clean_all( ) {
if [ -z " $( ls -A ${ NZ_BASE_PATH } ) " ] ; then
rm -rf ${ NZ_BASE_PATH }
fi
}
show_usage( ) {
2022-04-29 12:29:17 -04:00
echo "Nezha Monitor Management Script Usage: "
2022-04-29 11:53:02 -04:00
echo "--------------------------------------------------------"
2022-04-29 12:29:17 -04:00
echo "./nezha.sh - Show Menu"
echo "./nezha.sh install_dashboard - Install Panel"
echo "./nezha.sh modify_dashboard_config - Modify Panel Configuration"
echo "./nezha.sh start_dashboard - Start Panel"
echo "./nezha.sh stop_dashboard - Stop Panel"
echo "./nezha.sh restart_and_update - Restart and Update the Panel"
echo "./nezha.sh show_dashboard_log - View Panel Log"
echo "./nezha.sh uninstall_dashboard - Uninstall Panel"
2022-04-29 11:53:02 -04:00
echo "--------------------------------------------------------"
2022-04-29 12:29:17 -04:00
echo "./nezha.sh install_agent - Install Agent"
echo "./nezha.sh modify_agent_config - Modify Agent Configuration"
echo "./nezha.sh show_agent_log - View Agent Log"
echo "./nezha.sh uninstall_agent - Uninstall Agent"
echo "./nezha.sh restart_agent - Restart Agent"
echo "./nezha.sh update_script - Update Script"
2022-04-29 11:53:02 -04:00
echo "--------------------------------------------------------"
}
show_menu( ) {
echo -e "
2022-04-29 12:29:17 -04:00
${ green } Nezha Monitor Management Script${ plain } ${ red } ${ NZ_VERSION } ${ plain }
2022-04-29 11:53:02 -04:00
--- https://github.com/naiba/nezha ---
2022-04-29 12:29:17 -04:00
${ green } 1.${ plain } Install Panel
${ green } 2.${ plain } Modify Panel Configuration
${ green } 3.${ plain } Start Panel
${ green } 4.${ plain } Stop Panel
${ green } 5.${ plain } Restart and Update the Panel
${ green } 6.${ plain } View Panel Log
${ green } 7.${ plain } Uninstall Panel
2022-04-29 11:53:02 -04:00
————————————————-
2022-04-29 12:29:17 -04:00
${ green } 8.${ plain } Install Agent
${ green } 9.${ plain } Modify Agent Configuration
${ green } 10.${ plain } View Agent Log
${ green } 11.${ plain } Uninstall Agent
${ green } 12.${ plain } Restart Agent
2022-04-29 11:53:02 -04:00
————————————————-
2022-04-29 12:29:17 -04:00
${ green } 13.${ plain } Update Script
2022-04-29 11:53:02 -04:00
————————————————-
2022-04-29 12:29:17 -04:00
${ green } 0.${ plain } Exit Script
2022-04-29 11:53:02 -04:00
"
2022-04-29 12:29:17 -04:00
echo && read -ep "Please enter [0-13]: " num
2024-03-29 23:08:29 -04:00
case " ${ num } " in
2024-01-18 00:34:58 -05:00
0)
exit 0
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
1)
install_dashboard
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
2)
modify_dashboard_config
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
3)
start_dashboard
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
4)
stop_dashboard
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
5)
restart_and_update
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
6)
show_dashboard_log
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
7)
uninstall_dashboard
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
8)
install_agent
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
9)
modify_agent_config
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
10)
show_agent_log
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
11)
uninstall_agent
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
12)
restart_agent
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
13)
update_script
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
*)
echo -e " ${ red } Please enter the correct number [0-13] ${ plain } "
2023-11-29 20:39:00 -05:00
; ;
2024-03-29 23:08:29 -04:00
esac
2022-04-29 11:53:02 -04:00
}
pre_check
2024-03-29 23:08:29 -04:00
installation_check
2022-04-29 11:53:02 -04:00
if [ [ $# > 0 ] ] ; then
2024-03-29 23:08:29 -04:00
case $1 in
2024-01-18 00:34:58 -05:00
"install_dashboard" )
install_dashboard 0
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
"modify_dashboard_config" )
modify_dashboard_config 0
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
"start_dashboard" )
start_dashboard 0
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
"stop_dashboard" )
stop_dashboard 0
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
"restart_and_update" )
restart_and_update 0
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
"show_dashboard_log" )
show_dashboard_log 0
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
"uninstall_dashboard" )
uninstall_dashboard 0
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
"install_agent" )
shift
if [ $# -ge 3 ] ; then
install_agent " $@ "
else
install_agent 0
fi
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
"modify_agent_config" )
modify_agent_config 0
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
"show_agent_log" )
show_agent_log 0
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
"uninstall_agent" )
uninstall_agent 0
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
"restart_agent" )
restart_agent 0
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
"update_script" )
update_script 0
2023-11-29 20:39:00 -05:00
; ;
2024-01-18 00:34:58 -05:00
*) show_usage ; ;
2024-03-29 23:08:29 -04:00
esac
2022-04-29 11:53:02 -04:00
else
2023-11-29 20:39:00 -05:00
select_version
2022-04-29 11:53:02 -04:00
show_menu
2024-03-29 23:08:29 -04:00
fi