1. 程式人生 > >zabbix安裝(2.4)

zabbix安裝(2.4)

zabbix

相關鏈接

zabbix官網:https://www.zabbix.com/

zabbix軟件下載:https://www.zabbix.com/download

Zabbix 文檔:https://www.zabbix.com/documentation/2.4/manual/installation/install_from_packages

系統環境

[[email protected] ~]# cat /etc/redhat-release

CentOS release 6.6 (Final)

[[email protected] ~]# setenforce 0

[[email protected]

/* */ ~]# /etc/init.d/iptables stop

安裝zabbix

[[email protected] ~]# rpm -ivh http://repo.zabbix.com/zabbix/2.4/rhel/6/x86_64/zabbix-release-2.4-1.el6.noarch.rpm 該步將會自動創建yum源

[[email protected] ~]# yum install zabbix-server-mysql zabbix-web-mysql -y

[[email protected] ~]# yum install zabbix-agent -y


註:yum安裝會將httpdphp做為依賴裝好,且自動寫好/etc/httpd/conf.d/zabbix.conf 文件

更改zabbix時區

[[email protected] ~]# vim /etc/httpd/conf.d/zabbix.conf

php_value date.timezone Asia/Shanghai

[[email protected] ~]# /etc/init.d/httpd restart


下載並配置數據庫

[[email protected] ~]# yum install -y mysql-server mysql

[[email protected]

/* */ ~]# cp /usr/share/mysql/my-medium.cnf /etc/my.cnf

[[email protected] ~]# vim /etc/my.cnf

character-set-server = utf8

init-connect = ‘SET NAMES utf8‘

collation-server = utf8_general_ci

[[email protected] ~]# /etc/init.d/mysqld restart


創建數據zabbix數據庫並授權用戶

[[email protected] ~]# mysql

mysql> create database zabbix character set utf8 collate utf8_bin;

mysql> grant all privileges on zabbix.* to [email protected] identified by ‘zabbix‘;


導入數據庫文件

[[email protected] ~]# cd /usr/share/doc/zabbix-server-mysql-2.4.8/create/

[[email protected] create]# mysql -uroot zabbix < schema.sql

[[email protected] create]# mysql -uroot zabbix < images.sql

[[email protected] create]# mysql -uroot zabbix < data.sql


配置zabbix-server

[[email protected] ~]# vim /etc/zabbix/zabbix_server.conf

DBHost=localhost

DBName=zabbix

DBUser=zabbix

DBPassword=zabbix

[[email protected] ~]# /etc/init.d/zabbix-server start


進入網頁配置

http://192.168.10.129/zabbix/setup.php

技術分享

技術分享

技術分享

技術分享

密碼是zabbix

技術分享



本文出自 “feng” 博客,請務必保留此出處http://fengxiaoli.blog.51cto.com/12104465/1954649

zabbix安裝(2.4)