<返回更多

Centos 8 安装 Zabbix 4.4

2020-03-18    
加入收藏

1、选择安装zabbix服务器的平台

此处我们选择的是 zabbix 4.4 + centos 8 + MySQL + Apache

2、在平台上安装和配置zabbix服务

dnf update -y
vim /etc/selinux/config

# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#     enforcing - SELinux security policy is enforced.
#     permissive - SELinux prints warnings instead of enforcing.
#     disabled - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of these three values:
#     targeted - Targeted processes are protected,
#     minimum - Modification of targeted policy. Only selected processes are protected. 
#     mls - Multi Level Security protection.
SELINUXTYPE=targeted
rpm -Uvh https://repo.zabbix.com/zabbix/4.4/rhel/8/x86_64/zabbix-release-4.4-1.el8.noarch.rpm

dnf clean all
dnf install zabbix-server-mysql zabbix-web-mysql zabbix-apache-conf zabbix-agent mariadb-server mairadb -y
systemctl start mairadb httpd

systemctl enable mariadb httpd
mysql -u root

update user set password = password("zabbixpasswd")where user = 'root';

flush privileges;

quit;

或者使用 mysql_secure_installation 根据指引一步一步来。
mysql -uroot -p zabbixpasswd
mysql> create database zabbix character set utf8 collate utf8_bin;
mysql> create user 'zabbix'@'localhost' identified by 'zabbixpasswd';
mysql> grant all privileges on zabbix.* to 'zabbix'@'localhost';
mysql> quit;
zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
vi /etc/zabbix/zabbix_server.conf
DBHost=localhost
DBName=zabbix
DBUser=zabbix
DBPassword=zabbixpasswd
vim /etc/php.ini

找到 date.timezone

date.timezone = Asia/Shanghai
php_value[max_execution_time] = 600
php_value[memory_limit] = 512M
php_value[post_max_size] = 64M
php_value[upload_max_filesize] = 200M
php_value[max_input_time] = 300
php_value[max_input_vars] = 10000
; php_value[date.timezone] = Asia/Shanghai
systemctl restart zabbix-server zabbix-agent httpd php-fpm
systemctl enable zabbix-server zabbix-agent httpd php-fpm
添加端口:

firewall-cmd --add-port={10050/tcp,10051/tcp} --permanent

firewall-cmd --add-service={http,https} --permanent

systemctl restart firewalld



关闭防火墙:

systemctl stop firewalld(临时)

systemctl disable firewalld(永久)
dnf install langpacks-zh_CN.noarch -y

http://x.x.x.x/zabbix

 

Centos 8 安装 Zabbix 4.4

Zabbix 4.4.6. © 2001–2020, Zabbix SIA

声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>