zabbix-2.4.8使用yum一键部署zabbix

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了zabbix-2.4.8使用yum一键部署zabbix相关的知识,希望对你有一定的参考价值。

zabbix

技术分享图片

项目(Items):监控指标
触发器(Triggers):阈值
模板(Templates):监控指标及阈值的集合
事件(Events)
动作(Actions)
yum -y install httpd php mysql mysql-server mysql-devel php-gd gcc php-mysql php-xml libcurl-devel curl- net-snmp libxml2-*

关闭防火墙:

service iptables stop
service ip6tables stop

禁用开机启动:

chkconfig iptables off
chkconfig ip6tables off

关闭setenforce:

setenforcr 0

禁用开启启动:

技术分享图片
下载zabbix-2.4.8
https://sourceforge.net/projects/zabbix/files/latest/download?source=typ_redirect
把下载的包传到/root下
tar zxvf zabbix-2.4.8.tar.gz -C /opt/
cd /opt/zabbix-2.4.8/

编译:

server:
./configure --prefix=/usr/local/zabbix --enable-server --enable-agent --with-mysql --with-net-snmp --with-libcurl --with-libxml2
proxy(代理):
./configure --prefix=/usr/local/zabbix --enable-proxy --enable-agent --with-mysql --with-net-snmp --with-libcurl --with-libxml2
agent:
./configure --prefix=/usr/local/zabbix --enable-agent
make
make install
技术分享图片
技术分享图片

service mysqld start

初始化数据库:

mysql_secure_installation
技术分享图片
技术分享图片
技术分享图片
技术分享图片

设置数据库编码:

vim /etc/my.cnf
技术分享图片

重启数据库:

service mysqld restart
技术分享图片

创建zabbix数据库并授权:

技术分享图片
技术分享图片
技术分享图片
vim /etc/my.cnf
技术分享图片
然后重启数据库:
service mysqld restart
技术分享图片

导入zabbix数据库结构:

技术分享图片
技术分享图片
进入web目录:
技术分享图片
创建test文件测试:
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片

修改PHP参数:

vim /etc/php.ini
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片
保存退出:
技术分享图片
技术分享图片
技术分享图片
技术分享图片
此时返回页面,点击retry:
技术分享图片
发现所有参数都已正常:
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片

修改界面为中文:

技术分享图片
技术分享图片
此时发现界面已为中文:
技术分享图片

配置zabbix-server:

技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片
保存退出:
技术分享图片
创建zabbix用户:
技术分享图片

启动zabbix-server:

技术分享图片

配置zabbix-agent:

技术分享图片
技术分享图片
技术分享图片
技术分享图片

启动zabbix-agent:

技术分享图片
技术分享图片
技术分享图片
查看zabbix-server进程:
技术分享图片
查看zabbix-agent进程:
技术分享图片

页面乱码:

此时数据已能正常监控,但页面存在乱码:
技术分享图片
解决办法:
技术分享图片
此时已没有乱码:
技术分享图片

以上是关于zabbix-2.4.8使用yum一键部署zabbix的主要内容,如果未能解决你的问题,请参考以下文章

shell脚本------一键部署yum源仓库(本地yum源和在线yum源)

一键自动化部署(定制rpm包,yum仓库)

shell脚本集合

shell脚本集合

全方位 一键部署yum源 shell

Centos7下yum安装zabbix的部署