update template

This commit is contained in:
uubulb 2024-11-02 22:56:41 +08:00
parent 182fa1c5f1
commit 38ceb3b015
4 changed files with 1304 additions and 203 deletions

View File

@ -32,7 +32,7 @@ sudo() {
check_systemd() { check_systemd() {
if [ "$os_alpine" != 1 ] && ! command -v systemctl >/dev/null 2>&1; then if [ "$os_alpine" != 1 ] && ! command -v systemctl >/dev/null 2>&1; then
echo "System not supported: systemctl not found" echo "不支持此系统:未找到 systemctl 命令"
exit 1 exit 1
fi fi
} }
@ -87,32 +87,31 @@ pre_check() {
if [ -z "$CN" ]; then if [ -z "$CN" ]; then
geo_check geo_check
if [ -n "$isCN" ]; then if [ -n "$isCN" ]; then
echo "According to the information provided by various geoip api, the current IP may be in China" echo "根据geoip api提供的信息当前IP可能在中国"
printf "Will the installation be done with a Chinese Mirror? [Y/n] (Custom Mirror Input 3): " printf "是否选用中国镜像完成安装? [Y/n] (自定义镜像输入 3)"
read -r input read -r input
case $input in case $input in
[yY][eE][sS] | [yY]) [yY][eE][sS] | [yY])
echo "Use Chinese Mirror" echo "使用中国镜像"
CN=true CN=true
;; ;;
[nN][oO] | [nN]) [nN][oO] | [nN])
echo "Do Not Use Chinese Mirror" echo "不使用中国镜像"
;; ;;
[3]) [3])
echo "Use Custom Mirror" echo "使用自定义镜像"
printf "Please enter a custom image (e.g. :dn-dao-github-mirror.daocloud.io). If left blank, it won't be used: " printf "请输入自定义镜像 (例如:dn-dao-github-mirror.daocloud.io),留空为不使用:"
read -r input read -r input
case $input in case $input in
*) *)
CUSTOM_MIRROR=$input CUSTOM_MIRROR=$input
;; ;;
esac esac
;; ;;
*) *)
echo "Do Not Use Chinese Mirror" echo "不使用中国镜像"
;; ;;
esac esac
fi fi
@ -145,29 +144,29 @@ installation_check() {
if docker compose version >/dev/null 2>&1; then if docker compose version >/dev/null 2>&1; then
DOCKER_COMPOSE_COMMAND="docker compose" DOCKER_COMPOSE_COMMAND="docker compose"
if sudo $DOCKER_COMPOSE_COMMAND ls | grep -qw "$NZ_DASHBOARD_PATH/docker-compose.yaml" >/dev/null 2>&1; then if sudo $DOCKER_COMPOSE_COMMAND ls | grep -qw "$NZ_DASHBOARD_PATH/docker-compose.yaml" >/dev/null 2>&1; then
NEZHA_IMAGES=$(sudo docker images --format "<no value>:<no value>" | grep -w "nezha-dashboard") NEZHA_IMAGES=$(sudo docker images --format "{{.Repository}}:{{.Tag}}" | grep -w "nezha-dashboard")
if [ -n "$NEZHA_IMAGES" ]; then if [ -n "$NEZHA_IMAGES" ]; then
echo "Docker image with nezha-dashboard repository exists:" echo "存在带有 nezha-dashboard 仓库的 Docker 镜像:"
echo "$NEZHA_IMAGES" echo "$NEZHA_IMAGES"
IS_DOCKER_NEZHA=1 IS_DOCKER_NEZHA=1
FRESH_INSTALL=0 FRESH_INSTALL=0
return return
else else
echo "No Docker images with the nezha-dashboard repository were found." echo "未找到带有 nezha-dashboard 仓库的 Docker 镜像。"
fi fi
fi fi
elif command -v docker-compose >/dev/null 2>&1; then elif command -v docker-compose >/dev/null 2>&1; then
DOCKER_COMPOSE_COMMAND="docker-compose" DOCKER_COMPOSE_COMMAND="docker-compose"
if sudo $DOCKER_COMPOSE_COMMAND -f "$NZ_DASHBOARD_PATH/docker-compose.yaml" config >/dev/null 2>&1; then if sudo $DOCKER_COMPOSE_COMMAND -f "$NZ_DASHBOARD_PATH/docker-compose.yaml" config >/dev/null 2>&1; then
NEZHA_IMAGES=$(sudo docker images --format "<no value>:<no value>" | grep -w "nezha-dashboard") NEZHA_IMAGES=$(sudo docker images --format "{{.Repository}}:{{.Tag}}" | grep -w "nezha-dashboard")
if [ -n "$NEZHA_IMAGES" ]; then if [ -n "$NEZHA_IMAGES" ]; then
echo "Docker image with nezha-dashboard repository exists:" echo "存在带有 nezha-dashboard 仓库的 Docker 镜像:"
echo "$NEZHA_IMAGES" echo "$NEZHA_IMAGES"
IS_DOCKER_NEZHA=1 IS_DOCKER_NEZHA=1
FRESH_INSTALL=0 FRESH_INSTALL=0
return return
else else
echo "No Docker images with the nezha-dashboard repository were found." echo "未找到带有 nezha-dashboard 仓库的 Docker 镜像。"
fi fi
fi fi
fi fi
@ -180,11 +179,11 @@ installation_check() {
select_version() { select_version() {
if [ -z "$IS_DOCKER_NEZHA" ]; then if [ -z "$IS_DOCKER_NEZHA" ]; then
info "Select your installation method(Input anything is ok if you are installing agent):" info "请自行选择您的安装方式如果你是安装Agent输入哪个都是一样的"
info "1. Docker" info "1. Docker"
info "2. Standalone" info "2. 独立安装"
while true; do while true; do
printf "Please enter [1-2]: " printf "请输入选择 [1-2]"
read -r option read -r option
case "${option}" in case "${option}" in
1) 1)
@ -196,7 +195,7 @@ select_version() {
break break
;; ;;
*) *)
err "Please enter the correct number [1-2]" err "请输入正确的选择 [1-2]"
;; ;;
esac esac
done done
@ -204,18 +203,18 @@ select_version() {
} }
update_script() { update_script() {
echo "> Update Script" echo "> 更新脚本"
curl -sL https://${GITHUB_RAW_URL}/script/install_en.sh -o /tmp/nezha.sh curl -sL https://${GITHUB_RAW_URL}/script/install.sh -o /tmp/nezha.sh
new_version=$(grep "NZ_VERSION" /tmp/nezha.sh | head -n 1 | awk -F "=" '{print $2}' | sed 's/\"//g;s/,//g;s/ //g') new_version=$(grep "NZ_VERSION" /tmp/nezha.sh | head -n 1 | awk -F "=" '{print $2}' | sed 's/\"//g;s/,//g;s/ //g')
if [ -z "$new_version" ]; then if [ -z "$new_version" ]; then
echo "Script failed to get, please check if the network can link https://${GITHUB_RAW_URL}/script/install.sh" echo "脚本获取失败,请检查本机能否链接 https://${GITHUB_RAW_URL}/script/install.sh"
return 1 return 1
fi fi
echo "The current latest version is: ${new_version}" echo "当前最新版本为: ${new_version}"
mv -f /tmp/nezha.sh ./nezha.sh && chmod a+x ./nezha.sh mv -f /tmp/nezha.sh ./nezha.sh && chmod a+x ./nezha.sh
echo "Execute new script after 3s" echo "3s后执行新脚本"
sleep 3s sleep 3s
clear clear
exec ./nezha.sh exec ./nezha.sh
@ -223,7 +222,7 @@ update_script() {
} }
before_show_menu() { before_show_menu() {
echo && info "* Press Enter to return to the main menu *" && read temp echo && info "* 按回车返回主菜单 *" && read temp
show_menu show_menu
} }
@ -233,8 +232,8 @@ install_base() {
} }
install_arch() { install_arch() {
info "Archlinux needs to add nezha-agent user to install libselinux. It will be deleted automatically after installation. It is recommended to check manually" info "提示Arch安装libselinux需添加nezha-agent用户安装完会自动删除建议手动检查一次"
read -r -p "Do you need to install libselinux? [Y/n] " input read -r -p "是否安装libselinux? [Y/n] " input
case $input in case $input in
[yY][eE][sS] | [yY]) [yY][eE][sS] | [yY])
useradd -m nezha-agent useradd -m nezha-agent
@ -244,13 +243,13 @@ install_arch() {
git clone https://aur.archlinux.org/libselinux.git; cd libselinux; makepkg -si --noconfirm; cd ..; git clone https://aur.archlinux.org/libselinux.git; cd libselinux; makepkg -si --noconfirm; cd ..;
rm -rf libsepol libselinux' rm -rf libsepol libselinux'
sed -i '/nezha-agent/d' /etc/sudoers && sleep 30s && killall -u nezha-agent && userdel -r nezha-agent sed -i '/nezha-agent/d' /etc/sudoers && sleep 30s && killall -u nezha-agent && userdel -r nezha-agent
echo -e "${red}Info: ${plain}user nezha-agent has been deleted, Be sure to check it manually!\n" info "提示: 已删除用户nezha-agent请务必手动核查一遍"
;; ;;
[nN][oO] | [nN]) [nN][oO] | [nN])
echo "Libselinux will not be installed" echo "不安装libselinux"
;; ;;
*) *)
echo "Libselinux will not be installed" echo "不安装libselinux"
exit 0 exit 0
;; ;;
esac esac
@ -268,25 +267,25 @@ install_dashboard() {
check_systemd check_systemd
install_base install_base
echo "> Install Dashboard" echo "> 安装面板"
# Nezha Monitoring Folder # Nezha Monitoring Folder
if [ ! "$FRESH_INSTALL" = 0 ]; then if [ ! "$FRESH_INSTALL" = 0 ]; then
sudo mkdir -p $NZ_DASHBOARD_PATH sudo mkdir -p $NZ_DASHBOARD_PATH
else else
echo "You may have already installed the dashboard, repeated installation will overwrite the data, please pay attention to backup." echo "您可能已经安装过面板端,重复安装会覆盖数据,请注意备份。"
printf "Exit the installation? [Y/n] " printf "是否退出安装? [Y/n] "
read -r input read -r input
case $input in case $input in
[yY][eE][sS] | [yY]) [yY][eE][sS] | [yY])
echo "Exit the installation." echo "退出安装"
exit 0 exit 0
;; ;;
[nN][oO] | [nN]) [nN][oO] | [nN])
echo "Continue." echo "继续安装"
;; ;;
*) *)
echo "Exit the installation." echo "退出安装"
exit 0 exit 0
;; ;;
esac esac
@ -308,10 +307,10 @@ install_dashboard() {
install_dashboard_docker() { install_dashboard_docker() {
if [ ! "$FRESH_INSTALL" = 0 ]; then if [ ! "$FRESH_INSTALL" = 0 ]; then
if ! command -v docker >/dev/null 2>&1; then if ! command -v docker >/dev/null 2>&1; then
echo "Installing Docker" echo "正在安装 Docker"
if [ "$os_alpine" != 1 ]; then if [ "$os_alpine" != 1 ]; then
if ! curl -sL https://${Get_Docker_URL} | sudo bash -s "${Get_Docker_Argu}"; then if ! curl -sL https://${Get_Docker_URL} | sudo bash -s "${Get_Docker_Argu}"; then
err "Script failed to get, please check if the network can link ${Get_Docker_URL}" err "脚本获取失败,请检查本机能否链接 ${Get_Docker_URL}"
return 0 return 0
fi fi
sudo systemctl enable docker.service sudo systemctl enable docker.service
@ -321,7 +320,7 @@ install_dashboard_docker() {
sudo rc-update add docker sudo rc-update add docker
sudo rc-service docker start sudo rc-service docker start
fi fi
success "Docker installed successfully" success "Docker 安装成功"
installation_check installation_check
fi fi
fi fi
@ -337,7 +336,7 @@ selinux() {
#Check SELinux #Check SELinux
if command -v getenforce >/dev/null 2>&1; then if command -v getenforce >/dev/null 2>&1; then
if getenforce | grep '[Ee]nfor'; then if getenforce | grep '[Ee]nfor'; then
echo "SELinux running, closing now!" echo "SELinux是开启状态,正在关闭!"
sudo setenforce 0 >/dev/null 2>&1 sudo setenforce 0 >/dev/null 2>&1
find_key="SELINUX=" find_key="SELINUX="
sudo sed -ri "/^$find_key/c${find_key}disabled" /etc/selinux/config sudo sed -ri "/^$find_key/c${find_key}disabled" /etc/selinux/config
@ -349,9 +348,9 @@ install_agent() {
install_base install_base
selinux selinux
echo "> Install Agent" echo "> 安装监控Agent"
echo "Obtaining Agent version number" echo "正在获取监控Agent版本号"
_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') _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')
@ -366,16 +365,16 @@ install_agent() {
fi fi
if [ -z "$_version" ]; then if [ -z "$_version" ]; then
err "Fail to obtain agent version, please check if the network can link https://api.github.com/repos/nezhahq/agent/releases/latest" err "获取 Agent 版本号失败,请检查本机能否链接 https://api.github.com/repos/nezhahq/agent/releases/latest"
return 1 return 1
else else
echo "The current latest version is: ${_version}" echo "当前最新版本为: ${_version}"
fi fi
# Nezha Monitoring Folder # Nezha Monitoring Folder
sudo mkdir -p $NZ_AGENT_PATH sudo mkdir -p $NZ_AGENT_PATH
echo "Downloading Agent" echo "正在下载监控端"
if [ -z "$CN" ]; then if [ -z "$CN" ]; then
NZ_AGENT_URL="https://${GITHUB_URL}/nezhahq/agent/releases/download/${_version}/nezha-agent_linux_${os_arch}.zip" NZ_AGENT_URL="https://${GITHUB_URL}/nezhahq/agent/releases/download/${_version}/nezha-agent_linux_${os_arch}.zip"
else else
@ -384,7 +383,7 @@ install_agent() {
_cmd="wget -t 2 -T 60 -O nezha-agent_linux_${os_arch}.zip $NZ_AGENT_URL >/dev/null 2>&1" _cmd="wget -t 2 -T 60 -O nezha-agent_linux_${os_arch}.zip $NZ_AGENT_URL >/dev/null 2>&1"
if ! eval "$_cmd"; then if ! eval "$_cmd"; then
err "Fail to download agent, please check if the network can link ${GITHUB_URL}" err "Release 下载失败,请检查本机能否连接 ${GITHUB_URL}"
return 1 return 1
fi fi
@ -404,21 +403,21 @@ install_agent() {
} }
modify_agent_config() { modify_agent_config() {
echo "> Modify Agent Configuration" echo "> 修改 Agent 配置"
if [ $# -lt 3 ]; then if [ $# -lt 3 ]; then
echo "Please add Agent in the Dashboard first, record the secret" echo "请先在管理面板上添加Agent记录下密钥"
printf "Please enter a domain that resolves to the IP where Dashboard is located (no CDN): " printf "请输入一个解析到面板所在IP的域名不可套CDN: "
read -r nz_grpc_host read -r nz_grpc_host
printf "Please enter Dashboard RPC port (default 5555): " printf "请输入面板RPC端口 (默认值 5555): "
read -r nz_grpc_port read -r nz_grpc_port
printf "Please enter the Agent secret: " printf "请输入Agent 密钥: "
read -r nz_client_secret read -r nz_client_secret
printf "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: " printf "是否启用针对 gRPC 端口的 SSL/TLS加密 (--tls),需要请按 [y],默认是不需要,不理解用户可回车跳过: "
read -r nz_grpc_proxy read -r nz_grpc_proxy
echo "${nz_grpc_proxy}" | grep -qiw 'Y' && args='--tls' echo "${nz_grpc_proxy}" | grep -qiw 'Y' && args='--tls'
if [ -z "$nz_grpc_host" ] || [ -z "$nz_client_secret" ]; then if [ -z "$nz_grpc_host" ] || [ -z "$nz_client_secret" ]; then
err "All options cannot be empty" err "所有选项都不能为空"
before_show_menu before_show_menu
return 1 return 1
fi fi
@ -442,7 +441,7 @@ modify_agent_config() {
sudo "${NZ_AGENT_PATH}"/nezha-agent service install -s "$nz_grpc_host:$nz_grpc_port" -p "$nz_client_secret" "$args" >/dev/null 2>&1 sudo "${NZ_AGENT_PATH}"/nezha-agent service install -s "$nz_grpc_host:$nz_grpc_port" -p "$nz_client_secret" "$args" >/dev/null 2>&1
fi fi
success "Agent configuration modified successfully, please wait for agent self-restart to take effect" success "Agent 配置 修改成功,请稍等 Agent 重启生效"
#if [[ $# == 0 ]]; then #if [[ $# == 0 ]]; then
# before_show_menu # before_show_menu
@ -450,47 +449,47 @@ modify_agent_config() {
} }
modify_dashboard_config() { modify_dashboard_config() {
echo "> Modify Dashboard Configuration" echo "> 修改 Dashboard 配置"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then if [ "$IS_DOCKER_NEZHA" = 1 ]; then
if [ -n "$DOCKER_COMPOSE_COMMAND" ]; then if [ -n "$DOCKER_COMPOSE_COMMAND" ]; then
echo "Download Docker Script" echo "正在下载 Docker 脚本"
_cmd="wget -t 2 -T 60 -O /tmp/nezha-docker-compose.yaml https://${GITHUB_RAW_URL}/script/docker-compose.yaml >/dev/null 2>&1" _cmd="wget -t 2 -T 60 -O /tmp/nezha-docker-compose.yaml https://${GITHUB_RAW_URL}/script/docker-compose.yaml >/dev/null 2>&1"
if ! eval "$_cmd"; then if ! eval "$_cmd"; then
err "Script failed to get, please check if the network can link ${GITHUB_RAW_URL}" err "脚本获取失败,请检查本机能否链接 ${GITHUB_RAW_URL}"
return 0 return 0
fi fi
else else
err "Please install docker-compose manually. https://docs.docker.com/compose/install/linux/" err "请手动安装 docker-compose。 https://docs.docker.com/compose/install/linux/"
before_show_menu before_show_menu
fi fi
fi fi
_cmd="wget -t 2 -T 60 -O /tmp/nezha-config.yaml https://${GITHUB_RAW_URL}/script/config.yaml >/dev/null 2>&1" _cmd="wget -t 2 -T 60 -O /tmp/nezha-config.yaml https://${GITHUB_RAW_URL}/script/config.yaml >/dev/null 2>&1"
if ! eval "$_cmd"; then if ! eval "$_cmd"; then
err "Script failed to get, please check if the network can link ${GITHUB_RAW_URL}" err "脚本获取失败,请检查本机能否链接 ${GITHUB_RAW_URL}"
return 0 return 0
fi fi
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" echo "关于 GitHub Oauth2 应用:在 https://github.com/settings/developers 创建无需审核Callback 填 http(s)://域名或IP/oauth2/callback"
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" echo "关于 Gitee Oauth2 应用:在 https://gitee.com/oauth/applications 创建无需审核Callback 填 http(s)://域名或IP/oauth2/callback"
printf "Please enter the OAuth2 provider (github/gitlab/jihulab/gitee, default github): " printf "请输入 OAuth2 提供商(github/gitlab/jihulab/gitee默认 github): "
read -r nz_oauth2_type read -r nz_oauth2_type
printf "Please enter the Client ID of the Oauth2 application: " printf "请输入 Oauth2 应用的 Client ID: "
read -r nz_github_oauth_client_id read -r nz_github_oauth_client_id
printf "Please enter the Client Secret of the Oauth2 application: " printf "请输入 Oauth2 应用的 Client Secret: "
read -r nz_github_oauth_client_secret read -r nz_github_oauth_client_secret
printf "Please enter your GitHub/Gitee login name as the administrator, separated by commas: " printf "请输入 GitHub/Gitee 登录名作为管理员,多个以逗号隔开: "
read -r nz_admin_logins read -r nz_admin_logins
printf "Please enter the site title: " printf "请输入站点标题: "
read -r nz_site_title read -r nz_site_title
printf "Please enter the site access port: (default 8008)" printf "请输入站点访问端口: (默认 8008)"
read -r nz_site_port read -r nz_site_port
printf "Please enter the RPC port to be used for Agent access: (default 5555)" printf "请输入用于 Agent 接入的 RPC 端口: (默认 5555)"
read -r nz_grpc_port read -r nz_grpc_port
if [ -z "$nz_admin_logins" ] || [ -z "$nz_github_oauth_client_id" ] || [ -z "$nz_github_oauth_client_secret" ] || [ -z "$nz_site_title" ]; then if [ -z "$nz_admin_logins" ] || [ -z "$nz_github_oauth_client_id" ] || [ -z "$nz_github_oauth_client_secret" ] || [ -z "$nz_site_title" ]; then
err "All options cannot be empty" err "所有选项都不能为空"
before_show_menu before_show_menu
return 1 return 1
fi fi
@ -527,20 +526,20 @@ modify_dashboard_config() {
fi fi
if [ "$IS_DOCKER_NEZHA" = 0 ]; then if [ "$IS_DOCKER_NEZHA" = 0 ]; then
echo "Downloading service file" echo "正在下载服务文件"
if [ "$os_alpine" != 1 ]; then if [ "$os_alpine" != 1 ]; then
_download="sudo wget -t 2 -T 60 -O $NZ_DASHBOARD_SERVICE https://${GITHUB_RAW_URL}/script/nezha-dashboard.service >/dev/null 2>&1" _download="sudo wget -t 2 -T 60 -O $NZ_DASHBOARD_SERVICE https://${GITHUB_RAW_URL}/script/nezha-dashboard.service >/dev/null 2>&1"
else else
_download="sudo wget -t 2 -T 60 -O $NZ_DASHBOARD_SERVICERC https://${GITHUB_RAW_URL}/script/nezha-dashboard >/dev/null 2>&1" _download="sudo wget -t 2 -T 60 -O $NZ_DASHBOARD_SERVICERC https://${GITHUB_RAW_URL}/script/nezha-dashboard >/dev/null 2>&1"
if ! eval "$_download"; then if ! eval "$_download"; then
err "File failed to get, please check if the network can link ${GITHUB_RAW_URL}" err "文件下载失败,请检查本机能否连接 ${GITHUB_RAW_URL}"
return 0 return 0
fi fi
sudo chmod +x $NZ_DASHBOARD_SERVICERC sudo chmod +x $NZ_DASHBOARD_SERVICERC
fi fi
fi fi
success "Dashboard configuration modified successfully, please wait for Dashboard self-restart to take effect" success "Dashboard 配置 修改成功,请稍等 Dashboard 重启生效"
restart_and_update restart_and_update
@ -550,7 +549,7 @@ modify_dashboard_config() {
} }
restart_and_update() { restart_and_update() {
echo "> Restart and Update Dashboard" echo "> 重启并更新面板"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then if [ "$IS_DOCKER_NEZHA" = 1 ]; then
_cmd="restart_and_update_docker" _cmd="restart_and_update_docker"
@ -559,10 +558,10 @@ restart_and_update() {
fi fi
if eval "$_cmd"; then if eval "$_cmd"; then
success "Nezha Monitoring Restart Successful" success "哪吒监控 重启成功"
info "Default Dashboard address: domain:site_access_port" info "默认管理面板地址:域名:站点访问端口"
else else
err "The restart failed, probably because the boot time exceeded two seconds, please check the log information later" err "重启失败,可能是因为启动时间超过了两秒,请稍后查看日志信息"
fi fi
if [ $# = 0 ]; then if [ $# = 0 ]; then
@ -589,10 +588,10 @@ restart_and_update_standalone() {
fi fi
if [ -z "$_version" ]; then if [ -z "$_version" ]; then
err "Fail to obtain agent version, please check if the network can link https://api.github.com/repos/nezhahq/agent/releases/latest" err "获取 Agent 版本号失败,请检查本机能否链接 https://api.github.com/repos/nezhahq/agent/releases/latest"
return 1 return 1
else else
echo "The current latest version is: ${_version}" echo "当前最新版本为: ${_version}"
fi fi
if [ "$os_alpine" != 1 ]; then if [ "$os_alpine" != 1 ]; then
@ -620,7 +619,7 @@ restart_and_update_standalone() {
} }
start_dashboard() { start_dashboard() {
echo "> Start Dashboard" echo "> 启动面板"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then if [ "$IS_DOCKER_NEZHA" = 1 ]; then
_cmd="start_dashboard_docker" _cmd="start_dashboard_docker"
@ -629,9 +628,9 @@ start_dashboard() {
fi fi
if eval "$_cmd"; then if eval "$_cmd"; then
success "Nezha Monitoring Start Successful" success "哪吒监控 启动成功"
else else
err "Failed to start, please check the log message later" err "启动失败,请稍后查看日志信息"
fi fi
if [ $# = 0 ]; then if [ $# = 0 ]; then
@ -652,7 +651,7 @@ start_dashboard_standalone() {
} }
stop_dashboard() { stop_dashboard() {
echo "> Stop Dashboard" echo "> 停止面板"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then if [ "$IS_DOCKER_NEZHA" = 1 ]; then
_cmd="stop_dashboard_docker" _cmd="stop_dashboard_docker"
@ -661,9 +660,9 @@ stop_dashboard() {
fi fi
if eval "$_cmd"; then if eval "$_cmd"; then
success "Nezha Monitoring Stop Successful" success "哪吒监控 停止成功"
else else
err "Failed to stop, please check the log message later" err "停止失败,请稍后查看日志信息"
fi fi
if [ $# = 0 ]; then if [ $# = 0 ]; then
@ -684,7 +683,7 @@ stop_dashboard_standalone() {
} }
show_dashboard_log() { show_dashboard_log() {
echo "> View Dashboard Log" echo "> 获取 Dashboard 日志"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then if [ "$IS_DOCKER_NEZHA" = 1 ]; then
show_dashboard_log_docker show_dashboard_log_docker
@ -710,7 +709,7 @@ show_dashboard_log_standalone() {
} }
uninstall_dashboard() { uninstall_dashboard() {
echo "> Uninstall Dashboard" echo "> 卸载 Dashboard"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then if [ "$IS_DOCKER_NEZHA" = 1 ]; then
uninstall_dashboard_docker uninstall_dashboard_docker
@ -751,7 +750,7 @@ uninstall_dashboard_standalone() {
} }
show_agent_log() { show_agent_log() {
echo "> View Agent Log" echo "> 获取 Agent 日志"
if [ "$os_alpine" != 1 ]; then if [ "$os_alpine" != 1 ]; then
sudo journalctl -xf -u nezha-agent.service sudo journalctl -xf -u nezha-agent.service
@ -765,7 +764,7 @@ show_agent_log() {
} }
uninstall_agent() { uninstall_agent() {
echo "> Uninstall Agent" echo "> 卸载 Agent"
sudo ${NZ_AGENT_PATH}/nezha-agent service uninstall sudo ${NZ_AGENT_PATH}/nezha-agent service uninstall
@ -778,7 +777,7 @@ uninstall_agent() {
} }
restart_agent() { restart_agent() {
echo "> Restart Agent" echo "> 重启 Agent"
sudo ${NZ_AGENT_PATH}/nezha-agent service restart sudo ${NZ_AGENT_PATH}/nezha-agent service restart
@ -794,49 +793,49 @@ clean_all() {
} }
show_usage() { show_usage() {
echo "Nezha Monitor Management Script Usage: " echo "哪吒监控 管理脚本使用方法: "
echo "--------------------------------------------------------" echo "--------------------------------------------------------"
echo "./nezha.sh - Show Menu" echo "./nezha.sh - 显示管理菜单"
echo "./nezha.sh install_dashboard - Install Dashboard" echo "./nezha.sh install_dashboard - 安装面板端"
echo "./nezha.sh modify_dashboard_config - Modify Dashboard Configuration" echo "./nezha.sh modify_dashboard_config - 修改面板配置"
echo "./nezha.sh start_dashboard - Start Dashboard" echo "./nezha.sh start_dashboard - 启动面板"
echo "./nezha.sh stop_dashboard - Stop Dashboard" echo "./nezha.sh stop_dashboard - 停止面板"
echo "./nezha.sh restart_and_update - Restart and Update the Dashboard" echo "./nezha.sh restart_and_update - 重启并更新面板"
echo "./nezha.sh show_dashboard_log - View Dashboard Log" echo "./nezha.sh show_dashboard_log - 查看面板日志"
echo "./nezha.sh uninstall_dashboard - Uninstall Dashboard" echo "./nezha.sh uninstall_dashboard - 卸载管理面板"
echo "--------------------------------------------------------" echo "--------------------------------------------------------"
echo "./nezha.sh install_agent - Install Agent" echo "./nezha.sh install_agent - 安装监控Agent"
echo "./nezha.sh modify_agent_config - Modify Agent Configuration" echo "./nezha.sh modify_agent_config - 修改Agent配置"
echo "./nezha.sh show_agent_log - View Agent Log" echo "./nezha.sh show_agent_log - 查看Agent日志"
echo "./nezha.sh uninstall_agent - Uninstall Agent" echo "./nezha.sh uninstall_agent - 卸载Agent"
echo "./nezha.sh restart_agent - Restart Agent" echo "./nezha.sh restart_agent - 重启Agent"
echo "./nezha.sh update_script - Update Script" echo "./nezha.sh update_script - 更新脚本"
echo "--------------------------------------------------------" echo "--------------------------------------------------------"
} }
show_menu() { show_menu() {
printf " printf "
${green}Nezha Monitor Management Script${plain} ${red}${NZ_VERSION}${plain} ${green}哪吒监控管理脚本${plain} ${red}${NZ_VERSION}${plain}
--- https://github.com/naiba/nezha --- --- https://github.com/naiba/nezha ---
${green}1.${plain} Install Dashboard ${green}1.${plain} 安装面板端
${green}2.${plain} Modify Dashbaord Configuration ${green}2.${plain} 修改面板配置
${green}3.${plain} Start Dashboard ${green}3.${plain} 启动面板
${green}4.${plain} Stop Dashboard ${green}4.${plain} 停止面板
${green}5.${plain} Restart and Update Dashboard ${green}5.${plain} 重启并更新面板
${green}6.${plain} View Dashboard Log ${green}6.${plain} 查看面板日志
${green}7.${plain} Uninstall Dashboard ${green}7.${plain} 卸载管理面板
————————————————- ————————————————-
${green}8.${plain} Install Agent ${green}8.${plain} 安装监控Agent
${green}9.${plain} Modify Agent Configuration ${green}9.${plain} 修改Agent配置
${green}10.${plain} View Agent Log ${green}10.${plain} 查看Agent日志
${green}11.${plain} Uninstall Agent ${green}11.${plain} 卸载Agent
${green}12.${plain} Restart Agent ${green}12.${plain} 重启Agent
————————————————- ————————————————-
${green}13.${plain} Update Script ${green}13.${plain} 更新脚本
————————————————- ————————————————-
${green}0.${plain} Exit Script ${green}0.${plain} 退出脚本
" "
echo && printf "Please enter [0-13]: " && read -r num echo && printf "请输入选择 [0-13]: " && read -r num
case "${num}" in case "${num}" in
0) 0)
exit 0 exit 0
@ -881,7 +880,7 @@ show_menu() {
update_script update_script
;; ;;
*) *)
err "Please enter the correct number [0-13]" err "请输入正确的数字 [0-13]"
;; ;;
esac esac
} }

942
install_en.sh Normal file
View File

@ -0,0 +1,942 @@
#!/bin/sh
# Generated by nezhahq/scriptgen. DO NOT EDIT
NZ_BASE_PATH="/opt/nezha"
NZ_DASHBOARD_PATH="${NZ_BASE_PATH}/dashboard"
NZ_AGENT_PATH="${NZ_BASE_PATH}/agent"
NZ_DASHBOARD_SERVICE="/etc/systemd/system/nezha-dashboard.service"
NZ_DASHBOARD_SERVICERC="/etc/init.d/nezha-dashboard"
red='\033[0;31m'
green='\033[0;32m'
yellow='\033[0;33m'
plain='\033[0m'
export PATH="$PATH:/usr/local/bin"
os_arch=""
[ -e /etc/os-release ] && grep -i "PRETTY_NAME" /etc/os-release | grep -qi "alpine" && os_alpine='1'
sudo() {
myEUID=$(id -ru)
if [ "$myEUID" -ne 0 ]; then
if command -v sudo > /dev/null 2>&1; then
command sudo "$@"
else
err "ERROR: sudo is not installed on the system, the action cannot be proceeded."
exit 1
fi
else
"$@"
fi
}
check_systemd() {
if [ "$os_alpine" != 1 ] && ! command -v systemctl >/dev/null 2>&1; then
echo "System not supported: systemctl not found"
exit 1
fi
}
err() {
printf "${red}%s${plain}\n" "$*" >&2
}
success() {
printf "${green}%s${plain}\n" "$*"
}
info() {
printf "${yellow}%s${plain}\n" "$*"
}
geo_check() {
api_list="https://blog.cloudflare.com/cdn-cgi/trace https://dash.cloudflare.com/cdn-cgi/trace https://developers.cloudflare.com/cdn-cgi/trace"
ua="Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/81.0"
set -- "$api_list"
for url in $api_list; do
text="$(curl -A "$ua" -m 10 -s "$url")"
endpoint="$(echo "$text" | sed -n 's/.*h=\([^ ]*\).*/\1/p')"
if echo "$text" | grep -qw 'CN'; then
isCN=true
break
elif echo "$url" | grep -q "$endpoint"; then
break
fi
done
}
pre_check() {
umask 077
## os_arch
if uname -m | grep -q 'x86_64'; then
os_arch="amd64"
elif uname -m | grep -q 'i386\|i686'; then
os_arch="386"
elif uname -m | grep -q 'aarch64\|armv8b\|armv8l'; then
os_arch="arm64"
elif uname -m | grep -q 'arm'; then
os_arch="arm"
elif uname -m | grep -q 's390x'; then
os_arch="s390x"
elif uname -m | grep -q 'riscv64'; then
os_arch="riscv64"
fi
## China_IP
if [ -z "$CN" ]; then
geo_check
if [ -n "$isCN" ]; then
echo "According to the information provided by various geoip api, the current IP may be in China"
printf "Will the installation be done with a Chinese Mirror? [Y/n] (Custom Mirror Input 3): "
read -r input
case $input in
[yY][eE][sS] | [yY])
echo "Use Chinese Mirror"
CN=true
;;
[nN][oO] | [nN])
echo "Do Not Use Chinese Mirror"
;;
[3])
echo "Use Custom Mirror"
printf "Please enter a custom image (e.g. :dn-dao-github-mirror.daocloud.io). If left blank, it won't be used: "
read -r input
case $input in
*)
CUSTOM_MIRROR=$input
;;
esac
;;
*)
echo "Do Not Use Chinese Mirror"
;;
esac
fi
fi
if [ -n "$CUSTOM_MIRROR" ]; then
GITHUB_RAW_URL="gitee.com/naibahq/nezha/raw/master"
GITHUB_URL=$CUSTOM_MIRROR
Get_Docker_URL="get.docker.com"
Get_Docker_Argu=" -s docker --mirror Aliyun"
Docker_IMG="registry.cn-shanghai.aliyuncs.com\/naibahq\/nezha-dashboard"
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"
GITHUB_URL="gitee.com"
Get_Docker_URL="get.docker.com"
Get_Docker_Argu=" -s docker --mirror Aliyun"
Docker_IMG="registry.cn-shanghai.aliyuncs.com\/naibahq\/nezha-dashboard"
fi
fi
}
installation_check() {
if docker compose version >/dev/null 2>&1; then
DOCKER_COMPOSE_COMMAND="docker compose"
if sudo $DOCKER_COMPOSE_COMMAND ls | grep -qw "$NZ_DASHBOARD_PATH/docker-compose.yaml" >/dev/null 2>&1; then
NEZHA_IMAGES=$(sudo 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
FRESH_INSTALL=0
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 sudo $DOCKER_COMPOSE_COMMAND -f "$NZ_DASHBOARD_PATH/docker-compose.yaml" config >/dev/null 2>&1; then
NEZHA_IMAGES=$(sudo 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
FRESH_INSTALL=0
return
else
echo "No Docker images with the nezha-dashboard repository were found."
fi
fi
fi
if [ -f "$NZ_DASHBOARD_PATH/app" ]; then
IS_DOCKER_NEZHA=0
FRESH_INSTALL=0
fi
}
select_version() {
if [ -z "$IS_DOCKER_NEZHA" ]; then
info "Select your installation method(Input anything is ok if you are installing agent):"
info "1. Docker"
info "2. Standalone"
while true; do
printf "Please enter [1-2]: "
read -r option
case "${option}" in
1)
IS_DOCKER_NEZHA=1
break
;;
2)
IS_DOCKER_NEZHA=0
break
;;
*)
err "Please enter the correct number [1-2]"
;;
esac
done
fi
}
update_script() {
echo "> Update Script"
curl -sL https://${GITHUB_RAW_URL}/script/install_en.sh -o /tmp/nezha.sh
new_version=$(grep "NZ_VERSION" /tmp/nezha.sh | head -n 1 | awk -F "=" '{print $2}' | sed 's/\"//g;s/,//g;s/ //g')
if [ -z "$new_version" ]; then
echo "Script failed to get, please check if the network can link https://${GITHUB_RAW_URL}/script/install.sh"
return 1
fi
echo "The current latest version is: ${new_version}"
mv -f /tmp/nezha.sh ./nezha.sh && chmod a+x ./nezha.sh
echo "Execute new script after 3s"
sleep 3s
clear
exec ./nezha.sh
exit 0
}
before_show_menu() {
echo && info "* Press Enter to return to the main menu *" && read temp
show_menu
}
install_base() {
(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) ||
(install_soft curl wget unzip)
}
install_arch() {
info "Archlinux needs to add nezha-agent user to install libselinux. It will be deleted automatically after installation. It is recommended to check manually"
read -r -p "Do you need to install libselinux? [Y/n] " input
case $input in
[yY][eE][sS] | [yY])
useradd -m nezha-agent
sed -i "$ a\nezha-agent ALL=(ALL ) NOPASSWD:ALL" /etc/sudoers
sudo -iu nezha-agent bash -c 'gpg --keyserver keys.gnupg.net --recv-keys 4695881C254508D1;
cd /tmp; git clone https://aur.archlinux.org/libsepol.git; cd libsepol; makepkg -si --noconfirm --asdeps; cd ..;
git clone https://aur.archlinux.org/libselinux.git; cd libselinux; makepkg -si --noconfirm; cd ..;
rm -rf libsepol libselinux'
sed -i '/nezha-agent/d' /etc/sudoers && sleep 30s && killall -u nezha-agent && userdel -r nezha-agent
info "Info: user nezha-agent has been deleted, Be sure to check it manually!"
;;
[nN][oO] | [nN])
echo "Libselinux will not be installed"
;;
*)
echo "Libselinux will not be installed"
exit 0
;;
esac
}
install_soft() {
(command -v yum >/dev/null 2>&1 && sudo yum makecache && sudo yum install "$@" selinux-policy -y) ||
(command -v apt >/dev/null 2>&1 && sudo apt update && sudo apt install "$@" selinux-utils -y) ||
(command -v pacman >/dev/null 2>&1 && sudo pacman -Syu "$@" base-devel --noconfirm && install_arch) ||
(command -v apt-get >/dev/null 2>&1 && sudo apt-get update && sudo apt-get install "$@" selinux-utils -y) ||
(command -v apk >/dev/null 2>&1 && sudo apk update && sudo apk add "$@" -f)
}
install_dashboard() {
check_systemd
install_base
echo "> Install Dashboard"
# Nezha Monitoring Folder
if [ ! "$FRESH_INSTALL" = 0 ]; then
sudo 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."
printf "Exit the installation? [Y/n] "
read -r input
case $input in
[yY][eE][sS] | [yY])
echo "Exit the installation."
exit 0
;;
[nN][oO] | [nN])
echo "Continue."
;;
*)
echo "Exit the installation."
exit 0
;;
esac
fi
if [ "$IS_DOCKER_NEZHA" = 1 ]; then
install_dashboard_docker
elif [ "$IS_DOCKER_NEZHA" = 0 ]; then
install_dashboard_standalone
fi
modify_dashboard_config 0
if [ $# = 0 ]; then
before_show_menu
fi
}
install_dashboard_docker() {
if [ ! "$FRESH_INSTALL" = 0 ]; then
if ! command -v docker >/dev/null 2>&1; then
echo "Installing Docker"
if [ "$os_alpine" != 1 ]; then
if ! curl -sL https://${Get_Docker_URL} | sudo bash -s "${Get_Docker_Argu}"; then
err "Script failed to get, please check if the network can link ${Get_Docker_URL}"
return 0
fi
sudo systemctl enable docker.service
sudo systemctl start docker.service
else
sudo apk add docker docker-compose
sudo rc-update add docker
sudo rc-service docker start
fi
success "Docker installed successfully"
installation_check
fi
fi
}
install_dashboard_standalone() {
if [ ! -d "${NZ_DASHBOARD_PATH}/resource/template/theme-custom" ] || [ ! -d "${NZ_DASHBOARD_PATH}/resource/static/custom" ]; then
sudo mkdir -p "${NZ_DASHBOARD_PATH}/resource/template/theme-custom" "${NZ_DASHBOARD_PATH}/resource/static/custom" >/dev/null 2>&1
fi
}
selinux() {
#Check SELinux
if command -v getenforce >/dev/null 2>&1; then
if getenforce | grep '[Ee]nfor'; then
echo "SELinux running, closing now!"
sudo setenforce 0 >/dev/null 2>&1
find_key="SELINUX="
sudo sed -ri "/^$find_key/c${find_key}disabled" /etc/selinux/config
fi
fi
}
install_agent() {
install_base
selinux
echo "> Install Agent"
echo "Obtaining Agent version number"
_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')
if [ -z "$_version" ]; then
_version=$(curl -m 10 -sL "https://gitee.com/api/v5/repos/naibahq/agent/releases/latest" | awk -F '"' '{for(i=1;i<=NF;i++){if($i=="tag_name"){print $(i+2)}}}')
fi
if [ -z "$_version" ]; then
_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')
fi
if [ -z "$_version" ]; then
_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')
fi
if [ -z "$_version" ]; then
err "Fail to obtain Agent version, please check if the network can link https://api.github.com/repos/nezhahq/agent/releases/latest"
return 1
else
echo "The current latest version is: ${_version}"
fi
# Nezha Monitoring Folder
sudo mkdir -p $NZ_AGENT_PATH
echo "Downloading Agent"
if [ -z "$CN" ]; then
NZ_AGENT_URL="https://${GITHUB_URL}/nezhahq/agent/releases/download/${_version}/nezha-agent_linux_${os_arch}.zip"
else
NZ_AGENT_URL="https://${GITHUB_URL}/naibahq/agent/releases/download/${_version}/nezha-agent_linux_${os_arch}.zip"
fi
_cmd="wget -t 2 -T 60 -O nezha-agent_linux_${os_arch}.zip $NZ_AGENT_URL >/dev/null 2>&1"
if ! eval "$_cmd"; then
err "Fail to download agent, please check if the network can link ${GITHUB_URL}"
return 1
fi
sudo unzip -qo nezha-agent_linux_${os_arch}.zip &&
sudo mv nezha-agent $NZ_AGENT_PATH &&
sudo rm -rf nezha-agent_linux_${os_arch}.zip README.md
if [ $# -ge 3 ]; then
modify_agent_config "$@"
else
modify_agent_config 0
fi
if [ $# = 0 ]; then
before_show_menu
fi
}
modify_agent_config() {
echo "> Modify Agent Configuration"
if [ $# -lt 3 ]; then
echo "Please add Agent in the Dashboard first, record the secret"
printf "Please enter a domain that resolves to the IP where Dashboard is located (no CDN): "
read -r nz_grpc_host
printf "Please enter Dashboard RPC port (default 5555): "
read -r nz_grpc_port
printf "Please enter the Agent secret: "
read -r nz_client_secret
printf "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: "
read -r nz_grpc_proxy
echo "${nz_grpc_proxy}" | grep -qiw 'Y' && args='--tls'
if [ -z "$nz_grpc_host" ] || [ -z "$nz_client_secret" ]; then
err "All options cannot be empty"
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
shift 3
if [ $# -gt 0 ]; then
args="$*"
fi
fi
_cmd="sudo ${NZ_AGENT_PATH}/nezha-agent service install -s $nz_grpc_host:$nz_grpc_port -p $nz_client_secret $args >/dev/null 2>&1"
if ! eval "$_cmd"; then
sudo "${NZ_AGENT_PATH}"/nezha-agent service uninstall >/dev/null 2>&1
sudo "${NZ_AGENT_PATH}"/nezha-agent service install -s "$nz_grpc_host:$nz_grpc_port" -p "$nz_client_secret" "$args" >/dev/null 2>&1
fi
success "Agent configuration modified successfully, please wait for Agent self-restart to take effect"
#if [[ $# == 0 ]]; then
# before_show_menu
#fi
}
modify_dashboard_config() {
echo "> Modify Dashboard Configuration"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then
if [ -n "$DOCKER_COMPOSE_COMMAND" ]; then
echo "Download Docker Script"
_cmd="wget -t 2 -T 60 -O /tmp/nezha-docker-compose.yaml https://${GITHUB_RAW_URL}/script/docker-compose.yaml >/dev/null 2>&1"
if ! eval "$_cmd"; then
err "Script failed to get, please check if the network can link ${GITHUB_RAW_URL}"
return 0
fi
else
err "Please install docker-compose manually. https://docs.docker.com/compose/install/linux/"
before_show_menu
fi
fi
_cmd="wget -t 2 -T 60 -O /tmp/nezha-config.yaml https://${GITHUB_RAW_URL}/script/config.yaml >/dev/null 2>&1"
if ! eval "$_cmd"; then
err "Script failed to get, please check if the network can link ${GITHUB_RAW_URL}"
return 0
fi
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"
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"
printf "Please enter the OAuth2 provider (github/gitlab/jihulab/gitee, default github): "
read -r nz_oauth2_type
printf "Please enter the Client ID of the Oauth2 application: "
read -r nz_github_oauth_client_id
printf "Please enter the Client Secret of the Oauth2 application: "
read -r nz_github_oauth_client_secret
printf "Please enter your GitHub/Gitee login name as the administrator, separated by commas: "
read -r nz_admin_logins
printf "Please enter the site title: "
read -r nz_site_title
printf "Please enter the site access port: (default 8008)"
read -r nz_site_port
printf "Please enter the RPC port to be used for Agent access: (default 5555)"
read -r nz_grpc_port
if [ -z "$nz_admin_logins" ] || [ -z "$nz_github_oauth_client_id" ] || [ -z "$nz_github_oauth_client_secret" ] || [ -z "$nz_site_title" ]; then
err "All options cannot be empty"
before_show_menu
return 1
fi
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
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_language/zh-CN/" /tmp/nezha-config.yaml
sed -i "s/nz_site_title/${nz_site_title}/" /tmp/nezha-config.yaml
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
fi
sudo mkdir -p $NZ_DASHBOARD_PATH/data
sudo mv -f /tmp/nezha-config.yaml ${NZ_DASHBOARD_PATH}/data/config.yaml
if [ "$IS_DOCKER_NEZHA" = 1 ]; then
sudo mv -f /tmp/nezha-docker-compose.yaml ${NZ_DASHBOARD_PATH}/docker-compose.yaml
fi
if [ "$IS_DOCKER_NEZHA" = 0 ]; then
echo "Downloading service file"
if [ "$os_alpine" != 1 ]; then
_download="sudo wget -t 2 -T 60 -O $NZ_DASHBOARD_SERVICE https://${GITHUB_RAW_URL}/script/nezha-dashboard.service >/dev/null 2>&1"
else
_download="sudo wget -t 2 -T 60 -O $NZ_DASHBOARD_SERVICERC https://${GITHUB_RAW_URL}/script/nezha-dashboard >/dev/null 2>&1"
if ! eval "$_download"; then
err "File failed to get, please check if the network can link ${GITHUB_RAW_URL}"
return 0
fi
sudo chmod +x $NZ_DASHBOARD_SERVICERC
fi
fi
success "Dashboard configuration modified successfully, please wait for Dashboard self-restart to take effect"
restart_and_update
if [ $# = 0 ]; then
before_show_menu
fi
}
restart_and_update() {
echo "> Restart and Update Dashboard"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then
_cmd="restart_and_update_docker"
elif [ "$IS_DOCKER_NEZHA" = 0 ]; then
_cmd="restart_and_update_standalone"
fi
if eval "$_cmd"; then
success "Nezha Monitoring Restart Successful"
info "Default Dashboard address: domain:site_access_port"
else
err "The restart failed, probably because the boot time exceeded two seconds, please check the log information later"
fi
if [ $# = 0 ]; then
before_show_menu
fi
}
restart_and_update_docker() {
sudo $DOCKER_COMPOSE_COMMAND -f ${NZ_DASHBOARD_PATH}/docker-compose.yaml pull
sudo $DOCKER_COMPOSE_COMMAND -f ${NZ_DASHBOARD_PATH}/docker-compose.yaml down
sudo $DOCKER_COMPOSE_COMMAND -f ${NZ_DASHBOARD_PATH}/docker-compose.yaml up -d
}
restart_and_update_standalone() {
_version=$(curl -m 10 -sL "https://api.github.com/repos/naiba/nezha/releases/latest" | grep "tag_name" | head -n 1 | awk -F ":" '{print $2}' | sed 's/\"//g;s/,//g;s/ //g')
if [ -z "$_version" ]; then
_version=$(curl -m 10 -sL "https://gitee.com/api/v5/repos/naibahq/nezha/releases/latest" | awk -F '"' '{for(i=1;i<=NF;i++){if($i=="tag_name"){print $(i+2)}}}')
fi
if [ -z "$_version" ]; then
_version=$(curl -m 10 -sL "https://fastly.jsdelivr.net/gh/naiba/nezha/" | grep "option\.value" | awk -F "'" '{print $2}' | sed 's/naiba\/nezha@/v/g')
fi
if [ -z "$_version" ]; then
_version=$(curl -m 10 -sL "https://gcore.jsdelivr.net/gh/naiba/nezha/" | grep "option\.value" | awk -F "'" '{print $2}' | sed 's/naiba\/nezha@/v/g')
fi
if [ -z "$_version" ]; then
err "Fail to obtain Agent version, please check if the network can link https://api.github.com/repos/nezhahq/agent/releases/latest"
return 1
else
echo "The current latest version is: ${_version}"
fi
if [ "$os_alpine" != 1 ]; then
sudo systemctl daemon-reload
sudo systemctl stop nezha-dashboard
else
sudo rc-service nezha-dashboard stop
fi
if [ -z "$CN" ]; then
NZ_DASHBOARD_URL="https://${GITHUB_URL}/naiba/nezha/releases/download/${_version}/dashboard-linux-${os_arch}.zip"
else
NZ_DASHBOARD_URL="https://${GITHUB_URL}/naibahq/nezha/releases/download/${_version}/dashboard-linux-${os_arch}.zip"
fi
sudo wget -qO $NZ_DASHBOARD_PATH/app.zip "$NZ_DASHBOARD_URL" >/dev/null 2>&1 && sudo unzip -qq -o $NZ_DASHBOARD_PATH/app.zip -d $NZ_DASHBOARD_PATH && sudo mv $NZ_DASHBOARD_PATH/dashboard-linux-$os_arch $NZ_DASHBOARD_PATH/app && sudo rm $NZ_DASHBOARD_PATH/app.zip
if [ "$os_alpine" != 1 ]; then
sudo systemctl enable nezha-dashboard
sudo systemctl restart nezha-dashboard
else
sudo rc-update add nezha-dashboard
sudo rc-service nezha-dashboard restart
fi
}
start_dashboard() {
echo "> Start Dashboard"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then
_cmd="start_dashboard_docker"
elif [ "$IS_DOCKER_NEZHA" = 0 ]; then
_cmd="start_dashboard_standalone"
fi
if eval "$_cmd"; then
success "Nezha Monitoring Start Successful"
else
err "Failed to start, please check the log message later"
fi
if [ $# = 0 ]; then
before_show_menu
fi
}
start_dashboard_docker() {
sudo $DOCKER_COMPOSE_COMMAND -f ${NZ_DASHBOARD_PATH}/docker-compose.yaml up -d
}
start_dashboard_standalone() {
if [ "$os_alpine" != 1 ]; then
sudo systemctl start nezha-dashboard
else
sudo rc-service nezha-dashboard start
fi
}
stop_dashboard() {
echo "> Stop Dashboard"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then
_cmd="stop_dashboard_docker"
elif [ "$IS_DOCKER_NEZHA" = 0 ]; then
_cmd="stop_dashboard_standalone"
fi
if eval "$_cmd"; then
success "Nezha Monitoring Stop Successful"
else
err "Failed to stop, please check the log message later"
fi
if [ $# = 0 ]; then
before_show_menu
fi
}
stop_dashboard_docker() {
sudo $DOCKER_COMPOSE_COMMAND -f ${NZ_DASHBOARD_PATH}/docker-compose.yaml down
}
stop_dashboard_standalone() {
if [ "$os_alpine" != 1 ]; then
sudo systemctl stop nezha-dashboard
else
sudo rc-service nezha-dashboard stop
fi
}
show_dashboard_log() {
echo "> View Dashboard Log"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then
show_dashboard_log_docker
elif [ "$IS_DOCKER_NEZHA" = 0 ]; then
show_dashboard_log_standalone
fi
if [ $# = 0 ]; then
before_show_menu
fi
}
show_dashboard_log_docker() {
sudo $DOCKER_COMPOSE_COMMAND -f ${NZ_DASHBOARD_PATH}/docker-compose.yaml logs -f
}
show_dashboard_log_standalone() {
if [ "$os_alpine" != 1 ]; then
sudo journalctl -xf -u nezha-dashboard.service
else
sudo tail -n 10 /var/log/nezha-dashboard.err
fi
}
uninstall_dashboard() {
echo "> Uninstall Dashboard"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then
uninstall_dashboard_docker
elif [ "$IS_DOCKER_NEZHA" = 0 ]; then
uninstall_dashboard_standalone
fi
clean_all
if [ $# = 0 ]; then
before_show_menu
fi
}
uninstall_dashboard_docker() {
sudo $DOCKER_COMPOSE_COMMAND -f ${NZ_DASHBOARD_PATH}/docker-compose.yaml down
sudo rm -rf $NZ_DASHBOARD_PATH
sudo docker rmi -f ghcr.io/naiba/nezha-dashboard >/dev/null 2>&1
sudo docker rmi -f registry.cn-shanghai.aliyuncs.com/naibahq/nezha-dashboard >/dev/null 2>&1
}
uninstall_dashboard_standalone() {
sudo rm -rf $NZ_DASHBOARD_PATH
if [ "$os_alpine" != 1 ]; then
sudo systemctl disable nezha-dashboard
sudo systemctl stop nezha-dashboard
else
sudo rc-update del nezha-dashboard
sudo rc-service nezha-dashboard stop
fi
if [ "$os_alpine" != 1 ]; then
sudo rm $NZ_DASHBOARD_SERVICE
else
sudo rm $NZ_DASHBOARD_SERVICERC
fi
}
show_agent_log() {
echo "> View Agent Log"
if [ "$os_alpine" != 1 ]; then
sudo journalctl -xf -u nezha-agent.service
else
sudo tail -n 10 /var/log/nezha-agent.err
fi
if [ $# = 0 ]; then
before_show_menu
fi
}
uninstall_agent() {
echo "> Uninstall Agent"
sudo ${NZ_AGENT_PATH}/nezha-agent service uninstall
sudo rm -rf $NZ_AGENT_PATH
clean_all
if [ $# = 0 ]; then
before_show_menu
fi
}
restart_agent() {
echo "> Restart Agent"
sudo ${NZ_AGENT_PATH}/nezha-agent service restart
if [ $# = 0 ]; then
before_show_menu
fi
}
clean_all() {
if [ -z "$(ls -A ${NZ_BASE_PATH})" ]; then
sudo rm -rf ${NZ_BASE_PATH}
fi
}
show_usage() {
echo "Nezha Monitor Management Script Usage: "
echo "--------------------------------------------------------"
echo "./nezha.sh - Show Menu"
echo "./nezha.sh install_dashboard - Install Dashboard"
echo "./nezha.sh modify_dashboard_config - Modify Dashboard Configuration"
echo "./nezha.sh start_dashboard - Start Dashboard"
echo "./nezha.sh stop_dashboard - Stop Dashboard"
echo "./nezha.sh restart_and_update - Restart and Update the Dashboard"
echo "./nezha.sh show_dashboard_log - View Dashboard Log"
echo "./nezha.sh uninstall_dashboard - Uninstall Dashboard"
echo "--------------------------------------------------------"
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"
echo "--------------------------------------------------------"
}
show_menu() {
printf "
${green}Nezha Monitor Management Script${plain} ${red}${NZ_VERSION}${plain}
--- https://github.com/naiba/nezha ---
${green}1.${plain} Install Dashboard
${green}2.${plain} Modify Dashbaord Configuration
${green}3.${plain} Start Dashboard
${green}4.${plain} Stop Dashboard
${green}5.${plain} Restart and Update Dashboard
${green}6.${plain} View Dashboard Log
${green}7.${plain} Uninstall Dashboard
————————————————-
${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
————————————————-
${green}13.${plain} Update Script
————————————————-
${green}0.${plain} Exit Script
"
echo && printf "Please enter [0-13]: " && read -r num
case "${num}" in
0)
exit 0
;;
1)
install_dashboard
;;
2)
modify_dashboard_config
;;
3)
start_dashboard
;;
4)
stop_dashboard
;;
5)
restart_and_update
;;
6)
show_dashboard_log
;;
7)
uninstall_dashboard
;;
8)
install_agent
;;
9)
modify_agent_config
;;
10)
show_agent_log
;;
11)
uninstall_agent
;;
12)
restart_agent
;;
13)
update_script
;;
*)
err "Please enter the correct number [0-13]"
;;
esac
}
pre_check
installation_check
if [ $# -gt 0 ]; then
case $1 in
"install_dashboard")
install_dashboard 0
;;
"modify_dashboard_config")
modify_dashboard_config 0
;;
"start_dashboard")
start_dashboard 0
;;
"stop_dashboard")
stop_dashboard 0
;;
"restart_and_update")
restart_and_update 0
;;
"show_dashboard_log")
show_dashboard_log 0
;;
"uninstall_dashboard")
uninstall_dashboard 0
;;
"install_agent")
shift
if [ $# -ge 3 ]; then
install_agent "$@"
else
install_agent 0
fi
;;
"modify_agent_config")
modify_agent_config 0
;;
"show_agent_log")
show_agent_log 0
;;
"uninstall_agent")
uninstall_agent 0
;;
"restart_agent")
restart_agent 0
;;
"update_script")
update_script 0
;;
*) show_usage ;;
esac
else
select_version
show_menu
fi

View File

@ -2,16 +2,118 @@
"zh_CN": { "zh_CN": {
"locale": "zh_CN", "locale": "zh_CN",
"script": "install.sh", "script": "install.sh",
"ErrorFetchScript": "Script failed to get, please check if the network can link", "ErrorFetchFile": "文件下载失败,请检查本机能否连接",
"ErrorFetchScript": "脚本获取失败,请检查本机能否链接 ",
"ErrorObtainVersion": "获取 %s 版本号失败,请检查本机能否链接",
"ErrorModifyConfig": "所有选项都不能为空",
"DoNotEdit": "# Generated by nezhahq/scriptgen. DO NOT EDIT", "DoNotEdit": "# Generated by nezhahq/scriptgen. DO NOT EDIT",
"SudoError": "错误: 您的系统未安装 sudo因此无法进行该项操作。", "SudoError": "错误: 您的系统未安装 sudo因此无法进行该项操作。",
"SystemdCheckError": "不支持此系统:未找到 systemctl 命令" "SystemdCheckError": "不支持此系统:未找到 systemctl 命令",
"GeoInfo": "根据geoip api提供的信息当前IP可能在中国",
"PromptMirror": "是否选用中国镜像完成安装? [Y/n] (自定义镜像输入 3)",
"UseCustomMirror": "使用自定义镜像",
"PromptCustomImage": "请输入自定义镜像 (例如:dn-dao-github-mirror.daocloud.io),留空为不使用:",
"UseChineseMirror": "使用中国镜像",
"NoUseChineseMirror": "不使用中国镜像",
"DockerImageFound": "存在带有 nezha-dashboard 仓库的 Docker 镜像:",
"DockerImageNotFound": "未找到带有 nezha-dashboard 仓库的 Docker 镜像。",
"SelectInstallMethod": "请自行选择您的安装方式如果你是安装Agent输入哪个都是一样的",
"PromptSelectVersion": "请输入选择 [1-2]",
"StandaloneInstall": "独立安装",
"ErrorSelectVersion": "请输入正确的选择 [1-2]",
"UpdateScript": "更新脚本",
"ExecuteScriptInfo": "3s后执行新脚本",
"BeforeShowMenu": "按回车返回主菜单",
"InstallDashboard": "安装面板",
"InstallDashboardInfo": "您可能已经安装过面板端,重复安装会覆盖数据,请注意备份。",
"PromptInstallDashboard": "是否退出安装? [Y/n] ",
"ContinueInstallation": "继续安装",
"ExitInstallation": "退出安装",
"InstallDockerInfo": "正在安装 Docker",
"InstallDockerSuccess": "Docker 安装成功",
"SELinuxInfo": "SELinux是开启状态正在关闭",
"InstallAgent": "安装监控Agent",
"ObtainAgentVersion": "正在获取监控Agent版本号",
"CurrentVersionInfo": "当前最新版本为:",
"DownloadAgent": "正在下载监控端",
"ErrorDownloadAgent": "Release 下载失败,请检查本机能否连接",
"ModifyConfiguration": "修改 %s 配置",
"SuccessModifyConfig": "%[1]s 配置 修改成功,请稍等 %[1]s 重启生效",
"ModifyAgentConfInfo": "请先在管理面板上添加Agent记录下密钥",
"PromptModifyAgent_1": "请输入一个解析到面板所在IP的域名不可套CDN: ",
"PromptModifyAgent_2": "请输入面板RPC端口 (默认值 5555): ",
"PromptModifyAgent_3": "请输入Agent 密钥: ",
"PromptModifyAgent_4": "是否启用针对 gRPC 端口的 SSL/TLS加密 (--tls),需要请按 [y],默认是不需要,不理解用户可回车跳过: ",
"DownloadDockerScript": "正在下载 Docker 脚本",
"ErrorCheckDocker": "请手动安装 docker-compose。",
"PromptModifyDashboard_1": "关于 GitHub Oauth2 应用:在 https://github.com/settings/developers 创建无需审核Callback 填 http(s)://域名或IP/oauth2/callback",
"PromptModifyDashboard_2": "关于 Gitee Oauth2 应用:在 https://gitee.com/oauth/applications 创建无需审核Callback 填 http(s)://域名或IP/oauth2/callback",
"PromptModifyDashboard_3": "请输入 OAuth2 提供商(github/gitlab/jihulab/gitee默认 github): ",
"PromptModifyDashboard_4": "请输入 Oauth2 应用的 Client ID: ",
"PromptModifyDashboard_5": "请输入 Oauth2 应用的 Client Secret: ",
"PromptModifyDashboard_6": "请输入 GitHub/Gitee 登录名作为管理员,多个以逗号隔开: ",
"PromptModifyDashboard_7": "请输入站点标题: ",
"PromptModifyDashboard_8": "请输入站点访问端口: (默认 8008)",
"PromptModifyDashboard_9": "请输入用于 Agent 接入的 RPC 端口: (默认 5555)",
"DownloadServiceScript": "正在下载服务文件",
"RestartAndUpdate": "重启并更新面板",
"SuccessRestartDashboard": "哪吒监控 重启成功",
"SuccessStartDashboard": "哪吒监控 启动成功",
"DashboardInfo": "默认管理面板地址:域名:站点访问端口",
"ErrorRestartDashboard": "重启失败,可能是因为启动时间超过了两秒,请稍后查看日志信息",
"StartDashboard": "启动面板",
"ErrorFailedToStart": "启动失败,请稍后查看日志信息",
"ErrorFailedToStop": "停止失败,请稍后查看日志信息",
"StopDashboard": "停止面板",
"SuccessStopDashboard": "哪吒监控 停止成功",
"ViewLog": "获取 %s 日志",
"UninstallDashboard": "卸载 Dashboard",
"UninstallAgent": "卸载 Agent",
"RestartAgent": "重启 Agent",
"Usage1": "哪吒监控 管理脚本使用方法: ",
"Usage2": "./nezha.sh - 显示管理菜单",
"Usage3": "./nezha.sh install_dashboard - 安装面板端",
"Usage4": "./nezha.sh modify_dashboard_config - 修改面板配置",
"Usage5": "./nezha.sh start_dashboard - 启动面板",
"Usage6": "./nezha.sh stop_dashboard - 停止面板",
"Usage7": "./nezha.sh restart_and_update - 重启并更新面板",
"Usage8": "./nezha.sh show_dashboard_log - 查看面板日志",
"Usage9": "./nezha.sh uninstall_dashboard - 卸载管理面板",
"Usage10": "./nezha.sh install_agent - 安装监控Agent",
"Usage11": "./nezha.sh modify_agent_config - 修改Agent配置",
"Usage12": "./nezha.sh show_agent_log - 查看Agent日志",
"Usage13": "./nezha.sh uninstall_agent - 卸载Agent",
"Usage14": "./nezha.sh restart_agent - 重启Agent",
"Usage15": "./nezha.sh update_script - 更新脚本",
"MenuInfo": "哪吒监控管理脚本",
"Menu0": "退出脚本",
"Menu1": "安装面板端",
"Menu2": "修改面板配置",
"Menu3": "启动面板",
"Menu4": "停止面板",
"Menu5": "重启并更新面板",
"Menu6": "查看面板日志",
"Menu7": "卸载管理面板",
"Menu8": "安装监控Agent",
"Menu9": "修改Agent配置",
"Menu10": "查看Agent日志",
"Menu11": "卸载Agent",
"Menu12": "重启Agent",
"Menu13": "更新脚本",
"PromptMenu": "请输入选择 [0-13]: ",
"ErrorPromptMenu": "请输入正确的数字 [0-13]",
"InstallArchPrompt1": "提示Arch安装libselinux需添加nezha-agent用户安装完会自动删除建议手动检查一次",
"InstallArchPrompt2": "是否安装libselinux? [Y/n] ",
"InstallArchPrompt3": "提示: 已删除用户nezha-agent请务必手动核查一遍",
"InstallArchPrompt4": "不安装libselinux"
}, },
"en_US": { "en_US": {
"locale": "en_US", "locale": "en_US",
"script": "install_en.sh", "script": "install_en.sh",
"ErrorFetchFile": "File failed to get, please check if the network can link",
"ErrorFetchScript": "Script failed to get, please check if the network can link", "ErrorFetchScript": "Script failed to get, please check if the network can link",
"ErrorObtainVersion": "Fail to obtain %s version, please check if the network can link", "ErrorObtainVersion": "Fail to obtain %s version, please check if the network can link",
"ErrorModifyConfig": "All options cannot be empty",
"DoNotEdit": "# Generated by nezhahq/scriptgen. DO NOT EDIT", "DoNotEdit": "# Generated by nezhahq/scriptgen. DO NOT EDIT",
"SudoError": "ERROR: sudo is not installed on the system, the action cannot be proceeded.", "SudoError": "ERROR: sudo is not installed on the system, the action cannot be proceeded.",
"SystemdCheckError": "System not supported: systemctl not found", "SystemdCheckError": "System not supported: systemctl not found",
@ -28,12 +130,11 @@
"StandaloneInstall": "Standalone", "StandaloneInstall": "Standalone",
"ErrorSelectVersion": "Please enter the correct number [1-2]", "ErrorSelectVersion": "Please enter the correct number [1-2]",
"UpdateScript": "Update Script", "UpdateScript": "Update Script",
"UpdateScriptInfo": "The current latest version is:",
"ExecuteScriptInfo": "Execute new script after 3s", "ExecuteScriptInfo": "Execute new script after 3s",
"BeforeShowMenu": "Press Enter to return to the main menu", "BeforeShowMenu": "Press Enter to return to the main menu",
"InstallDashboard": "Install Dashboard", "InstallDashboard": "Install Dashboard",
"InstallDashboardInfo": "You may have already installed the dashboard, repeated installation will overwrite the data, please pay attention to backup.", "InstallDashboardInfo": "You may have already installed the dashboard, repeated installation will overwrite the data, please pay attention to backup.",
"PromptInstallDashboard": "Exit the installation? [Y/n]", "PromptInstallDashboard": "Exit the installation? [Y/n] ",
"ContinueInstallation": "Continue.", "ContinueInstallation": "Continue.",
"ExitInstallation": "Exit the installation.", "ExitInstallation": "Exit the installation.",
"InstallDockerInfo": "Installing Docker", "InstallDockerInfo": "Installing Docker",
@ -45,14 +146,73 @@
"DownloadAgent": "Downloading Agent", "DownloadAgent": "Downloading Agent",
"ErrorDownloadAgent": "Fail to download agent, please check if the network can link", "ErrorDownloadAgent": "Fail to download agent, please check if the network can link",
"ModifyConfiguration": "Modify %s Configuration", "ModifyConfiguration": "Modify %s Configuration",
"SuccessModifyConfig": "%s configuration modified successfully, please wait for agent self-restart to take effect", "SuccessModifyConfig": "%[1]s configuration modified successfully, please wait for %[1]s self-restart to take effect",
"ModifyAgentConfInfo": "Please add Agent in the Dashboard first, record the secret", "ModifyAgentConfInfo": "Please add Agent in the Dashboard first, record the secret",
"PromptModifyAgent_1": "Please enter a domain that resolves to the IP where Dashboard is located (no CDN): ", "PromptModifyAgent_1": "Please enter a domain that resolves to the IP where Dashboard is located (no CDN): ",
"PromptModifyAgent_2": "Please enter Dashboard RPC port (default 5555): ", "PromptModifyAgent_2": "Please enter Dashboard RPC port (default 5555): ",
"PromptModifyAgent_3": "Please enter the Agent secret: ", "PromptModifyAgent_3": "Please enter the Agent secret: ",
"PromptModifyAgent_4": "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: ", "PromptModifyAgent_4": "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: ",
"ErrorModifyAgent": "All options cannot be empty",
"DownloadDockerScript": "Download Docker Script", "DownloadDockerScript": "Download Docker Script",
"ErrorCheckDocker": "Please install docker-compose manually." "ErrorCheckDocker": "Please install docker-compose manually.",
"PromptModifyDashboard_1": "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",
"PromptModifyDashboard_2": "(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",
"PromptModifyDashboard_3": "Please enter the OAuth2 provider (github/gitlab/jihulab/gitee, default github): ",
"PromptModifyDashboard_4": "Please enter the Client ID of the Oauth2 application: ",
"PromptModifyDashboard_5": "Please enter the Client Secret of the Oauth2 application: ",
"PromptModifyDashboard_6": "Please enter your GitHub/Gitee login name as the administrator, separated by commas: ",
"PromptModifyDashboard_7": "Please enter the site title: ",
"PromptModifyDashboard_8": "Please enter the site access port: (default 8008)",
"PromptModifyDashboard_9": "Please enter the RPC port to be used for Agent access: (default 5555)",
"DownloadServiceScript": "Downloading service file",
"RestartAndUpdate": "Restart and Update Dashboard",
"SuccessRestartDashboard": "Nezha Monitoring Restart Successful",
"SuccessStartDashboard": "Nezha Monitoring Start Successful",
"DashboardInfo": "Default Dashboard address: domain:site_access_port",
"ErrorRestartDashboard": "The restart failed, probably because the boot time exceeded two seconds, please check the log information later",
"StartDashboard": "Start Dashboard",
"ErrorFailedToStart": "Failed to start, please check the log message later",
"ErrorFailedToStop": "Failed to stop, please check the log message later",
"StopDashboard": "Stop Dashboard",
"SuccessStopDashboard": "Nezha Monitoring Stop Successful",
"ViewLog": "View %s Log",
"UninstallDashboard": "Uninstall Dashboard",
"UninstallAgent": "Uninstall Agent",
"RestartAgent": "Restart Agent",
"Usage1": "Nezha Monitor Management Script Usage: ",
"Usage2": "./nezha.sh - Show Menu",
"Usage3": "./nezha.sh install_dashboard - Install Dashboard",
"Usage4": "./nezha.sh modify_dashboard_config - Modify Dashboard Configuration",
"Usage5": "./nezha.sh start_dashboard - Start Dashboard",
"Usage6": "./nezha.sh stop_dashboard - Stop Dashboard",
"Usage7": "./nezha.sh restart_and_update - Restart and Update the Dashboard",
"Usage8": "./nezha.sh show_dashboard_log - View Dashboard Log",
"Usage9": "./nezha.sh uninstall_dashboard - Uninstall Dashboard",
"Usage10": "./nezha.sh install_agent - Install Agent",
"Usage11": "./nezha.sh modify_agent_config - Modify Agent Configuration",
"Usage12": "./nezha.sh show_agent_log - View Agent Log",
"Usage13": "./nezha.sh uninstall_agent - Uninstall Agent",
"Usage14": "./nezha.sh restart_agent - Restart Agent",
"Usage15": "./nezha.sh update_script - Update Script",
"MenuInfo": "Nezha Monitor Management Script",
"Menu0": "Exit Script",
"Menu1": "Install Dashboard",
"Menu2": "Modify Dashbaord Configuration",
"Menu3": "Start Dashboard",
"Menu4": "Stop Dashboard",
"Menu5": "Restart and Update Dashboard",
"Menu6": "View Dashboard Log",
"Menu7": "Uninstall Dashboard",
"Menu8": "Install Agent",
"Menu9": "Modify Agent Configuration",
"Menu10": "View Agent Log",
"Menu11": "Uninstall Agent",
"Menu12": "Restart Agent",
"Menu13": "Update Script",
"PromptMenu": "Please enter [0-13]: ",
"ErrorPromptMenu": "Please enter the correct number [0-13]",
"InstallArchPrompt1": "Archlinux needs to add nezha-agent user to install libselinux. It will be deleted automatically after installation. It is recommended to check manually",
"InstallArchPrompt2": "Do you need to install libselinux? [Y/n] ",
"InstallArchPrompt3": "Info: user nezha-agent has been deleted, Be sure to check it manually!",
"InstallArchPrompt4": "Libselinux will not be installed"
} }
} }

View File

@ -144,7 +144,7 @@ installation_check() {
if docker compose version >/dev/null 2>&1; then if docker compose version >/dev/null 2>&1; then
DOCKER_COMPOSE_COMMAND="docker compose" DOCKER_COMPOSE_COMMAND="docker compose"
if sudo $DOCKER_COMPOSE_COMMAND ls | grep -qw "$NZ_DASHBOARD_PATH/docker-compose.yaml" >/dev/null 2>&1; then if sudo $DOCKER_COMPOSE_COMMAND ls | grep -qw "$NZ_DASHBOARD_PATH/docker-compose.yaml" >/dev/null 2>&1; then
NEZHA_IMAGES=$(sudo docker images --format "{{.Repository}}:{{.Tag}}" | grep -w "nezha-dashboard") NEZHA_IMAGES=$(sudo docker images --format "{{"{{.Repository}}"}}:{{"{{.Tag}}"}}" | grep -w "nezha-dashboard")
if [ -n "$NEZHA_IMAGES" ]; then if [ -n "$NEZHA_IMAGES" ]; then
echo "{{.DockerImageFound}}" echo "{{.DockerImageFound}}"
echo "$NEZHA_IMAGES" echo "$NEZHA_IMAGES"
@ -158,7 +158,7 @@ installation_check() {
elif command -v docker-compose >/dev/null 2>&1; then elif command -v docker-compose >/dev/null 2>&1; then
DOCKER_COMPOSE_COMMAND="docker-compose" DOCKER_COMPOSE_COMMAND="docker-compose"
if sudo $DOCKER_COMPOSE_COMMAND -f "$NZ_DASHBOARD_PATH/docker-compose.yaml" config >/dev/null 2>&1; then if sudo $DOCKER_COMPOSE_COMMAND -f "$NZ_DASHBOARD_PATH/docker-compose.yaml" config >/dev/null 2>&1; then
NEZHA_IMAGES=$(sudo docker images --format "{{.Repository}}:{{.Tag}}" | grep -w "nezha-dashboard") NEZHA_IMAGES=$(sudo docker images --format "{{"{{.Repository}}"}}:{{"{{.Tag}}"}}" | grep -w "nezha-dashboard")
if [ -n "$NEZHA_IMAGES" ]; then if [ -n "$NEZHA_IMAGES" ]; then
echo "{{.DockerImageFound}}" echo "{{.DockerImageFound}}"
echo "$NEZHA_IMAGES" echo "$NEZHA_IMAGES"
@ -211,7 +211,7 @@ update_script() {
echo "{{.ErrorFetchScript}} https://${GITHUB_RAW_URL}/script/install.sh" echo "{{.ErrorFetchScript}} https://${GITHUB_RAW_URL}/script/install.sh"
return 1 return 1
fi fi
echo "{{.UpdateScriptInfo}} ${new_version}" echo "{{.CurrentVersionInfo}} ${new_version}"
mv -f /tmp/nezha.sh ./nezha.sh && chmod a+x ./nezha.sh mv -f /tmp/nezha.sh ./nezha.sh && chmod a+x ./nezha.sh
echo "{{.ExecuteScriptInfo}}" echo "{{.ExecuteScriptInfo}}"
@ -232,8 +232,8 @@ install_base() {
} }
install_arch() { install_arch() {
info "Archlinux needs to add nezha-agent user to install libselinux. It will be deleted automatically after installation. It is recommended to check manually" info "{{.InstallArchPrompt1}}"
read -r -p "Do you need to install libselinux? [Y/n] " input read -r -p "{{.InstallArchPrompt2}}" input
case $input in case $input in
[yY][eE][sS] | [yY]) [yY][eE][sS] | [yY])
useradd -m nezha-agent useradd -m nezha-agent
@ -243,13 +243,13 @@ install_arch() {
git clone https://aur.archlinux.org/libselinux.git; cd libselinux; makepkg -si --noconfirm; cd ..; git clone https://aur.archlinux.org/libselinux.git; cd libselinux; makepkg -si --noconfirm; cd ..;
rm -rf libsepol libselinux' rm -rf libsepol libselinux'
sed -i '/nezha-agent/d' /etc/sudoers && sleep 30s && killall -u nezha-agent && userdel -r nezha-agent sed -i '/nezha-agent/d' /etc/sudoers && sleep 30s && killall -u nezha-agent && userdel -r nezha-agent
echo -e "${red}Info: ${plain}user nezha-agent has been deleted, Be sure to check it manually!\n" info "{{.InstallArchPrompt3}}"
;; ;;
[nN][oO] | [nN]) [nN][oO] | [nN])
echo "Libselinux will not be installed" echo "{{.InstallArchPrompt4}}"
;; ;;
*) *)
echo "Libselinux will not be installed" echo "{{.InstallArchPrompt4}}"
exit 0 exit 0
;; ;;
esac esac
@ -407,17 +407,17 @@ modify_agent_config() {
if [ $# -lt 3 ]; then if [ $# -lt 3 ]; then
echo "{{.ModifyAgentConfInfo}}" echo "{{.ModifyAgentConfInfo}}"
printf "Please enter a domain that resolves to the IP where Dashboard is located (no CDN): " printf "{{.PromptModifyAgent_1}}"
read -r nz_grpc_host read -r nz_grpc_host
printf "Please enter Dashboard RPC port (default 5555): " printf "{{.PromptModifyAgent_2}}"
read -r nz_grpc_port read -r nz_grpc_port
printf "Please enter the Agent secret: " printf "{{.PromptModifyAgent_3}}"
read -r nz_client_secret read -r nz_client_secret
printf "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: " printf "{{.PromptModifyAgent_4}}"
read -r nz_grpc_proxy read -r nz_grpc_proxy
echo "${nz_grpc_proxy}" | grep -qiw 'Y' && args='--tls' echo "${nz_grpc_proxy}" | grep -qiw 'Y' && args='--tls'
if [ -z "$nz_grpc_host" ] || [ -z "$nz_client_secret" ]; then if [ -z "$nz_grpc_host" ] || [ -z "$nz_client_secret" ]; then
err "All options cannot be empty" err "{{.ErrorModifyConfig}}"
before_show_menu before_show_menu
return 1 return 1
fi fi
@ -471,25 +471,25 @@ modify_dashboard_config() {
return 0 return 0
fi fi
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" echo "{{.PromptModifyDashboard_1}}"
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" echo "{{.PromptModifyDashboard_2}}"
printf "Please enter the OAuth2 provider (github/gitlab/jihulab/gitee, default github): " printf "{{.PromptModifyDashboard_3}}"
read -r nz_oauth2_type read -r nz_oauth2_type
printf "Please enter the Client ID of the Oauth2 application: " printf "{{.PromptModifyDashboard_4}}"
read -r nz_github_oauth_client_id read -r nz_github_oauth_client_id
printf "Please enter the Client Secret of the Oauth2 application: " printf "{{.PromptModifyDashboard_5}}"
read -r nz_github_oauth_client_secret read -r nz_github_oauth_client_secret
printf "Please enter your GitHub/Gitee login name as the administrator, separated by commas: " printf "{{.PromptModifyDashboard_6}}"
read -r nz_admin_logins read -r nz_admin_logins
printf "Please enter the site title: " printf "{{.PromptModifyDashboard_7}}"
read -r nz_site_title read -r nz_site_title
printf "Please enter the site access port: (default 8008)" printf "{{.PromptModifyDashboard_8}}"
read -r nz_site_port read -r nz_site_port
printf "Please enter the RPC port to be used for Agent access: (default 5555)" printf "{{.PromptModifyDashboard_9}}"
read -r nz_grpc_port read -r nz_grpc_port
if [ -z "$nz_admin_logins" ] || [ -z "$nz_github_oauth_client_id" ] || [ -z "$nz_github_oauth_client_secret" ] || [ -z "$nz_site_title" ]; then if [ -z "$nz_admin_logins" ] || [ -z "$nz_github_oauth_client_id" ] || [ -z "$nz_github_oauth_client_secret" ] || [ -z "$nz_site_title" ]; then
err "All options cannot be empty" err "{{.ErrorModifyConfig}}"
before_show_menu before_show_menu
return 1 return 1
fi fi
@ -526,20 +526,20 @@ modify_dashboard_config() {
fi fi
if [ "$IS_DOCKER_NEZHA" = 0 ]; then if [ "$IS_DOCKER_NEZHA" = 0 ]; then
echo "Downloading service file" echo "{{.DownloadServiceScript}}"
if [ "$os_alpine" != 1 ]; then if [ "$os_alpine" != 1 ]; then
_download="sudo wget -t 2 -T 60 -O $NZ_DASHBOARD_SERVICE https://${GITHUB_RAW_URL}/script/nezha-dashboard.service >/dev/null 2>&1" _download="sudo wget -t 2 -T 60 -O $NZ_DASHBOARD_SERVICE https://${GITHUB_RAW_URL}/script/nezha-dashboard.service >/dev/null 2>&1"
else else
_download="sudo wget -t 2 -T 60 -O $NZ_DASHBOARD_SERVICERC https://${GITHUB_RAW_URL}/script/nezha-dashboard >/dev/null 2>&1" _download="sudo wget -t 2 -T 60 -O $NZ_DASHBOARD_SERVICERC https://${GITHUB_RAW_URL}/script/nezha-dashboard >/dev/null 2>&1"
if ! eval "$_download"; then if ! eval "$_download"; then
err "File failed to get, please check if the network can link ${GITHUB_RAW_URL}" err "{{.ErrorFetchFile}} ${GITHUB_RAW_URL}"
return 0 return 0
fi fi
sudo chmod +x $NZ_DASHBOARD_SERVICERC sudo chmod +x $NZ_DASHBOARD_SERVICERC
fi fi
fi fi
success "Dashboard configuration modified successfully, please wait for Dashboard self-restart to take effect" success "{{printf .SuccessModifyConfig "Dashboard"}}"
restart_and_update restart_and_update
@ -549,7 +549,7 @@ modify_dashboard_config() {
} }
restart_and_update() { restart_and_update() {
echo "> Restart and Update Dashboard" echo "> {{.RestartAndUpdate}}"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then if [ "$IS_DOCKER_NEZHA" = 1 ]; then
_cmd="restart_and_update_docker" _cmd="restart_and_update_docker"
@ -558,10 +558,10 @@ restart_and_update() {
fi fi
if eval "$_cmd"; then if eval "$_cmd"; then
success "Nezha Monitoring Restart Successful" success "{{.SuccessRestartDashboard}}"
info "Default Dashboard address: domain:site_access_port" info "{{.DashboardInfo}}"
else else
err "The restart failed, probably because the boot time exceeded two seconds, please check the log information later" err "{{.ErrorRestartDashboard}}"
fi fi
if [ $# = 0 ]; then if [ $# = 0 ]; then
@ -588,10 +588,10 @@ restart_and_update_standalone() {
fi fi
if [ -z "$_version" ]; then if [ -z "$_version" ]; then
err "Fail to obtain agent version, please check if the network can link https://api.github.com/repos/nezhahq/agent/releases/latest" err "{{printf .ErrorObtainVersion "Agent"}} https://api.github.com/repos/nezhahq/agent/releases/latest"
return 1 return 1
else else
echo "The current latest version is: ${_version}" echo "{{.CurrentVersionInfo}} ${_version}"
fi fi
if [ "$os_alpine" != 1 ]; then if [ "$os_alpine" != 1 ]; then
@ -619,7 +619,7 @@ restart_and_update_standalone() {
} }
start_dashboard() { start_dashboard() {
echo "> Start Dashboard" echo "> {{.StartDashboard}}"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then if [ "$IS_DOCKER_NEZHA" = 1 ]; then
_cmd="start_dashboard_docker" _cmd="start_dashboard_docker"
@ -628,9 +628,9 @@ start_dashboard() {
fi fi
if eval "$_cmd"; then if eval "$_cmd"; then
success "Nezha Monitoring Start Successful" success "{{.SuccessStartDashboard}}"
else else
err "Failed to start, please check the log message later" err "{{.ErrorFailedToStart}}"
fi fi
if [ $# = 0 ]; then if [ $# = 0 ]; then
@ -651,7 +651,7 @@ start_dashboard_standalone() {
} }
stop_dashboard() { stop_dashboard() {
echo "> Stop Dashboard" echo "> {{.StopDashboard}}"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then if [ "$IS_DOCKER_NEZHA" = 1 ]; then
_cmd="stop_dashboard_docker" _cmd="stop_dashboard_docker"
@ -660,9 +660,9 @@ stop_dashboard() {
fi fi
if eval "$_cmd"; then if eval "$_cmd"; then
success "Nezha Monitoring Stop Successful" success "{{.SuccessStopDashboard}}"
else else
err "Failed to stop, please check the log message later" err "{{.ErrorFailedToStop}}"
fi fi
if [ $# = 0 ]; then if [ $# = 0 ]; then
@ -683,7 +683,7 @@ stop_dashboard_standalone() {
} }
show_dashboard_log() { show_dashboard_log() {
echo "> View Dashboard Log" echo "> {{printf .ViewLog "Dashboard"}}"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then if [ "$IS_DOCKER_NEZHA" = 1 ]; then
show_dashboard_log_docker show_dashboard_log_docker
@ -709,7 +709,7 @@ show_dashboard_log_standalone() {
} }
uninstall_dashboard() { uninstall_dashboard() {
echo "> Uninstall Dashboard" echo "> {{.UninstallDashboard}}"
if [ "$IS_DOCKER_NEZHA" = 1 ]; then if [ "$IS_DOCKER_NEZHA" = 1 ]; then
uninstall_dashboard_docker uninstall_dashboard_docker
@ -750,7 +750,7 @@ uninstall_dashboard_standalone() {
} }
show_agent_log() { show_agent_log() {
echo "> View Agent Log" echo "> {{printf .ViewLog "Agent"}}"
if [ "$os_alpine" != 1 ]; then if [ "$os_alpine" != 1 ]; then
sudo journalctl -xf -u nezha-agent.service sudo journalctl -xf -u nezha-agent.service
@ -764,7 +764,7 @@ show_agent_log() {
} }
uninstall_agent() { uninstall_agent() {
echo "> Uninstall Agent" echo "> {{.UninstallAgent}}"
sudo ${NZ_AGENT_PATH}/nezha-agent service uninstall sudo ${NZ_AGENT_PATH}/nezha-agent service uninstall
@ -777,7 +777,7 @@ uninstall_agent() {
} }
restart_agent() { restart_agent() {
echo "> Restart Agent" echo "> {{.RestartAgent}}"
sudo ${NZ_AGENT_PATH}/nezha-agent service restart sudo ${NZ_AGENT_PATH}/nezha-agent service restart
@ -793,49 +793,49 @@ clean_all() {
} }
show_usage() { show_usage() {
echo "Nezha Monitor Management Script Usage: " echo "{{.Usage1}}"
echo "--------------------------------------------------------" echo "--------------------------------------------------------"
echo "./nezha.sh - Show Menu" echo "{{.Usage2}}"
echo "./nezha.sh install_dashboard - Install Dashboard" echo "{{.Usage3}}"
echo "./nezha.sh modify_dashboard_config - Modify Dashboard Configuration" echo "{{.Usage4}}"
echo "./nezha.sh start_dashboard - Start Dashboard" echo "{{.Usage5}}"
echo "./nezha.sh stop_dashboard - Stop Dashboard" echo "{{.Usage6}}"
echo "./nezha.sh restart_and_update - Restart and Update the Dashboard" echo "{{.Usage7}}"
echo "./nezha.sh show_dashboard_log - View Dashboard Log" echo "{{.Usage8}}"
echo "./nezha.sh uninstall_dashboard - Uninstall Dashboard" echo "{{.Usage9}}"
echo "--------------------------------------------------------" echo "--------------------------------------------------------"
echo "./nezha.sh install_agent - Install Agent" echo "{{.Usage10}}"
echo "./nezha.sh modify_agent_config - Modify Agent Configuration" echo "{{.Usage11}}"
echo "./nezha.sh show_agent_log - View Agent Log" echo "{{.Usage12}}"
echo "./nezha.sh uninstall_agent - Uninstall Agent" echo "{{.Usage13}}"
echo "./nezha.sh restart_agent - Restart Agent" echo "{{.Usage14}}"
echo "./nezha.sh update_script - Update Script" echo "{{.Usage15}}"
echo "--------------------------------------------------------" echo "--------------------------------------------------------"
} }
show_menu() { show_menu() {
printf " printf "
${green}Nezha Monitor Management Script${plain} ${red}${NZ_VERSION}${plain} ${green}{{.MenuInfo}}${plain} ${red}${NZ_VERSION}${plain}
--- https://github.com/naiba/nezha --- --- https://github.com/naiba/nezha ---
${green}1.${plain} Install Dashboard ${green}1.${plain} {{.Menu1}}
${green}2.${plain} Modify Dashbaord Configuration ${green}2.${plain} {{.Menu2}}
${green}3.${plain} Start Dashboard ${green}3.${plain} {{.Menu3}}
${green}4.${plain} Stop Dashboard ${green}4.${plain} {{.Menu4}}
${green}5.${plain} Restart and Update Dashboard ${green}5.${plain} {{.Menu5}}
${green}6.${plain} View Dashboard Log ${green}6.${plain} {{.Menu6}}
${green}7.${plain} Uninstall Dashboard ${green}7.${plain} {{.Menu7}}
————————————————- ————————————————-
${green}8.${plain} Install Agent ${green}8.${plain} {{.Menu8}}
${green}9.${plain} Modify Agent Configuration ${green}9.${plain} {{.Menu9}}
${green}10.${plain} View Agent Log ${green}10.${plain} {{.Menu10}}
${green}11.${plain} Uninstall Agent ${green}11.${plain} {{.Menu11}}
${green}12.${plain} Restart Agent ${green}12.${plain} {{.Menu12}}
————————————————- ————————————————-
${green}13.${plain} Update Script ${green}13.${plain} {{.Menu13}}
————————————————- ————————————————-
${green}0.${plain} Exit Script ${green}0.${plain} {{.Menu0}}
" "
echo && printf "Please enter [0-13]: " && read -r num echo && printf "{{.PromptMenu}}" && read -r num
case "${num}" in case "${num}" in
0) 0)
exit 0 exit 0
@ -880,7 +880,7 @@ show_menu() {
update_script update_script
;; ;;
*) *)
err "Please enter the correct number [0-13]" err "{{.ErrorPromptMenu}}"
;; ;;
esac esac
} }