Skip to content

Instantly share code, notes, and snippets.

View KitsuneAlex's full-sized avatar
🦊
YIP YAP YOP

Alexander Hinze KitsuneAlex

🦊
YIP YAP YOP
View GitHub Profile
@KitsuneAlex
KitsuneAlex / zabbix_stack.sh
Last active July 26, 2023 22:10
Zabbix Docker Installer
#!/bin/bash
# Simple script for quickly installing and setting up a Zabbix stack.
# This includes database, snmptraps, server and web interface.
# A local agent can be installed optionally.
read -p "Zabbix version (default 'ubuntu-6.4-latest'): " version
if [ -z "${version}" ]; then
echo "Using default Zabbix version"
export ZSTACK_VERSION="ubuntu-6.4-latest"