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 ...
随机推荐
- 关于常用meta的总结
入行也半年了,无数次的想过写博客也无数次的想过第一篇会写什么,一直没有落实.今天心血来潮把博客开了,那就写点东西吧.第一篇就写一写看似简单但又经常不注意到的meta标签吧.(博主经验尚浅,有许多理解不 ...
- Daily Sentence
2016-12-05 08:59:15 Knowing yourself is the beginning of all wisdom. 智者始于自知. 2016-05-01 19:38:25 The ...
- Asp.net MVC + EF6.0 经常出现的问题
1.运行视图时出现问题:未能加载文件或程序集"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c ...
- Swift和Objective-C的差异性
1:Type Swift提供了类型推断,不需要人工的去注释变量的类型信息,编译器会通过变量的值来推断类型.例如,编译器可以自动将该变量设置为字符串: // 自动推断,不显示 var name1 = & ...
- WindowsForm 公共控件 菜单和工具栏
公共控件 菜单栏 状态栏 布局 公共控件 textbox: text属性:用于获取或 ...
- 实现FileCopy(Ring0 x86 x64)
1.1 内核不接受一个字符串文件路径,必须填写一个OBJECT_ATTRIBUTES结构. 这个结构,在InitializeObjectAttributes初始化 typedef struct _OB ...
- C语言_double_精度的谜团
double-long long 和0的比较,double和double之间比较
- 出现No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here异常
问题描述: public void save(BaseEntity baseEntity) { Session session = null; try { session = currentSessi ...
- AWS之EC2远程登录
网上有丰富的免费资源,Amazon的云主机就是开发者和学习者很好的选择. 但你得有一张信用卡,注册个AWS(Amazon web service)账号,就可以有自己公网ip的服务器了!!! 最近在折腾 ...
- TensorFlow 深度学习笔记 逻辑回归 实践篇
Practical Aspects of Learning 转载请注明作者:梦里风林 Github工程地址:https://github.com/ahangchen/GDLnotes 欢迎star,有 ...