Created
October 24, 2022 10:01
-
-
Save parallaxhub/3b40492f24334cf90b28ab99896a8129 to your computer and use it in GitHub Desktop.
Zabbix Installation And Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
1.mp4