Install Zabbix 7.0 LTS on Ubuntu as docker containers
Introduction Info Zabbix is a powerful open-source network monitoring solution. This guide will walk you through the installation of Zabbix Network Management System (NMS) 7.0 on Ubuntu using Docker Compose, along with importing hosts from a CSV file. Prerequisites Warning Ensure you meet the following prerequisites before proceeding: Ubuntu 20.04, 22.04, or 24.04 installed Regular user with sudo rights 2 CPUs / vCPUs 4 GB RAM or more 20 GB Hard drive Internet Connection Installation Steps Step 1: Install Docker and Docker Compose Note Login to your Ubuntu system and run the following commands to install Docker and Docker Compose: bash $ sudo apt update $ sudo apt install -y apt-transport-https ca-certificates curl software-properties-common $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg $ echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null $ sudo apt update $ sudo apt install -y docker-ce docker-ce-cli containerd.io $ sudo systemctl start docker $ sudo systemctl enable docker $ sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose $ sudo chmod +x /usr/local/bin/docker-compose Verify the installation: ...