2025-11-02 23:49:54 -08:00
|
|
|
|
#!/usr/bin/env bash
|
2025-04-01 10:25:46 +02:00
|
|
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
2025-04-07 12:50:37 +02:00
|
|
|
|
# Copyright (c) 2021-2025 community-scripts ORG
|
|
|
|
|
|
# Author: MickLesk (CanbiZ)
|
2024-12-16 12:42:51 +01:00
|
|
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
|
|
|
|
# Source: https://www.zabbix.com/
|
2024-06-11 13:30:12 -04:00
|
|
|
|
|
|
|
|
|
|
APP="Zabbix"
|
2025-04-10 11:56:52 +02:00
|
|
|
|
var_tags="${var_tags:-monitoring}"
|
|
|
|
|
|
var_cpu="${var_cpu:-2}"
|
|
|
|
|
|
var_ram="${var_ram:-4096}"
|
|
|
|
|
|
var_disk="${var_disk:-6}"
|
|
|
|
|
|
var_os="${var_os:-debian}"
|
2025-09-23 10:46:32 +02:00
|
|
|
|
var_version="${var_version:-13}"
|
2025-04-10 11:56:52 +02:00
|
|
|
|
var_unprivileged="${var_unprivileged:-1}"
|
2024-12-16 12:42:51 +01:00
|
|
|
|
|
|
|
|
|
|
header_info "$APP"
|
2024-06-11 13:30:12 -04:00
|
|
|
|
variables
|
|
|
|
|
|
color
|
|
|
|
|
|
catch_errors
|
|
|
|
|
|
|
|
|
|
|
|
function update_script() {
|
2025-04-07 12:50:37 +02:00
|
|
|
|
header_info
|
|
|
|
|
|
check_container_storage
|
|
|
|
|
|
check_container_resources
|
2025-09-23 10:46:32 +02:00
|
|
|
|
|
2025-04-07 12:50:37 +02:00
|
|
|
|
if [[ ! -f /etc/zabbix/zabbix_server.conf ]]; then
|
|
|
|
|
|
msg_error "No ${APP} Installation Found!"
|
|
|
|
|
|
exit
|
|
|
|
|
|
fi
|
2024-11-27 15:52:53 +01:00
|
|
|
|
|
2025-09-23 10:46:32 +02:00
|
|
|
|
. /etc/os-release
|
|
|
|
|
|
if [ "$VERSION_CODENAME" != "trixie" ]; then
|
|
|
|
|
|
msg_error "Unsupported Debian version: $VERSION_CODENAME – please upgrade to Debian 13 (Trixie) before updating Zabbix."
|
2025-10-30 09:24:16 -07:00
|
|
|
|
exit
|
2025-09-23 10:46:32 +02:00
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
if systemctl list-unit-files | grep -q zabbix-agent2.service; then
|
|
|
|
|
|
AGENT_SERVICE="zabbix-agent2"
|
|
|
|
|
|
else
|
|
|
|
|
|
AGENT_SERVICE="zabbix-agent"
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Stopping Services"
|
2025-10-11 22:53:10 +02:00
|
|
|
|
$STD systemctl stop zabbix-server
|
|
|
|
|
|
if systemctl list-unit-files | grep -q zabbix-agent2; then
|
|
|
|
|
|
$STD systemctl stop zabbix-agent2
|
|
|
|
|
|
else
|
|
|
|
|
|
$STD systemctl stop zabbix-agent
|
|
|
|
|
|
fi
|
2025-09-23 10:46:32 +02:00
|
|
|
|
msg_ok "Stopped Services"
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Updating Zabbix"
|
2025-04-07 12:50:37 +02:00
|
|
|
|
mkdir -p /opt/zabbix-backup/
|
|
|
|
|
|
cp /etc/zabbix/zabbix_server.conf /opt/zabbix-backup/
|
|
|
|
|
|
cp /etc/apache2/conf-enabled/zabbix.conf /opt/zabbix-backup/
|
|
|
|
|
|
cp -R /usr/share/zabbix/ /opt/zabbix-backup/
|
2025-09-23 10:46:32 +02:00
|
|
|
|
|
2025-04-07 12:50:37 +02:00
|
|
|
|
rm -Rf /etc/apt/sources.list.d/zabbix.list
|
2025-04-15 15:20:46 +02:00
|
|
|
|
cd /tmp
|
2025-04-07 12:50:37 +02:00
|
|
|
|
curl -fsSL "$(curl -fsSL https://repo.zabbix.com/zabbix/ |
|
|
|
|
|
|
grep -oP '(?<=href=")[0-9]+\.[0-9]+(?=/")' | sort -V | tail -n1 |
|
2025-09-23 10:46:32 +02:00
|
|
|
|
xargs -I{} echo "https://repo.zabbix.com/zabbix/{}/release/debian/pool/main/z/zabbix-release/zabbix-release_latest+debian13_all.deb")" \
|
|
|
|
|
|
-o /tmp/zabbix-release_latest+debian13_all.deb
|
|
|
|
|
|
$STD dpkg -i zabbix-release_latest+debian13_all.deb
|
|
|
|
|
|
$STD apt update
|
|
|
|
|
|
|
|
|
|
|
|
$STD apt install --only-upgrade zabbix-server-pgsql zabbix-frontend-php php8.4-pgsql
|
|
|
|
|
|
|
|
|
|
|
|
if [ "$AGENT_SERVICE" = "zabbix-agent2" ]; then
|
|
|
|
|
|
$STD apt install --only-upgrade zabbix-agent2 zabbix-agent2-plugin-postgresql
|
|
|
|
|
|
if [ -f /etc/zabbix/zabbix_agent2.d/plugins.d/nvidia.conf ]; then
|
|
|
|
|
|
sed -i 's|^Plugins.NVIDIA.System.Path=.*|# Plugins.NVIDIA.System.Path=/usr/libexec/zabbix/zabbix-agent2-plugin-nvidia-gpu|' \
|
|
|
|
|
|
/etc/zabbix/zabbix_agent2.d/plugins.d/nvidia.conf
|
|
|
|
|
|
fi
|
|
|
|
|
|
else
|
|
|
|
|
|
$STD apt install --only-upgrade zabbix-agent
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
if command -v fping >/dev/null 2>&1; then
|
|
|
|
|
|
FPING_PATH=$(command -v fping)
|
|
|
|
|
|
sed -i "s|^#\?FpingLocation=.*|FpingLocation=$FPING_PATH|" /etc/zabbix/zabbix_server.conf
|
|
|
|
|
|
fi
|
|
|
|
|
|
if command -v fping6 >/dev/null 2>&1; then
|
|
|
|
|
|
FPING6_PATH=$(command -v fping6)
|
|
|
|
|
|
sed -i "s|^#\?Fping6Location=.*|Fping6Location=$FPING6_PATH|" /etc/zabbix/zabbix_server.conf
|
|
|
|
|
|
fi
|
|
|
|
|
|
msg_ok "Updated Zabbix"
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Starting Services"
|
2025-10-11 22:53:10 +02:00
|
|
|
|
$STD systemctl start zabbix-server
|
|
|
|
|
|
if systemctl list-unit-files | grep -q zabbix-agent2; then
|
|
|
|
|
|
$STD systemctl start zabbix-agent2
|
|
|
|
|
|
else
|
|
|
|
|
|
$STD systemctl start zabbix-agent
|
|
|
|
|
|
fi
|
2025-04-07 12:50:37 +02:00
|
|
|
|
systemctl restart apache2
|
2025-09-23 10:46:32 +02:00
|
|
|
|
msg_ok "Started Services"
|
2024-11-27 15:52:53 +01:00
|
|
|
|
|
2025-04-07 12:50:37 +02:00
|
|
|
|
msg_info "Cleaning Up"
|
2025-09-23 10:46:32 +02:00
|
|
|
|
rm -rf /tmp/zabbix-release_latest+debian13_all.deb
|
2025-10-11 22:53:10 +02:00
|
|
|
|
$STD apt -y autoremove
|
|
|
|
|
|
$STD apt -y autoclean
|
|
|
|
|
|
$STD apt -y clean
|
2025-04-07 12:50:37 +02:00
|
|
|
|
msg_ok "Cleaned"
|
2025-10-30 09:24:16 -07:00
|
|
|
|
msg_ok "Updated successfully!"
|
2025-04-07 12:50:37 +02:00
|
|
|
|
exit
|
2024-06-11 13:30:12 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
start
|
|
|
|
|
|
build_container
|
|
|
|
|
|
description
|
|
|
|
|
|
|
|
|
|
|
|
msg_ok "Completed Successfully!\n"
|
2024-12-16 12:42:51 +01:00
|
|
|
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
|
|
|
|
|
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
|
2025-04-01 10:51:52 +02:00
|
|
|
|
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}/zabbix${CL}"
|