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] ~]# /etc/init.d/mysqld start

Initializing MySQL database:  Installing MySQL system tables...

OK

Filling help tables...

OK

To start mysqld at boot time you have to copy

support-files/mysql.server to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !

To do so, start the server, then issue the following commands:

/usr/bin/mysqladmin -u root password ‘new-password‘

/usr/bin/mysqladmin -u root -h zabbix111 password ‘new-password‘

Alternatively you can run:

/usr/bin/mysql_secure_installation

which will also give you the option of removing the test

databases and anonymous user created by default.  This is

strongly recommended for production servers.

See the manual for more instructions.

You can start the MySQL daemon with:

cd /usr ; /usr/bin/mysqld_safe &

You can test the MySQL daemon with mysql-test-run.pl

cd mysql-test ; perl mysql-test-run.pl

Please report any problems with the /usr/bin/mysqlbug script!

The latest information about MySQL is available on the web at

http://www.mysql.com

Support MySQL by buying support/licenses at http://shop.mysql.com

[  OK  ]

Starting mysqld:                                           [  OK  ]

设置mysql密码

[[email protected] ~]# /usr/bin/mysqladmin -u root password ‘123456‘

创建zabbix数据库

[[email protected] ~]# mysql -uroot -p123456

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;

Query OK, 1 row affected (0.06 sec)

创建zabbix用户与组

[[email protected] ~]# groupadd zabbix

[[email protected] ~]# useradd -g zabbix -m zabbix

解压zabbix包

[[email protected] ~]# tar zxvf zabbix-2.0.3.tar.gz

导入数据库到mysql

[[email protected] ~]# cd zabbix-2.0.3/database/mysql/

[[email protected] mysql]# mysql -uroot -p123456 zabbix <./schema.sql

[[email protected] mysql]# mysql -uroot -p123456 zabbix <./images.sql

[[email protected] mysql]# mysql -uroot -p123456 zabbix <./data.sql

2.编译安装zabbix

[[email protected] mysql]# cd ../../

[[email protected] zabbix-2.0.3]# ./configure --prefix=/usr/local/zabbix --enable-server --enable-agent --with-mysql --with-net-snmp --with-libcurl

[[email protected] zabbix-2.0.3]# make install

3.修改配置文件

[[email protected] zabbix-2.0.3]# vi /etc/services

在最后增加

zabbix-agent    10050/tcp

zabbix-agent    10050/udp

zabbix-trapper  10051/tcp

zabbix-trapper  10051/udp

4.修改配置文件

服务端修改

[[email protected] misc]# vi /usr/local/zabbix/etc/zabbix_server.conf

DBPassword=123456

本机客户端修改

[[email protected] misc]# vi /usr/local/zabbix/etc/zabbix_agentd.conf

hostname=zabbix111   #主机名

[[email protected] zabbix-2.0.3]# cd frontends/

[[email protected] frontends]# cp -r php /var/www/html/zabbix

修改php配置文件

[[email protected] frontends]# vi /etc/php.ini

date.timezone = Asia/Shanghai

max_execution_time = 300

max_input_time = 300

post_max_size = 32M

mbstring.func_overload = 2

修改完成后重启apache

[[email protected] frontends]# service httpd restart

[[email protected] frontends]# /etc/init.d/iptables stop #防火墙关闭

[[email protected] frontends]# chkconfig iptables off

开机启动

[[email protected] frontends]# chkconfig mysqld on

[[email protected] frontends]# chkconfig httpd on

打开浏览器

Next

Next

Next

Next

Download下来放在/var/www/html/zabbix/conf目录下后面点击Retry后,在点击Finish

[[email protected] frontends]# cd /var/www/html/zabbix/conf

用户名: admin  密码:zabbix 默认的

说明zabbix服务没有启动

启动zabbix服务端

[[email protected] conf]# /usr/local/zabbix/sbin/zabbix_server

启动zabbix客户端

[[email protected] conf]# /usr/local/zabbix/sbin/zabbix_agentd

zabbix2.0.3 安装与配置,布布扣,bubuko.com

时间: 2024-10-12 16:08:50

zabbix2.0.3 安装与配置的相关文章

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 这个需要安装下,

CentOS_6.7高可用服务Heartbeat_v3.0.4安装以及配置

CentOS_6.7高可用服务Heartbeat_v3.0.4安装以及配置 集群系统主要就2种: 高可用(High Availability)HA集群: 使用Heartbeat/keepalived等软硬件实现;也会称为"双机热备", "双机互备", "双机".  负载均衡群集(Load Balance Cluster):使用LinuxVirtual Server(LVS)/haproxy/nginx等软硬件实现; Heartbeat项目是 Li

CentOS-7.0.中安装与配置Tomcat-7的方法

安装说明 安装环境:CentOS-7.0.1406 安装方式:源码安装 软件:apache-tomcat-7.0.29.tar.gz 下载地址:http://tomcat.apache.org/download-70.cgi 安装前提 系统必须已安装配置JDK6+,安装请参考:在CentOS-6.3中安装与配置JDK-7. 安装tomcat 将apache-tomcat-7.0.29.tar.gz文件上传到/usr/local中执行以下操作: 代码如下: [plain] view plainco

zabbix-2.0.6安装

一.zabbix 服务端安装部署 (1)编译安装lnmp(过程略) (2)下载最新版zabbix服务端软件# http://www.zabbix.com/download.php (3) yum 安装系统必备软件yum -y  install net-snmp-devel curl-devel (4) 添加zabbix用户groupadd zabbixuseradd  -g zabbix -s /sbin/nologin zabbix (5)为zabbix用户创建数据库并添加用户mysql -u

Solr(5.1.0) 与Tomcat 从0开始安装与配置

1.什么是Solr? Solr是一个基于Lucene的Java搜索引擎服务器.Solr 提供了层面搜索.命中醒目显示并且支持多种输出格式(包括 XML/XSLT 和 JSON 格式).它易于安装和配置,而且附带了一个基于 HTTP 的管理界面.Solr已经在众多大型的网站中使用,较为成熟和稳定.Solr 包装并扩展了 Lucene,所以Solr的基本上沿用了Lucene的相关术语.更重要的是,Solr 创建的索引与 Lucene 搜索引擎库完全兼容.通过对Solr 进行适当的配置,某些情况下可能

AndroidStudio3.0的安装和配置笔记

开发Android项目要搭建开发环境.可以选择使用Eclipse安装ADT插件来开发安卓项目,也可以使用谷歌的官方IDE--AndroidStudio3.0. AndroidStudio3.0安装的具体的步骤如下(部分步骤顺序记不清楚了,但是大致思路是这样): 1.准备工作--本地部署JDK: 在安装AndroidStudio3.0之前,需要保证你的电脑上部署了JDK(java开发组件).由于本人之前一直用eclipse开发java项目,所以JDK自然是部署好了. 如果没有部署JDK,JDK的安

Apache2.4.34 + php 7.28 + MySQL8.0.12 安装及配置

服务端的学习 Apache2.4.34 的安装及配置 1.基本安装 最新的 Apache 已经不提供 Windows 的安装版本,所以我们这里使用的是解压版 -下载地址:https://www.apachelounge.com/download/ -使用说明:https://httpd.apache.org/docs/current/platform/windows.html 安装方式如下 1.注意:需要使用管理员身份运行命令行!!!2. 切换到 Apache 解压路径中的 bin 目录3.#

怎样在 CentOS 7.0 上安装和配置 VNC 服务器

这是一个关于怎样在你的 CentOS 7 上安装配置 VNC 服务的教程.当然这个教程也适合 RHEL 7 .在这个教程里,我们将学习什么是 VNC 以及怎样在 CentOS 7 上安装配置 VNC 服务器. 我们都知道,作为一个系统管理员,大多数时间是通过网络管理服务器的.在管理服务器的过程中很少会用到图形界面,多数情况下我们只是用 SSH 来完成我们的管理任务.在这篇文章里,我们将配置 VNC 来提供一个连接我们 CentOS 7 服务器的方法.VNC 允许我们开启一个远程图形会话来连接我们

IntelliJ IDEA 15.0.1安装与配置

操作步骤: 1.下载IntelliJ IDEA 15.0.1.exe,双击安装. 2.配置jdk 3.下载maven——apache-maven-3.2.5-bin,解压到D盘根目录下方便IDE引用. 4.新建项目 5.配置maven