您好,登錄后才能下訂單哦!
本篇內容介紹了“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/
2、點擊next會出現檢查狀態
3、檢查系統環境設置,必須全部都為ok,才能繼續
4、輸入連接到數據庫詳細信息。zabbix數據庫必須已經創建好
5、連接zabbix服務細節,如果沒有改變可選擇默認
7、完成安裝,會將在/etc/zabbix/web/zabbix.conf.php生成配置文件
congratulations! you have successfully installed zabbix frontend. configuration file "/etc/zabbix/web/zabbix.conf.php" created.
8、登錄最新版zabbix3.4 默認用戶admin 默認密碼zabbix
五、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”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。