Skip to content

Instantly share code, notes, and snippets.

@parallaxhub
Created October 24, 2022 10:01
Show Gist options
  • Save parallaxhub/3b40492f24334cf90b28ab99896a8129 to your computer and use it in GitHub Desktop.
Save parallaxhub/3b40492f24334cf90b28ab99896a8129 to your computer and use it in GitHub Desktop.
Zabbix Installation And Configuration
#Install Zabbix server, frontend, and agent
wget https://repo.zabbix.com/zabbix/6.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_6.0-4+ubuntu$(lsb_release -rs)_all.deb
sudo dpkg -i zabbix-release_6.0-4+ubuntu$(lsb_release -rs)_all.deb
sudo apt update
sudo apt -y install zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-sql-scripts zabbix-agent
#Configure firewall
ufw allow 10050/tcp
ufw allow 10051/tcp
ufw allow 80/tcp
ufw reload
sudo systemctl restart zabbix-server zabbix-agent
sudo systemctl enable zabbix-server zabbix-agent
@parallaxhub
Copy link
Author

Screenshot from 2022-10-24 14-24-28
Screenshot from 2022-10-24 14-28-11
Screenshot from 2022-10-24 14-29-16

1.mp4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment