91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

發布時間:2022-04-13 10:59:01 來源:億速云 閱讀:143 作者:iii 欄目:編程語言

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

 一、系統環境

cat /etc/redhat-release

centos linux release 7.3.1611 (core)

關閉防火墻及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

二、數據庫安裝及配置

1、mariadb概述

mariadb數據庫管理系統是mysql的一個分支,主要由開源社區在維護,采用gpl授權許可。
開發這個分支的原因是:甲骨文公司收購了mysql后,有將mysql閉源的潛在風險,因此社區采用分支的方式來避開這個風險。

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

2、安裝mariadb

yum install mariadb-server mariadb -y

mariadb數據庫的相關命令是:

systemctl start mariadb #啟動mariadb
systemctl stop mariadb #停止mariadb
systemctl restart mariadb #重啟mariadb
systemctl enable mariadb #設置開機啟動

三、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、創建數據庫

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

4、導入數據

復制代碼 代碼如下:


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

5、配置數據庫用戶及密碼

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并設置開機啟動

systemctl enable zabbix-server
systemctl start zabbix-server

7、編輯zabbix前端php配置,更改時區

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并設置開機啟動

systemctl start httpd
systemctl enable httpd

四、安裝zabbix web

1、瀏覽器訪問,并進行安裝http://172.16.8.254/zabbix/

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

2、點擊next會出現檢查狀態

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

3、檢查系統環境設置,必須全部都為ok,才能繼續

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

4、輸入連接到數據庫詳細信息。zabbix數據庫必須已經創建好

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

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

5、連接zabbix服務細節,如果沒有改變可選擇默認

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 默認用戶admin 默認密碼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并設置開機啟動

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

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宁化县| 松阳县| 剑川县| 普兰店市| 潍坊市| 泰兴市| 永宁县| 洞口县| 五寨县| 津市市| 永善县| 巴彦县| 邵阳县| 龙门县| 阿鲁科尔沁旗| 通城县| 元江| 法库县| 丰镇市| 寻乌县| 东乡县| 余江县| 晋中市| 大埔区| 娱乐| 凤庆县| 桃江县| 临江市| 左权县| 苗栗县| 阿坝县| 福州市| 和硕县| 石城县| 靖州| 孝感市| 西青区| 封丘县| 邻水| 扶余县| 石景山区|