Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
mkdir /docker/zabbix-db /docker/zabbix-server /docker/zabbix-web
docker compose -f zabbix.yml up -d
docker logs zabbix-server --follow
docker inspect   -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' zabbix-server

setup client

for Ubuntu 24.04 (25.10 is also work with those packages)


Code Block
wget#wget https://repo.zabbix.com/zabbix/7.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_7.0-1+ubuntu24.04_all.deb
wget https://repo.zabbix.com/zabbix/7.4/release/ubuntu/pool/main/z/zabbix-release/zabbix-release_latest_7.4+ubuntu24.04_all.deb
dpkg#dpkg -i zabbix-release_7.0-1+ubuntu24.04_all.deb
dpkg -i zabbix-release_latest_7.4+ubuntu24.04_all.deb
apt update
apt install zabbix-agent2
#vi /etc/zabbix/zabbix_agent2.conf
systemctl status zabbix-agent2.service

...