由于官网很慢,经常看官方文档就弄的很烦,因此把我看官网安装配置zabbix的步骤在此记录一下。
###安装环境
centos6.8
192.168.2.110 基础服务器安装
#关闭防火墙
service iptables stop
chkconfig iptables off
#修改selinux
vim /etc/selinux/config
SELINUX=disabled
yum -y install httpd httpd-devel
yum -y install MysqL MysqL-serverMysqL-devel
yum -y install PHP PHP-MysqL PHP-common PHP-gdPHP-mbstring PHP-mcrypt PHP-devel PHP-xml
###yum安装zabbix
#先安装yum源:
# rpm -ivhhttp://repo.zabbix.com/zabbix/2.4/rhel/6/x86_64/zabbix-release-2.4-1.el6.noarch.rpm
#安装zabbix
# yum install zabbix-server-MysqLzabbix-web-MysqL
#创建zabbix数据库
#先开启服务:service MysqLdstart
shell> MysqL -uroot-p<root_password>
MysqL> create database zabbix characterset utf8 collate utf8_bin;
MysqL> grant all privileges on zabbix.*to zabbix@localhost identified by '<password>';
MysqL> quit;
#导入数据到zabbix库
# cd/usr/share/doc/zabbix-server-MysqL-2.4.8/create
# MysqL -uroot -pxx zabbix < schema.sql
# MysqL -uroot -pxx zabbix < images.sql
# MysqL -uroot -pxx zabbix < data.sql
# vi /etc/zabbix/zabbix_server.conf
DBHost=localhost
dbname=zabbix
DBUser=zabbix
DBPassword=zabbix
#启动zabbix
# service zabbix-server start
vim /etc/httpd/conf.d/zabbix.conf
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 date.timezone Asia/Shanghai
###启动服务
service httpd restart
chkconfig httpd on
service MysqLd restart
service zabbix-server restart
chkconfig zabbix-server on
#打开zabbix dashboard
192.168.2.110/zabbix进行安装
客户端可以安装zabbix的yum源之后,直接yum安装:yum install zabbix-agent
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。