Skip to content

Instantly share code, notes, and snippets.

@dbannik
dbannik / zabbix-install.sh
Last active March 29, 2023 13:37
Install zabbix 3.2 for ubuntu 16.04
#!/bin/sh
apt update && apt install wget htop curl nano ssh -y
wget http://repo.zabbix.com/zabbix/3.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.2-1+xenial_all.deb
dpkg -i zabbix-release_3.2-1+xenial_all.deb && apt-get update
export DEBIAN_FRONTEND=noninteractive
apt install zabbix-server-mysql zabbix-frontend-php -y