đŸ–Ĩī¸Add a New Host For Monitoring Zabbix

Configuration AWS

Create New EC2

Name : Host-Debian 
OS : Debian12 (t2.micro) 
Keypair : Vockey 
Firewall : SG-All TCP Open

Edit Inbound SG-All TCP Open

Add Rules

All Trafic | Custom | SG-All TCP Open

Configuration EC2

Access "Host-Debian" From SSH

cd Downloads
ssh -i labsuser.pem admin@<ip-addr-pub-ec2-debian>

Install Zabbix

Change to User Root

sudo -i

Install Package for zabbix

apt update && apt upgrade -y
wget https://repo.zabbix.com/zabbix/6.4/debian/pool/main/z/zabbix-release/zabbix-release_6.4-1+debian12_all.deb
dpkg -i zabbix-release_6.4-1+debian12_all.deb
apt install zabbix-agent -y

Restart service for zabbix

systemctl restart zabbix-agent
systemctl start zabbix-agent

Login To Dashboard Zabbix

<ip-addr-pub-ec2-zabbix>
User : Admin
Pass : zabbix

Add Monitoring

Add Debian12 as zabbix monitoring Configuration> Hosts> Create Host

Host name : Host-Debian
Visible name : Host-Debian
Templates : Linux by Zabbix agent
Groups : Linux servers
Interfaces :
    Agent : 
    IP Address: 172.31.89.127 <ip-addr-priv-ec2-debian>
    DNS Name : ip-172-31-89-127.ec2.internal <dns-priv-ec2-debian>
        
Description
Server-Debian host on Amazon Web Service

Last updated