zabbix监控服务器部署
1.服务器安装lamp环境
[root@monitor ~]# yum install gcc gcc-c++ autoconf httpd php mysql mysql-server php-mysql httpd-manual mod_ssl mod_perl mod_auth_mysql php-gd php-xml php-mbstring php-ldap php-pear php-xmlrpc php-bcmath mysql-connector-odbc mysql-devel libdbi-dbd-mysql net-snmp-devel curl-devel -y
2.配置lamp环境
[root@monitor ~]# vim /etc/php.ini
date.timezone = Asia/Shanghai
max_execution_time = 300
max_input_time = 300
memory_limit = 128M
post_max_size = 32M
mbstring.func_overload = 2
启动服务
[root@monitor ~]# service mysqld start
[root@monitor ~]# service httpd start
添加到开机启动
[root@monitor ~]# chkconfig mysqld on
[root@monitor ~]# chkconfig httpd on
3.下载并安装zabbix服务端
[root@monitor tools]# wget http://sourceforge.net/projects/zabbix/files/ZABBIX%20Latest%20Stable/2.0.9/zabbix-2.0.9.tar.gz/download
[root@monitor tools]# groupadd zabbix -g 201
[root@monitor tools]# useradd -g zabbix -u 201 -m zabbix
[root@monitor tools]# tar zxf zabbix-2.0.9.tar.gz
[root@monitor tools]# cd zabbix-2.0.9
[root@monitor zabbix-2.0.9]#
[root@monitor zabbix-2.0.9]# ./configure --prefix=/usr/local/zabbix --enable-se
rver --enable-proxy --enable-agent --with-mysql=/usr/bin/mysql_config --with-ne
t-snmp --with-libcurl
[root@monitor zabbix-2.0.9]# make && make install
[root@monitor zabbix-2.0.9]# echo $?
0
[root@monitor zabbix-2.0.9]#
3.1添加zabbix到系统服务
[root@monitor ~]# vim /etc/services
zabbix-agent 10050/tcp #zabbix agent
zabbix-agent 10050/udp #zabbix agent
zabbix-trapper 10051/tcp #zabbix trapper
zabbix-trapper 10051/udp #zabbix trapper
[root@monitor tools]# cd zabbix-2.0.9
[root@monitor zabbix-2.0.9]# mysqladmin -uroot password 'redhat'
[root@monitor zabbix-2.0.9]# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor.
Commands end with ; or \g.
Your MySQL connection id is 3 Server version: 5.0.95 Source distribution
Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> create database zabbix character set utf8;
Query OK, 1 row affected (0.00 sec)
mysql> grant all privileges on zabbix.* to zabbix@localhost identified by 'zabb ix';
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql>
3.2 导入数据库
[root@monitor zabbix-2.0.9]# mysql -uzabbix -pzabbix zabbix < ./database/mysql/schema.sql
[root@monitor zabbix-2.0.9]# mysql -uzabbix -pzabbix zabbix < ./database/mysql/images.sql
[root@monitor zabbix-2.0.9]# mysql -uzabbix -pzabbix zabbix < ./database/mysql/data.sql
3.3 创建软链接
[root@monitor zabbix-2.0.9]# mkdir /var/log/zabbix
[root@monitor zabbix-2.0.9]# chown zabbix.zabbix /var/log/zabbix/
[root@monitor zabbix-2.0.9]# ln -s /usr/local/zabbix/etc/ /etc/zabbix
[root@monitor zabbix-2.0.9]# ln -s /usr/local/zabbix/bin/* /usr/bin/
[root@monitor zabbix-2.0.9]# ln -s /usr/local/zabbix/sbin/* /usr/sbin/
修改配置文件中的数据库用户名和密码
[root@monitor ~]# vim /etc/zabbix/zabbix_server.conf
DBName=zabbix
DBUser=zabbix
DBPassword=zabbix
拷贝web程序到html目录下
[root@monitor ~]# cp -r /root/tools/zabbix-2.0.9/frontends/php/ /var/www/html/z
abbix
[root@monitor ~]# chown -R zabbix.zabbix /var/www/html/zabbix/
[root@monitor ~]# cp /root/tools/zabbix-2.0.9/misc/init.d/fedora/core5/zabbix_s
erver /etc/init.d/
[root@monitor ~]# cp /root/tools/zabbix-2.0.9/misc/init.d/fedora/core5/zabbix_a
gentd /etc/init.d/
[root@monitor ~]#
注:这个地方存放脚本的目录结构也有变化,没有redhat这个目录,只有cp的fedora目录里的启动脚本
修改zabbix_server和zabbix_agentd文件
[root@monitor ~]# vim /etc/init.d/zabbix_server
ZABBIX_BIN="/usr/sbin/zabbix_server"
[root@monitor ~]# vim /etc/init.d/zabbix_agentd
ZABBIX_BIN="/usr/sbin/zabbix_agentd"
启动
[root@monitor ~]# service zabbix_server start
Starting Zabbix Server: [ OK ]
[root@monitor ~]# service zabbix_agentd start
Starting Zabbix Agent: [ OK ]
[root@monitor ~]#






[root@monitor html]# chown -R apache:zabbix /var/www/html/zabbix/



监控本机:configuration——hosts——enable


zabbix监控服务器部署的更多相关文章
- linux zabbix监控服务器搭建
搭建Zabbix监控服务器 准备运行环境(lamp) [root@zhuji1 ~]# yum -y install httpd [root@zhuji1 ~]# yum -y install php ...
- 自学Zabbix9.4 zabbix low-level discover底层发现(zabbix批量部署必备)
点击返回:自学Zabbix之路 点击返回:自学Zabbix4.0之路 点击返回:自学zabbix集锦 自学Zabbix9.4 zabbix low-level discover底层发现(zabbix批 ...
- Zabbix安装部署实践
操作系统: [root@mysql ~]# cat /etc/redhat-release CentOS Linux release 7.5.1804 (Core) Mysql : 版本5.7 ...
- Zabbix监控服务器磁盘I/O
一.场景说明: 需要使用Zabbix监控服务器上各个磁盘的I/O使用率,当zabbix自身带的item无法满足我们的时候,则需自定义item. 包括: 磁盘读的次数 磁盘读的毫秒数 磁盘写的次 ...
- zabbix监控部署
zabbix是一款开源的监控软件,下面来一起学习一下zabbix监控的部署吧 环境: 主机名 地址 系统 角色 tiandong 192.168.209.3 centos6.5 服务端 winter ...
- 企业级监控软件zabbix搭建部署之zabbix server的安装
企业级监控软件zabbix搭建部署之zabbix server的安装 zabbix线上已经应用半年多了,关于zabbix在生产环境中的使用心得,以及一些经验写下来,希望让大家少走弯路,共同学习! 环境 ...
- 企业级监控软件Zabbix搭建部署之zabbix在WEB页面中的配置
企业级监控软件zabbix搭建部署之zabbix在WEB页面中的配置 企业级监控软件zabbix搭建部署之zabbix在WEB页面中的配置 关于安装请看 http://www.linuxidc.com ...
- Zabbix 一键部署
#!/bin/bash #Zabbix 一键部署脚本 #安装zabbix3. src_home=`pwd` echo -n "正在配置iptables防火墙……" /etc/ini ...
- 部署zabbix监控服务器,部署主动监控
1.1部署服务运行环境 LNMP#yum -y install gcc pcre-devel zlib-devel openssl-devel #tar -zxvf nginx-1.12.2.ta ...
随机推荐
- c#的数据类型、运算符
数据类型:整型:int short long byte小数:double float decimal布尔:bool字符:char 定义变量:数据类型 变量名 [= 值];变量名的命名规则:1.组成的字 ...
- jQuery渐隐渐出的文字提示
<html> <head> <title>jquery渐隐渐出的文字提示</title> <style type="text/css&q ...
- Java中 map.values转换为list或者string[]
@Test public void testMap2List() throws Exception{ Map<String, String> map = new HashMap<St ...
- js中添加事件 attachEvent 与 addEventListener
给元素添加事件时,使用js进行实现时产生了疑惑,有关事件浏览器兼容的问题,在此记录如下. <!DOCTYPE html> <html> <head> <met ...
- VC com 通信实例
HANDLE hCom;//全局變量串口句柄 COMMTIMEOUTS TimeOuts; DCB dcb; 按鈕代碼() { hCom=CreateFile(L“COM1”,// 串口名稱 GENE ...
- 使用 Chrome 来调试你的 Android App
http://www.stormzhang.com/android/2015/03/05/android-debug-use-chrome/ 个人一直对Chrome情有独钟,Chrome除了更快之外, ...
- [原创]NT系统信息察看工具 : NtInfoGuy
原文链接:[原创]NT系统信息察看工具 : NtInfoGuy 对于windows的内部,我们有太多的东西需要了解,认知.我们非凡的.从不知足的探求本性驱使我们要 拨开迷雾得见青天.太多的木马,病毒, ...
- 图像 - 创建 头像V1.0
byte[] logo //处理群头像信息 //byte[] logoByte = Convert.FromBase64String(logo); ////1.0 System.IO.MemorySt ...
- web前端开发常用工具
http://www.gbin1.com/technology/javautilities/20120806-resource-for-front-end-developer/ 冒泡样式 http:/ ...
- 解除被DenyHosts锁定的IP地址
自己的本本无法ssh上服务器,提示 ssh_exchange_identification: read: Connection reset by peer 仔细回想,自己手贱把~下面的一个ssh文件删 ...