centos6.6-zabbix2.4.5安装实战

1. 安装前环境准备

系统环境:

[[email protected] ~]# uname -r
2.6.32-504.el6.x86_64
[[email protected] ~]# uname -m
x86_64
[[email protected] ~]# cat/etc/redhat-release
CentOS release 6.6 (Final)

IP地址及主机名规划:


主机名


IP地址


角色


zbserver


192.168.0.131


zabbix服务端


zbclient


192.168.0.132


zabbix客户端

1.1 server端安装基础软件包

在server安装基础软件包,这里的环境使用yum安装,如果使用源码安装也是可以的。

[[email protected] ~]# yum -y install wgetvim tree gcc gcc-c++ autoconf httpd php mysql mysql-server php-mysqlhttpd-manual mod_ssl mod_perl mod_auth_mysql php-gd php-xml php-mbstring php-ldapphp-pear php-xmlrpc php-bcmath mysql-connector-odbc mysql-devellibdbi-dbd-mysql net-snmp net-snmp-devel curl-devel

1.2 启动httpd及mysql服务

[[email protected] ~]# /etc/init.d/httpdstart
[[email protected] ~]# /etc/init.d/mysqldstart
[[email protected] ~]# chkconfig httpd on
[[email protected] ~]# chkconfig mysqld on

1.3 配置防火墙

#允许80端口及zabbix的10050,10051端口

iptables -I INPUT -p tcp -m multiport --destination-port 80,10050:10051

1.4 配置PHP参数

[[email protected] ~]# cp /etc/php.ini/etc/php.ini.bak_20160226
[[email protected] ~]# sed -i "[email protected];[email protected] = Asia/Sha[email protected]" /etc/php.ini
[[email protected] ~]# sed -i"[email protected]_execution_time = [email protected]_execution_time = [email protected]" /etc/php.ini
[[email protected] ~]# sed -i"[email protected]_max_size = [email protected]_max_size = [email protected]" /etc/php.ini
[[email protected] ~]# sed -i"[email protected]_input_time = [email protected]_input_time = [email protected]" /etc/php.ini
[[email protected] ~]# sed -i"[email protected]_limit = [email protected]_limit = [email protected]" /etc/php.ini
[[email protected] ~]# sed -i"[email protected];mbstring.func_overload = [email protected]_overload = [email protected]"/etc/php.ini

1.5 修改httpd服务FQDN错误

[[email protected] ~]#  echo "ServerName localhost:80">>/etc/httpd/conf/httpd.conf
[[email protected] ~]# /etc/init.d/httpdrestart

1.6 下载zabbix2.4.5.tar.gz

wget http://jaist.dl.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/2.4.5/zabbix-2.4.5.tar.gz

1.7 创建zabbix用户及zabbix用户组

[[email protected] ~]# groupadd -g 201zabbix
[[email protected] ~]# useradd -g zabbix -u201 -s /sbin/nologin zabbix

1.8 安装zabbix server端

[[email protected] ~]# tar xfzabbix-2.4.5.tar.gz
[[email protected] ~]# cd zabbix-2.4.5
[[email protected] zabbix-2.4.5]#./configure --prefix=/usr/local/zabbix --enable-server --enable-proxy--enable-agent --with-mysql=/usr/bin/mysql_config --with-net-snmp--with-libcurl
[[email protected] zabbix-2.4.5]# make&& make install

1.9 创建zabbix数据库及相关表

[[email protected] zabbix-2.4.5]# mysql -e"create database zabbix default charset utf8;"
[[email protected] zabbix-2.4.5]# mysql -e"grant all on zabbix.* to [email protected] identified by ‘zabbix‘;"
[[email protected] zabbix-2.4.5]# mysql-uzabbix -pzabbix zabbix<./database/mysql/schema.sql
[[email protected] zabbix-2.4.5]# mysql-uzabbix -pzabbix zabbix<./database/mysql/images.sql
[[email protected] zabbix-2.4.5]# mysql-uzabbix -pzabbix zabbix<./database/mysql/data.sql

2. 配置软链接及启动文件信息

[[email protected] zabbix-2.4.5]# mkdir/var/log/zabbix
[[email protected] zabbix-2.4.5]# chownzabbix.zabbix /var/log/zabbix
[[email protected] zabbix-2.4.5]# ln -s/usr/local/zabbix/etc/ /etc/zabbix
[[email protected] zabbix-2.4.5]# ln -s/usr/local/zabbix/bin/* /usr/bin/
[[email protected] zabbix-2.4.5]# ln -s/usr/local/zabbix/sbin/* /usr/sbin/
[[email protected] zabbix-2.4.5]# cp/root/zabbix-2.4.5/misc/init.d/fedora/core/zabbix_* /etc/init.d
[[email protected] zabbix-2.4.5]#  chmod 755 /etc/init.d/zabbix_*

2.1 修改/etc/init.d下zabbix_seraver及zabbix_agentd启动文件

[[email protected] zabbix-2.4.5]# sed -i"[email protected]=/usr/[email protected]=/usr/local/[email protected]"/etc/init.d/zabbix_server
[[email protected] zabbix-2.4.5]# sed -i"[email protected]=/usr/[email protected]=/usr/local/[email protected]"/etc/init.d/zabbix_agentd

2.2 修改/etc/zabbix/zabbix_server.conf

#修改mysql数据库种zabbix库的账号及密码信息

sed -i"[email protected][email protected][email protected]" /etc/zabbix/zabbix_server.conf
sed -i"[email protected]#[email protected][email protected]" /etc/zabbix/zabbix_server.conf
sed -i "[email protected]#[email protected][email protected]" /etc/zabbix/zabbix_server.conf

2.3 修改/etc/zabbix/zabbix_agentd.conf

#这里的IP地址写的是zabbix_server的IP地址,即192.168.0.131

sed -i"[email protected][email protected]=127.0.0.1,[email protected]"/etc/zabbix/zabbix_agentd.conf
sed -i "[email protected][email protected]=192.168.0.131:[email protected]"/etc/zabbix/zabbix_agentd.conf
sed -i"[email protected]/[email protected]/log/zabbix/[email protected]"/etc/zabbix/zabbix_agentd.conf
sed -i "[email protected]^#[email protected]=1\[email protected]" /etc/zabbix/zabbix_agentd.conf

2.4 复制zabbix站点文件到/var/www/html/

[[email protected] zabbix-2.4.5]# cp -r/root/zabbix-2.4.5/frontends/php/ /var/www/html/zabbix/
[[email protected] zabbix-2.4.5]# chown -Rapache.apache /var/www/html/zabbix/
[[email protected] zabbix-2.4.5]# chkconfigzabbix_server on
[[email protected] zabbix-2.4.5]# chkconfigzabbix_agentd on
[[email protected] zabbix-2.4.5]#/etc/init.d/zabbix_server start
Starting zabbix_server:                                    [  OK  ]
[[email protected] zabbix-2.4.5]# /etc/init.d/zabbix_agentdstart
Starting zabbix_agentd:                                    [  OK  ]

2.5 通过web界面配置zabbix

1.安装界面:在浏览器输入:192.168.0.131/zabbix/setup.php

2. PHP配置检查界面,结果是OK表示正常,如果是fail状态,请修改相关的php配置参数,并重启httpd服务

3.填写数据库相关信息端口及zabbix授权用户及密码

4. 填写zabbix的server地址,我这里填写的是本机的IP地址192.168.0.131

5.最后配置结果预览

6.安装完成

2.6 访问zabbix web管理界面

#安装完成后通过http://192.168.0.131/zabbix/index.php就能直接访问zabbix管理界面

默认用户名:admin密码:zabbix

2.7 调整zabbix语言

2.8 zabbix语言设置后乱码解决方法

zabbix语言设置成中文后,有乱码解决如下

1.从windows下控制面板->字体->选择一种中文字库例如“楷体”

2.将字体上传至/var/www/html/zabbix/fonts目录下

3.修改zabbix页面管理的中文字体设置

[[email protected] zabbix-2.4.5]# vim/var/www/html/zabbix/include/defines.inc.php
#修改如下2行
define(‘ZBX_FONT_NAME‘, ‘simkai‘);
define(‘ZBX_GRAPH_FONT_NAME‘,  ‘simkai‘);

2.9 安装zabbix client端

#安装基础软件包

[[email protected] ~]# yum install wget vimtree gcc gcc-c++ -y

3. 安装zabbix_agentd

[[email protected] ~]# groupadd -g 201zabbix
[[email protected] ~]# useradd -g zabbix -u201 -s /sbin/nologin zabbix
[[email protected] ~]# tar xfzabbix-2.4.5.tar.gz
[[email protected] ~]# cd zabbix-2.4.5
[[email protected] zabbix-2.4.5]#./configure --prefix=/usr/local/zabbix --enable-agent
[[email protected] zabbix-2.4.5]# make&& make install

3.1 创建zabbix日志目录

[[email protected] zabbix-2.4.5]# mkdir/var/log/zabbix
[[email protected] zabbix-2.4.5]# chownzabbix.zabbix /var/log/zabbix

3.2 复制zabbix_agentd启动文件到/etc/init.d目录下

[[email protected]]#cpmisc/init.d/fedora/core/zabbix_agentd /etc/init.d/
[[email protected] zabbix-2.4.5]# chmod 755/etc/init.d/zabbix_agentd

3.3 修改启动配置文件和软链接

[[email protected] zabbix-2.4.5]#sed -i"[email protected]=/usr/[email protected]=/usr/local/[email protected]"/etc/init.d/zabbix_agentd
[[email protected] zabbix-2.4.5]# ln -s/usr/local/zabbix/etc/ /etc/zabbix
[[email protected] zabbix-2.4.5]# ln -s/usr/local/zabbix/bin/*  /usr/bin
[[email protected] zabbix-2.4.5]# ln -s/usr/local/zabbix/sbin/*  /usr/sbin/

3.4 修改/etc/zabbix/zabbix_agentd.conf

#这里的IP地址写的是zabbix_server端的IP地址

[[email protected] zabbix-2.4.5]#sed -i "[email protected][email protected][email protected]"/etc/zabbix/zabbix_agentd.conf
[[email protected] zabbix-2.4.5]#sed -i "[email protected][email protected]=192.168.0.131:[email protected]"/etc/zabbix/zabbix_agentd.conf
[[email protected] zabbix-2.4.5]#sed -i"[email protected]/[email protected]/log/zabbix/[email protected]"  /etc/zabbix/zabbix_agentd.conf
[[email protected] zabbix-2.4.5]#sed -i "[email protected]^# [email protected]=1\[email protected]"/etc/zabbix/zabbix_agentd.conf

3.5 设置zabbix_agentd开机自动启动,并启动zabbix_agentd服务

[[email protected] zabbix-2.4.5]# chkconfigzabbix_agentd on
[[email protected] zabbix-2.4.5]#/etc/init.d/zabbix_agentd start
Starting zabbix_agentd:             [  OK  ]

3.6 安装小结

#安装前请配置好时间同步、关闭selinux、防火墙、配置好yum源等

时间: 2024-10-09 00:22:00

centos6.6-zabbix2.4.5安装实战的相关文章

手把手安装ZABBIX2.2(CentOS6.5+Zabbix2.2.2)

一.环境(VM+CentOS6.5+Zabbix2.2.2)yum安装 hostname:zabbix2 IP:192.168.248.140 分区 /boot boot 200MB swap  swap 2048MB /    root  20480MB /var  var  18900MB Server端安装配置: 1.   同步服务器时间 1)安装ntpdate依赖包yum -y install ntpdate; 2)ntpdate time.nist.gov 2.   安装开发软件包 y

centos6.5 下rpm离线安装apache2.2+php5.5+mysql5.6

1,安装,mysql 见网址:http://bt9527.blog.51cto.com/9142217/1437877 2,安装apache 在如下页面下载apache的for Linux 的源码包 http://www.apache.org/dist/httpd/ 我放在/home/目录下        解压缩:    tar -zxvf httpd-*.tar.gz    mv httpd-* apache    执行命令:    cd apache    ./configure --pre

Vmware Centos6.2下mysql的安装配置

1.vmware10安装centos6 http://jingyan.baidu.com/article/afd8f4de6c25c534e286e9d9.html 2.Vmware Centos6.2下mysql的安装配置 http://www.cnblogs.com/xiaoluo501395377/archive/2013/04/07/3003278.html 3.navicat无法连接mysql解决方案 http://www.cnblogs.com/zhuawang/p/3918616.

centos6.5 x86_64下yum安装lnmp+phpmyadmin(2)

平台:centos6.5 x86_64最小化安装 上篇是安装的php.mysql版本有点老,安装个版本新一点的,尝尝鲜.^_^ 1,关闭SElinux vi /etc/selinux/config 将SELINUX=enforcing改为SELINUX=disabled reboot 2,添加yum源 vi nginx.repo                   nginx的源 [nginx] name=nginx repo baseurl=http://nginx.org/packages/

zabbix2.0.3 安装与配置

1.zabbix安装环境准备 zabbix安装需要LAMP环境支持 采用yum源安装LAMP快速构建. yum -y install httpd php php-devel php-gd php-bcmath php-mbstring mysql mysql-devel mysql-server php-xml php-mysql gd net-snmp net-snmp-devel net-snmp-utils curl-devel 安装后,启动mysql [[email protected]

Openstack CentOS6.5 ALL IN ONE 安装

本文档以RDO的方式安装单节点.单网卡的Openstack. RDO是可在Red Hat Enterprise Linux.Fedora及其变体上运行的社区支持OpenStack版本.部署简单方便,RDO中包含核心的OpenStack组件 – Nova.Glance.Keystone.Cinder.Neutron.Swift和Horizon,还有用于云应用协调的孵化项目 – Heat,以及用于资源监视和计量的Ceilometer.利用红帽开发的安装工具 – PackStack,可以实现非常简便轻

CentOS-6.5-x86_64 最小化安装后,怎样安装 man 程序?

CentOS-6.5-x86_64 最小化安装后.怎样安装man 程序? CentOS-6.5-x86_64 最小化安装后,没有man 程序,没它还真的不方便. man 是 manual(手冊)的意思. Linux 系统下的命令的參数一般都非常多,想要都记住是不可能的.仅仅要记住经常使用的一些即可了.其他的就靠 man 程序了. 使用以下的方法安装: yum install man

centos6.5 64位下安装私有npm

搭建自己的私有npm库 1.安装Couchdb [[email protected]_private ~]# yum install wget [[email protected]_private ~]# wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm [[email protected]_private ~]# rpm -ivh --test epel-release-6-

使用centos6.6部署Cobbler--自动安装centos系统

Cobbler是一个开源项目,用来部署和安装系统.Cobbler不仅仅是一个pxe服务器,他还可以管理dns和dhcp.一般数据中心里或者生产环境,是不允许dhcp, 但是pxe需要使用dhcp,所以我们这里根据mac地址来分配IP,这样dhcp就不会影响现有网络了. 1.首先关闭selinux [[email protected] ~]#sed -i '/SELINUX/s/enforcing/disabled/' /etc/selinux/config #重新启动linux系统使配置生效:

CentOS 6.5+Zabbix2.0.6安装配置一. Zabbix安装1.1安装LAMP环境及依赖包

今天公司要我们安装zabbix,因为第一次安装所有遇到了很多问题都解决了,也自己写了脚本,后面会提到, 安装过程中遇到的问题我也截图出来,按我步骤安装下来,应该都没问题的.后续会分享下zabbix的使用更加详细说明文档. 现在版本换的快.不过我还是用2.0.6   这个可以用在2.2.0以上都没问题,亲自测试了. CentOS 6.5+Zabbix2.0.6安装配置 一. Zabbix安装 1.LAMP环境 #yum install mysql-server httpd php 这个需要安装下,