zabbix是一個基于WEB界面的提供分布式系統(tǒng)監(jiān)視以及網(wǎng)絡(luò)監(jiān)視功能的企業(yè)級的開源解決方案。zabbix能監(jiān)視各種網(wǎng)絡(luò)參數(shù),保證服務(wù)器系統(tǒng)的安全運營;并提供靈活的通知機制以讓系統(tǒng)管理員快速定位/解決存在的各種問題。
站在用戶的角度思考問題,與客戶深入溝通,找到昆山網(wǎng)站設(shè)計與昆山網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都做網(wǎng)站、網(wǎng)站設(shè)計、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、域名注冊、網(wǎng)絡(luò)空間、企業(yè)郵箱。業(yè)務(wù)覆蓋昆山地區(qū)。
zabbix由2部分構(gòu)成,zabbix server與可選組件zabbix agent。
zabbix server可以通過SNMP,zabbix agent,ping,端口監(jiān)視等方法提供對遠(yuǎn)程服務(wù)器/網(wǎng)絡(luò)狀態(tài)的監(jiān)視,數(shù)據(jù)收集等功能,它可以運行在Linux,Solaris,HP-UX,AIX,F(xiàn)ree BSD,Open BSD,OS X等平臺上。
最近公司部署zabbix用于監(jiān)控服務(wù)器,記錄下自己操作信息,下面是在測試環(huán)境上安裝的一個操作步驟:
一、安裝環(huán)境:
1、系統(tǒng)環(huán)境:CentOS Linux release 7.5.1804 (Core)?
2、zabbix版本:zabbix-release-3.4-2.el7.noarch
3、測試環(huán)境,關(guān)閉了防火墻(生產(chǎn)環(huán)境不建議關(guān)閉,根據(jù)需求設(shè)置防火墻)
[root@centos78 ~]# systemctl stop firewlld.service? ? ? ?關(guān)閉防火墻
[root@centos78 ~]# systemctl disable firewalld.service? 開機禁用防火墻啟動
4、關(guān)閉Selinux
[root@centos78 ~]# sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
[root@centos78 ~]# setenforce 0
二、安裝數(shù)據(jù)庫
1、指定下載最新的10.2版本,編輯安裝包路徑下載路徑:
?[root@centos78 ~]# vim /etc/yum.repos.d/base.repo? (沒有base.repo可以自己創(chuàng)建)
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.2/centos7-amd64
gpgkey = https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck = 1
2、安裝10.2的mariadb
yum install mariadb-server
3、設(shè)置mariadb
[root@centos78 ~]# systemctl start mariadb? 啟動
[root@centos78 ~]# systemctl enable mariadb 設(shè)置開機啟動
[root@centos78 ~]# systemctl status mariadb? ?查看啟動狀態(tài)
三、Zabbix3.4安裝及配置
1、下載和安裝Zabbix
[root@centos78 ~]# rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm? (下載Zabbix最新版本)
[root@centos78 ~]# yum install zabbix-server-MySQL zabbix-web-mysql -y
2、創(chuàng)建數(shù)據(jù)和導(dǎo)入數(shù)據(jù)
[root@centos78 ~]# mysql
Welcome to the MariaDB monitor.? Commands end with ; or \g.
Your MariaDB connection id is 8
Server version: 10.2.17-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> create database zabbix character set utf8 collate utf8_bin;? ? ?創(chuàng)建數(shù)據(jù)庫zabbix
Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]> grant all privileges on zabbix.* to zabbix@localhost identified by 'zabbix';? 設(shè)置zabbix權(quán)限和密碼
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> exit? ? 退出
Bye
導(dǎo)入數(shù)據(jù)庫
[root@centos78 ~]# zcat /usr/share/doc/zabbix-server-mysql-3.4.13/create.sql.gz? |mysql -uzabbix -pzabbix zabbix
配置數(shù)據(jù)庫用戶和密碼
[root@centos78 ~]# vim /etc/zabbix/zabbix_server.conf? ?修改配置文件,設(shè)置密碼
DBPassword=zabbix
[root@centos78 ~]# grep -n '^'[a-Z] /etc/zabbix/zabbix_server.conf??查看關(guān)鍵配置信息
38:LogFile=/var/log/zabbix/zabbix_server.log
49:LogFileSize=0
72:PidFile=/var/run/zabbix/zabbix_server.pid
82:SocketDir=/var/run/zabbix
101:DBName=zabbix? ? ? ? ? ? ? ? ? ? ? ?數(shù)據(jù)庫名稱
117:DBUser=zabbix? ? ? ? ? ? ? ? ? ? ? ? ? 用戶名稱
126:DBPassword=zabbix? ? ? ? ? ? ? ? ? 數(shù)據(jù)庫密碼
330:SNMPTrapperFile=/var/log/snmptrap/snmptrap.log
448:Timeout=4
490:AlertScriptsPath=/usr/lib/zabbix/alertscripts
500:ExternalScripts=/usr/lib/zabbix/externalscripts
536:LogSlowQueries=3000
啟動zabbix和設(shè)置開機啟動
[root@centos78 ~]# systemctl start zabbix-server
[root@centos78 ~]# systemctl enable zabbix-server
編輯Zabbix前端PHP配置,更改時區(qū)
[root@centos78 ~]# vim /etc/httpd/conf.d/zabbix.conf
? ? <IfModule mod_php5.c>
? ? ? ? php_value max_execution_time 300
? ? ? ? php_value memory_limit 128M
? ? ? ? php_value post_max_size 16M
? ? ? ? php_value upload_max_filesize 2M
? ? ? ? php_value max_input_time 300
? ? ? ? php_value max_input_vars 10000
? ? ? ? php_value always_populate_raw_post_data -1
? ? ? ? php_value date.timezone Asia/Shanghai? ? ? ? ?? #修改為亞洲上海
? ? </IfModule>
啟動http和設(shè)置開啟啟動
[root@centos78 ~]# systemctl start httpd
[root@centos78 ~]# systemctl enable httpd
四、安裝Zabbix Web
1、通過瀏覽器訪問,并配置信息
[root@centos78 ~]# cat /etc/zabbix/web/zabbix.conf.php? ? 查看生成配置文件信息
<?php
// Zabbix GUI configuration file.
global $DB;
$DB['TYPE']? ? ?= 'MYSQL';
$DB['SERVER']? ?= 'localhost';
$DB['PORT']? ? ?= '0';
$DB['DATABASE'] = 'zabbix';
$DB['USER']? ? ?= 'zabbix';
$DB['PASSWORD'] = 'zabbix';
// Schema name. Used for IBM DB2 and PostgreSQL.
$DB['SCHEMA'] = '';
$ZBX_SERVER? ? ? = 'localhost';
$ZBX_SERVER_PORT = '10051';
$ZBX_SERVER_NAME = 'zabbix';
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
登錄網(wǎng)站:http://192.168.1.1/zabbix
登錄最新版Zabbix3.4? 默認(rèn)用戶Admin? 默認(rèn)密碼zabbix
輸入用戶名和密碼以后點擊 sign in
1,裝機后修改系統(tǒng)設(shè)置
修改主機名:vim /etc/hostname ,修改為zabbix_test.com
關(guān)閉防火墻:
[root@localhost?~]#?systemctl?stop?firewalld.service [root@localhost?~]#?systemctl?disable?firewalld.service Removed?symlink?/etc/systemd/system/multi-user.target.wants/firewalld.service. Removed?symlink?/etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service
關(guān)閉selinux : vim /etc/selinux/config,修改為:SELINUX=disabled
修改/etc/hosts文件
yum源使用阿里云的yum源:http://mirrors.aliyun.com/repo/找到對應(yīng)的系統(tǒng)版本,替換/etc/yum.repos.d/CentOS-Base.repo,yun makecache。http://mirrors.aliyun.com/help/centos(阿里云);http://mirrors.163.com/.help/centos.html(163源)
重啟系統(tǒng)
2,安裝MariaDB
yum install mariadb-server mariadb
mariadb數(shù)據(jù)庫的相關(guān)命令是:
systemctl?start?mariadb???#啟動MariaDB systemctl?stop?mariadb????#停止MariaDB systemctl?restart?mariadb???#重啟MariaDB systemctl?enable?mariadb??#設(shè)置開機啟動
默認(rèn)安裝的root密碼是空白,以下命令更改密碼
[root@zabbix_test?~]#?mysqladmin?-u?root?password?"password"???#更改密碼為password
?
登錄數(shù)據(jù)庫,mysql -uroot -p
創(chuàng)建zabbix數(shù)據(jù)庫 zabbix數(shù)據(jù)庫的密碼為zabbix
create?database?zabbix?character?set?utf8?collate?utf8_bin; grant?all?privileges?on?zabbix.*?to?zabbix@localhost?identified?by?'zabbix';
3,? 安裝zabbix3.4?https://www.zabbix.com/download
rpm -i http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm
yum install zabbix-server-mysql zabbix-web-mysql zabbix-agent?
yum install zabbix-get zabbix-sender zabbix-java-gateway (選擇安裝)
4,導(dǎo)入數(shù)據(jù)
zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
5,配置zabbix的數(shù)據(jù)庫設(shè)置
vim /etc/zabbix/zabbix_server.conf? 主要配置數(shù)據(jù)庫的用戶名,庫名,密碼,端口等,其它設(shè)置也可以安裝情況配置
6,啟動zabbix 并設(shè)置開機啟動
?
systemctl?enable?zabbix-server systemctl?start?zabbix-server
systemctl?enable?zabbix-agent systemctl?start?zabbix-agent
?
7,?編輯Zabbix前端PHP配置,主要是更改時區(qū)
vim /etc/httpd/conf.d/zabbix.conf
修改此行:php_value date.timezone Asia/Shanghai
8,啟動httpd并設(shè)置開機啟動
systemctl start httpd
systemctl enable httpd
9,瀏覽器訪問并配置
http://IP/zabbix/
?
這里的Name待安裝完成后顯示在頁面的右上角
使用Admin/zabbix初始管理員密碼登錄
?
?10 ,修改為中文界面
在Adminstration-->Users下面找到對應(yīng)的用戶,點進去,找到Language,選擇Chinese(zh_CN),更新后,刷新頁面即可切換為中文界面。
11,中文顯示亂碼問題
一種原因是數(shù)據(jù)庫創(chuàng)建的時候需要設(shè)置為支持utf8
第二種情況如下:
原因是zabbix前端默認(rèn)的字體對中文的支持不好,需要替換下
在自己的windows電腦上,打開C:\Windows\Fonts,里面全是字體文件,找到想要的,我這里選擇是常規(guī)楷體。
將此字體文件C:\Windows\Fonts\simkai.ttf 上傳到zabbix服務(wù)器的zabbix的fonts路徑下,我這里路徑為:/usr/share/zabbix/fonts。
如下圖,graphfont.ttf是原來默認(rèn)的字體文件
在切換到路徑/usr/share/zabbix/include下,修改defines.inc.php?文件
文件里的 ZBX_GRAPH_FONT_NAME',? ? ? ? ? ?'graphfont'? ?就是指默認(rèn)的字體文件是graphfont 對應(yīng)/usr/share/zabbix/fonts里的graphfont.ttf文件
使用命令 sed -i 's/graphfont/simkai/g' defines.inc.php 全部替換為simkai文件
重新加載下配置文件:systemctl reload httpd.service
再刷新下網(wǎng)頁, 發(fā)現(xiàn)亂碼解決了
?
?
?
?
分享名稱:centos7安裝zabbix3.4
網(wǎng)站URL:http://jinyejixie.com/article12/gciddc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供移動網(wǎng)站建設(shè)、品牌網(wǎng)站制作、服務(wù)器托管、網(wǎng)頁設(shè)計公司、網(wǎng)站策劃、定制網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)