• Install and configure Zabbix for your platform

    a. Become root user

    Start new shell session with root privileges.

    $ sudo -s
    b. Install Zabbix repository
    # wget https://repo.zabbix.com/zabbix/6.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_latest_6.0+ubuntu20.04_all.deb
    # dpkg -i zabbix-release_latest_6.0+ubuntu20.04_all.deb
    # apt update
    c. Install Zabbix agent 2

    Install zabbix-agent2 package.

    # apt install zabbix-agent2
    d. Install Zabbix agent 2 plugins

    You may want to install Zabbix agent 2 plugins.

    # apt install zabbix-agent2-plugin-mongodb zabbix-agent2-plugin-mssql zabbix-agent2-plugin-postgresql
    e. Start Zabbix agent 2 process

    Start Zabbix agent 2 process and make it start at system boot.

    # systemctl restart zabbix-agent2
    # systemctl enable zabbix-agent2