Get Zabbix

  1. Elige tu plataforma

    Versión Zabbix
    Distribución de SO
    Versión del sistema operativo
    ZABBIX COMPONENT
    Base de datos
    Servidor web
  2. Install and configure Zabbix for your platform

    a. Instalar el repositorio de Zabbix

    Disable Zabbix packages provided by EPEL, if you have it installed. Editar archivo /etc/yum.repos.d/epel.repo and add the following statement.

    [epel]
    ...
    excludepkgs=zabbix*

    Proceed with installing zabbix repository.

    # rpm -Uvh https://repo.zabbix.com/zabbix/7.2/release/alma/9/noarch/zabbix-release-latest-7.2.el9.noarch.rpm
    # dnf clean all
    b. Instala el servidor, la interfaz y el agente de Zabbix
    # dnf install zabbix-server-mysql zabbix-web-mysql zabbix-apache-conf zabbix-sql-scripts zabbix-selinux-policy zabbix-agent
    c. Crear base de datos inicial

    Make sure you have database server up and running.

    Ejecuta lo siguiente en el host de base de datos.

    # mysql -uroot -p
    password
    mysql> create database zabbix character set utf8mb4 collate utf8mb4_bin;
    mysql> create user zabbix@localhost identified by 'password';
    mysql> grant all privileges on zabbix.* to zabbix@localhost;
    mysql> set global log_bin_trust_function_creators = 1;
    mysql> quit;

    En el servidor Zabbix, importe el esquema y los datos iniciales. Se le pedirá que ingrese la contraseña recién creada.

    # zcat /usr/share/zabbix/sql-scripts/mysql/server.sql.gz | mysql --default-character-set=utf8mb4 -uzabbix -p zabbix

    Disable log_bin_trust_function_creators option after importing database schema.

    # mysql -uroot -p
    password
    mysql> set global log_bin_trust_function_creators = 0;
    mysql> quit;
    d. Configurar la base de datos para el servidor Zabbix

    Editar archivo /etc/zabbix/zabbix_server.conf

    DBPassword=password
    e. Inicia los procesos del agente y del servidor Zabbix

    Inicia los procesos del agente y del servidor Zabbix y configúralos para que se inicien con el sistema.

    # systemctl restart zabbix-server zabbix-agent httpd php-fpm
    # systemctl enable zabbix-server zabbix-agent httpd php-fpm
    f. Open Zabbix UI web page

    The default URL for Zabbix UI when using Apache web server is http://host/zabbix

  3. Comienza a usar Zabbix

    Leer en la documentación: Guía de inicio rápido

giItT1WQy@!-/#giItT1WQy@!-/#

¿Necesitas ayuda del equipo de Zabbix?