CentOS 8 install ZABBIX4.4 guide

zabbix server environment platform

ZABBIX version 4.4

CentOS8

MySQL 8

# rpm -Uvh https://repo.zabbix.com/zabbix/4.4/rhel/8/x86_64/zabbix-release-4.4-1.el8.noarch.rpm

# dnf clean all

b. Install Zabbix server, web front end, agent

# dnf -y install zabbix-server-mysql zabbix-web-mysql zabbix-apache-conf zabbix-agent

c. Create the initial database

# sudo yum -y install @mysql:8.0

Activate the MySQL service:

sudo systemctl status --now mysql

Confirm service status:

sudo systemctl status mysqld

Initialize MySQL database

mysql_secure_installation

Note, please make sure:

Set the password of the root user of the database.

Delete anonymous users.

Forbid root user to log in remotely.

Delete the test database and access it.

MySQL user root test access permissions:

# mysql -uroot -p

password

Create database

mysql> create database zabbix character set utf8 collate utf8_bin;

Create user

mysql> create user 'zabbix'@'%' identified by 'zabbix_Password'

Authorized user

mysql> grant all privileges on zabbix.* to 'zabbix'@'%'with grant option;

mysql> flush privileges;

mysql> quit;

Import the initial structure and data, the system will prompt you to enter the newly created password.

# zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix

d. Configure the database for Zabbix server

Edit the configuration file /etc/zabbix/zabbix_server.conf

DBPassword=password

e. Configure PHP for Zabbix frontend

Edit the configuration file /etc/php-fpm.d/zabbix.conf, uncomment and set the correct time zone

; php_value[date.timezone] = Asia/Shanghai

f. Start the Zabbix server and agent processes, and set them to start at boot:

# systemctl restart zabbix-server zabbix-agent httpd php-fpm

# systemctl enable zabbix-server zabbix-agent httpd php-fpm

Now your Zabbix server has been installed and started to run

Configure Zabbix frontend

Connect to the newly installed Zabbix frontend: http://server_ip_or_name/zabbix

Follow the steps in the Zabbix file: Install the front end

Can be viewed through the user data table

Default account: Admin

Default password: zabbix

Start using Zabbix

View the quick start guide

to sum up

The above is the installation of ZABBIX4.4 for CetnOS 8 brought to you by the editor, I hope it will help you!

Recommended Posts

CentOS 8 install ZABBIX4.4 guide
CentOS 7.4 install Zabbix 3.4
CentOS 7.3 install Zabbix3
centos 6.5 install zabbix 4.4
Centos 7 install Zabbix 3.4 original
1.5 Install Centos7
Install Zabbix 3.4 based on CentOS 7
CentOS 8.0.1905 install ZABBIX4.4 version (verified)
Centos5 installation guide
Centos6 install Python2.7.13
Centos7.3 install nginx
CentOS7.2 install Mysql5.7.13
CentOS install Redmine
Centos7 install Python 3.6.
CentOS7 install MySQL
Centos7 install protobuf
CentOS 7 install Docker
CentOS7 install GlusterFS
CentOS7 install Docker
Centos6.5 install Tomcat
CentOS install Python 3.6
Vmware install CentOS6
centos7 install docker-ce 18.01.0
CentOS 7.2 install MariaDB
Ubuntu install guide
CentOS 7 install Hadoop 3.0.0
Centos7 install Python2.7
Centos 7.6 install seleniu
Centos7 install LAMP+PHPmyadmin
CentOS install mysql
CentOS install openjdk 1.8
CENTOS6.5 install CDH5.12.1 (1)
CentOS install PHP
CentOS6 install mist.io
Centos7 install Docker
CentOS7 install mysql
centOs install rabbitMQ
CentOS 7 install MySQL 5.6
Centos7 install Nginx
CentOS6.5 install CDH5.13
Centos7 install docker18
Centos install Python3
centos7 install docker
CentOS install jdk
centos7 install nginx-rtmp
CentOS8 install MySQL8.0
Centos6.3 install KVM
CentOS install PostgreSQL 9.1
CentOS7 install mysql8
CentOS 7 install Java 1.8
CentOS8 install fastdfs6.06
CentOS 7 install Gitlab
Centos 7 install PostgreSQL
CentOS7 install MySQL8
CentOS 7 install Java 1.8
CentOS 6 install Docker
Centos8 install Docker
CentOS6.8 install python2.7
CentOS install nodejs 8
CentOS6.5 install GNS3
centos 7.5 install mysql5.7.17