溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Centos怎么安裝部署最新版Zabbix3.4

發(fā)布時(shí)間:2022-04-13 10:59:01 來源:億速云 閱讀:134 作者:iii 欄目:編程語言

本篇內(nèi)容介紹了“Centos怎么安裝部署最新版Zabbix3.4”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

 一、系統(tǒng)環(huán)境

cat /etc/redhat-release

centos linux release 7.3.1611 (core)

關(guān)閉防火墻及selinux

systemctl stop firewalld.service
systemctl disable firewalld.service
sed -i 's/selinux=enforcing/selinux=disabled/' /etc/selinux/config
grep selinux=disabled /etc/selinux/config
setenforce 0

二、數(shù)據(jù)庫安裝及配置

1、mariadb概述

mariadb數(shù)據(jù)庫管理系統(tǒng)是mysql的一個(gè)分支,主要由開源社區(qū)在維護(hù),采用gpl授權(quán)許可。
開發(fā)這個(gè)分支的原因是:甲骨文公司收購了mysql后,有將mysql閉源的潛在風(fēng)險(xiǎn),因此社區(qū)采用分支的方式來避開這個(gè)風(fēng)險(xiǎn)。

mariadb的目的是完全兼容mysql,包括api和命令行,使之能輕松成為mysql的代替品。

2、安裝mariadb

yum install mariadb-server mariadb -y

mariadb數(shù)據(jù)庫的相關(guān)命令是:

systemctl start mariadb #啟動mariadb
systemctl stop mariadb #停止mariadb
systemctl restart mariadb #重啟mariadb
systemctl enable mariadb #設(shè)置開機(jī)啟動

三、zabbix3.4安裝及配置

1、zabbix3.4新功能概述

  • remote command support through proxies

  • parallel processing of alerts

  • being notified on problem acknowledgement

  • item value preprocessing

    • new preprocessing options

  • configurable jmx endpoints

  • jmx low-level discovery

  • pcre library for regular expressions

  • url-encoding support in web monitoring

    • automatic url-encoding

    • flexible url-encoding for variables

    • unicode support in domain names

  • support of macros and time suffixes in time periods

  • host macro support in event tags

  • frontend improvements

    • dropping ie9 and ie10 support

    • full cloning of screens and maps

    • unified style for radio buttons and checkboxes

    • applying same permissions to nested host groups

    • increased field sizes

    • miscellaneous

  • daemon improvements

    • ipmi polling

    • configuration parameters

    • more information on agent metric thread crashes

  • item changes/improvements

  • low-level discovery

  • return code check for scripts and commands

zabbixe中文文檔

2、zabbix3.4安裝

rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-1.el7.centos.noarch.rpm
yum install zabbix-server-mysql zabbix-web-mysql -y

3、創(chuàng)建數(shù)據(jù)庫

create database zabbix character set utf8 collate utf8_bin;
grant all privileges on zabbix.* to zabbix@localhost identified by 'zabbix';

4、導(dǎo)入數(shù)據(jù)

復(fù)制代碼 代碼如下:


zcat /usr/share/doc/zabbix-server-mysql-3.4.0/create.sql.gz | mysql -uzabbix -pzabbix zabbix

5、配置數(shù)據(jù)庫用戶及密碼

grep -n '^'[a-z] /etc/zabbix/zabbix_server.conf
38:logfile=/var/log/zabbix/zabbix_server.log
49:logfilesize=0
72:pidfile=/var/run/zabbix/zabbix_server.pid
99:dbname=zabbix
115:dbuser=zabbix
123:dbpassword=zabbix
314:snmptrapperfile=/var/log/snmptrap/snmptrap.log
432:timeout=4
474:alertscriptspath=/usr/lib/zabbix/alertscripts
484:externalscripts=/usr/lib/zabbix/externalscripts
520:logslowqueries=3000

6、啟動zabbix server并設(shè)置開機(jī)啟動

systemctl enable zabbix-server
systemctl start zabbix-server

7、編輯zabbix前端php配置,更改時(shí)區(qū)

vim /etc/httpd/conf.d/zabbix.conf
php_value date.timezone asia/shanghai

8、selinux配置

setsebool -p httpd_can_connect_zabbix on
setsebool -p httpd_can_network_connect_db on

9、啟動httpd并設(shè)置開機(jī)啟動

systemctl start httpd
systemctl enable httpd

四、安裝zabbix web

1、瀏覽器訪問,并進(jìn)行安裝http://172.16.8.254/zabbix/

Centos怎么安裝部署最新版Zabbix3.4

2、點(diǎn)擊next會出現(xiàn)檢查狀態(tài)

Centos怎么安裝部署最新版Zabbix3.4

3、檢查系統(tǒng)環(huán)境設(shè)置,必須全部都為ok,才能繼續(xù)

Centos怎么安裝部署最新版Zabbix3.4

4、輸入連接到數(shù)據(jù)庫詳細(xì)信息。zabbix數(shù)據(jù)庫必須已經(jīng)創(chuàng)建好

Centos怎么安裝部署最新版Zabbix3.4

Centos怎么安裝部署最新版Zabbix3.4

5、連接zabbix服務(wù)細(xì)節(jié),如果沒有改變可選擇默認(rèn)

Centos怎么安裝部署最新版Zabbix3.4

7、完成安裝,會將在/etc/zabbix/web/zabbix.conf.php生成配置文件

congratulations! you have successfully installed zabbix frontend.
configuration file "/etc/zabbix/web/zabbix.conf.php" created.

Centos怎么安裝部署最新版Zabbix3.4

8、登錄最新版zabbix3.4 默認(rèn)用戶admin 默認(rèn)密碼zabbix

Centos怎么安裝部署最新版Zabbix3.4

五、zabbxi-agent安裝及配置

1、安裝zabbxi-agent

yum install zabbix-agent -y

2、配置zabbxi-agent

grep -n '^'[a-z] /etc/zabbix/zabbix_agentd.conf 
13:pidfile=/var/run/zabbix/zabbix_agentd.pid
32:logfile=/var/log/zabbix/zabbix_agentd.log
43:logfilesize=0
97:server=172.16.8.254
138:serveractive=172.16.8.254
149:hostname=zabbix server
267:include=/etc/zabbix/zabbix_agentd.d/*.conf

3、啟動zabbxi-agent并設(shè)置開機(jī)啟動

systemctl enable zabbix-agent.service
systemctl restart zabbix-agent.service

“Centos怎么安裝部署最新版Zabbix3.4”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI