置頂 2018年01月27日 12:57:23 友人a筆記 閱讀數:380 標籤: zabbix 更多php
我的分類: 監控前端
版權聲明:本文爲博主原創文章,未經博主容許不得轉載。 https://blog.csdn.net/tladagio/article/details/79056421node
[root@ecs-5c78-0001 ~]# cat /etc/redhat-release
mysql
CentOS Linux release 7.3.1611 (Core)
linux
爲了方便測試,中止而且開機不啓動防火牆,生產環境根據須要進行調整web
[root@ecs-5c78-0001 ~]# systemctl stop firewalld.service
sql
[root@ecs-5c78-0001 ~]# systemctl disable firewalld.service
數據庫
關閉selinuxvim
[root@ecs-5c78-0001 ~]# sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
centos
[root@ecs-5c78-0001 ~]# grep SELINUX=disabled /etc/selinux/config
SELINUX=disabled
[root@ecs-5c78-0001 ~]# setenforce 0
setenforce: SELinux is disabled
一、安裝以前檢查系統中是否存在使用rpm安裝的MySQL或者MariaDB
[root@ecs-5c78-0001 ~]# rpm -qa | grep mysql [root@ecs-5c78-0001 ~]# rpm -qa | grep mariadb mariadb-libs-5.5.52-1.el7.x86_64
二、若是須要卸載,執行命令:rpm -e 軟件名,執行失敗的時候可使用:rpm -e --nodeps 軟件名強制卸載,卸載以後再使用
rpm -qa | grep mysql 或者rpm -qa | grep mariadb查看結果。
[root@ecs-5c78-0001 ~]# rpm -e mariadb-libs-5.5.52-1.el7.x86_64 error: Failed dependencies: libmysqlclient.so.18()(64bit) is needed by (installed) postfix-2:2.10.1-6.el7.x86_64 libmysqlclient.so.18(libmysqlclient_18)(64bit) is needed by (installed) postfix-2:2.10.1-6.el7.x86_64 [root@ecs-5c78-0001 ~]# rpm -e --nodeps mariadb-libs-5.5.52-1.el7.x86_64
安裝mariadb
[root@ecs-5c78-0001 ~]# yum install mariadb-server mariadb –y
啓動數據庫並設置爲開機啓動
[root@ecs-5c78-0001 ~]# systemctl start mariadb
[root@ecs-5c78-0001 ~]# systemctl enable mariadb
Created symlink from /etc/systemd/system/multi-user.target.wants/mariadb.service to /usr/lib/systemd/system/mariadb.service.
#數據庫其餘操做命令
[root@ecs-5c78-0001 ~]# systemctl restart mariadb #重啓
[root@ecs-5c78-0001 ~]# systemctl stop mariadb #中止
一、安裝zabbix(這裏的http://連接注意會更新,能夠直接打開網站查詢最新的RPM包連接,而後使用rpm -ivh安裝便可)
[root@ecs-5c78-0001 ~]# rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-1.el7.centos.noarch.rpm
Retrieving http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-1.el7.centos.noarch.rpm
Preparing... ################################# [100%]
Updating / installing... 1:zabbix-release-3.4-1.el7.centos ################################# [100%]
[root@ecs-5c78-0001 ~]# yum install zabbix-server-mysql zabbix-web-mysql -y
二、建立數據庫
[root@ecs-5c78-0001 ~]# mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 2
Server version: 5.5.56-MariaDB MariaDB Server
Copyright (c) 2000, 2017, 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;
Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]> grant all privileges on zabbix.* to zabbix@localhost identified by 'zabbix';
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> exit
Bye
三、導入數據庫(這裏的zabbix-mysql-3.4.5注意版本號會更新)
[root@ecs-5c78-0001 ~]# zcat /usr/share/doc/zabbix-server-mysql-3.4.5/create.sql.gz |mysql -uzabbix -pzabbix zabbix
四、配置數據庫用戶及密碼
[root@ecs-5c78-0001 ~]# vim /etc/zabbix/zabbix_server.conf
五、修改以下配置
DBName=zabbix
DBUser=zabbix
#DBPassword= 改成》》DBPassword=zabbix
保存退出:wq
六、啓動zabbix server 並設置開機啓動
[root@ecs-5c78-0001 ~]# systemctl start zabbix-server.service [root@ecs-5c78-0001 ~]# systemctl enable zabbix-server.service Created symlink from /etc/systemd/system/multi-user.target.wants/zabbix-server.service to /usr/lib/systemd/system/zabbix-server.service.
七、編輯zabbix前端PHP配置,更改時區
[root@ecs-5c78-0001 ~]# vim /etc/httpd/conf.d/zabbix.conf
# php_value date.timezone Europe/Riga 改成》》 php_value date.timezone Asia/Shanghai
保存退出:wq
更改成以下
八、Selinux配置
[root@ecs-5c78-0001 ~]# setsebool -P httpd_can_connect_zabbix on
setsebool: SELinux is disabled.
[root@ecs-5c78-0001 ~]# setsebool -P httpd_can_cetwork_connect_db on
setsebool: SELinux is disabled.
九、啓動httpd而且設置開機啓動
[root@ecs-5c78-0001 ~]# systemctl start httpd [root@ecs-5c78-0001 ~]# systemctl enable httpd Created symlink from /etc/systemd/system/multi-user.target.wants/httpd.service to /usr/lib/systemd/system/httpd.service.
1.瀏覽器登陸本機IP:http://192.168.2.216/zabbix/
2.點擊:Next step
3.點擊:Next step
4.點擊:Next step
5.確認輸入信息,點擊Next step
6.點擊Finish,生成配置文件在:/etc/zabbix/web/zabbix.conf.php
查看配置文件:
cat /etc/zabbix/web/zabbix.conf.php
登陸Zabbix3.4,默認用戶名:Admin 默認密碼:zabbix
登陸頁面
更換爲中文
Zabbix服務器端安裝完成!
安裝zabbix-agent
[root@ecs-5c78-0002 ~]# rpm -ivh https://mirrors.aliyun.com/zabbix/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-1.el7.centos.noarh.rpm Retrieving https://mirrors.aliyun.com/zabbix/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-1.el7.centos.noarch.rpm Preparing... ################################# [100%] Updating / installing... 1:zabbix-release-3.4-1.el7.centos ################################# [100%] [root@ecs-5c78-0002 ~]# yum install zabbix-agent –y
或者使用官網提供的連接,而後rpm -ivh進行安裝:rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-agent-3.4.0-1.el7.x86_64.rpm
配置zabbix-agent
[root@ecs-5c78-0002 ~]# vim /etc/zabbix/zabbix_agentd.conf
修改server IP地址
修改成zabbix-server服務端的IP地址
修改ServerActive IP地址
修改成zabbix-server服務器端的IP地址
啓動zabbix-agent並設置開機啓動
[root@ecs-5c78-0002 ~]# systemctl start zabbix-agent.service [root@ecs-5c78-0002 ~]# systemctl enable zabbix-agent.service Created symlink from /etc/systemd/system/multi-user.target.wants/zabbix-agent.service to /usr/lib/systemd/system/zabbix-agent.service.
手動添加監控主機
指定zabbix-agent機器IP
增長監控模板,只有添加了模板纔會真正監控到主機
添加圖形,以便觀察數據
監控成功(客戶端要關閉防火牆或者放通端口,要不ZBX圖標會紅色報錯)
自動發現主機
添加發現規則
查看自動發現的主機
到此,zabbix簡單監控就部署好了。
首先本人是一片空白的進行zabbix搭建工做,其實搭建這個以前我搭建過zabbix 2.4,我感受以前的那個太老了,而後就又推到了從新干了一遍,感受收穫滿滿。其實最重要的仍是要多折騰,折騰多...