This commit is contained in:
stirelshka8 2024-07-14 07:44:13 +03:00
parent 12e46c60c4
commit 78a5149c2c
2 changed files with 7 additions and 0 deletions

1
.gitignore vendored
View File

@ -0,0 +1 @@
.idea

6
install_agent.sh Normal file → Executable file
View File

@ -12,6 +12,8 @@ ROOT_UID=0
ZABBIX_SERVER_IP="192.168.1.56"
ZABBIX_CONFIG_FILE="/etc/zabbix/zabbix_agentd.conf"
CURRENT_DATE=$(date +"%d-%m-%Y %H:%M:%S")
if [ "$UID" -ne "$ROOT_UID" ]; then
echo -e "${RED}Please run script as root user.${DEFAULT}"; exit 1
fi
@ -68,4 +70,8 @@ fi
systemctl restart zabbix-agent
check_success "Restarting Zabbix Agent service"
echo "Installation finished successfully successfully at: $CURRENT_DATE" >> install-agent.log
echo "Server IP: $ZABBIX_SERVER_IP" >> install-agent.log
echo -e "${GREEN}Zabbix Agent Installed and Configured Successfully${DEFAULT}"