博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos7下zabbix安装与部署
阅读量:5880 次
发布时间:2019-06-19

本文共 6159 字,大约阅读时间需要 20 分钟。

hot3.png

https://www.cnblogs.com/Sungeek/p/9069999.html

 

 

 

1.Zabbix介绍

  • zabbix是一个基于WEB界面的提供分布式系统监视以及网络监视功能的企业级的开源解决方案。

  • zabbix能监视各种网络参数,保证服务器系统的安全运营;并提供灵活的通知机制以让系统管理员快速定位/解决存在的各种问题。

  • zabbix由2部分构成,zabbix server与可选组件zabbix agent。

  • zabbix server可以通过SNMP,zabbix agent,ping,端口监视等方法提供对远程服务器/网络状态的监视,数据收集等功能,它可以运行在Linux,Solaris,HP-UX,AIX,Free BSD,Open BSD,OS X等平台上。

 

2.LAMP/LNMP介绍

  • LAMP:Linux+Apache+Mysql/MariaDB+Perl/PHP/Python一组常用来搭建动态网站或者服务器的开源软件,本身都是各自独立的程序,但是因为常被放在一起使用,拥有了越来越高的兼容度,共同组成了一个强大的Web应用程序平台。

  • LNMP:LNMP指的是一个基于CentOS/Debian编写的Nginx、PHP、MySQL、phpMyAdmin、eAccelerator一键安装包。可以在VPS、独立主机上轻松的安装LNMP生产环境。
  • L:linux

  • A:apache

  • N:nginx

  • M:mysql,mariaDB

  • P:php,python,perl

 

 

3.Zabbix安装与部署

Zabbix的安装

关闭SeLinux临时关闭:setenforce 0

永久关闭:vi /etc/selinux/config

关闭防火墙

1、临时关闭

systemctl stop firewalld.service

2、永久关闭

systemctl disable firewalld.service

安装环境

LAMP 

1、安装apache

yum install -y httpd

httpd服务开机进行自启

systemctl enable httpd

启动httpd服务

Systemctl start httpd

2、安装mysql

因为7版本mysql要收费,所以我们安装mariadb

yum install -y mariadb mariadb-server

开机自启动

Systemctl enable mariadb

运行服务

Systemctl start mariadb

查看Mariadb是否安装成功

3、安装php环境

yum install -y php php-mysql

 

4、安装zabbix

(1)下载包

rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm

(2)安装zabbix的包

yum install -y zabbix-server-mysql zabbix-get zabbix-web zabbix-web-mysql zabbix-agent zabbix-sender

4、创建一个zabbix库并设置为utf8的字符编码格式

create database zabbix character set utf8 collate utf8_bin;

创建账户并且授权设置密码

grant all privileges on zabbix.* to zabbix@localhost identified by 'zabbix';

给来自loclhost的用户zabbxi分配可对数据库zabbix所有表进行所有操作的权限,并且设定密码为zabbix

刷新

flush privileges;

exit退出

5、导入表

切换到此目录下

cd /usr/share/doc/zabbix-server-mysql-3.2.10/

进行解压

gunzip create.sql.gz

对表进行导入

6、配置zabbix server配置文件

配置文件目录

cd /etc/zabbix

对zabbix_server.conf进行配置

运行zabbix-server服务

开机自启zabbix-server服务

7、配置php

cd /etc/httpd/conf.d

配置时间

vi zabbix.conf

Systemctl restart httpd

8、登陆zabbix网址设置

192.168.85.11/zabbix

 

password是我们设置的数据库密码zabbix

登陆账户是Admin

密码是zabbix

9、设置中文

 

10、对服务器自身进行监控

11、解决中文乱码无法显示的问题

从我们电脑win7里面找到黑体右键复制到桌面然后拉到zabbix服务器上面

直接修改字体名字

切换到这个目录下面: /usr/share/zabbix/fonts

现在的中文字体是显示正常的了

 

 

Sungeek博客

一名运维小菜鸟

 

安装及设置Zabbix-agent

安装zabbix-agent

rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm

[root@ecs-5c78-0002 ~]#  rpm -ivh  https://mirrors.aliyun.com/zabbix/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.centos.noarh.rpm
Retrieving https://mirrors.aliyun.com/zabbix/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-1.el7.centos.noarch.rpm
Preparing...                          ################################# [100%]
Updating / installing...
   1:zabbix-release-3.4-1.el7.centos  ################################# [100%]
[root@ecs-5c78-0002 ~]#  yum install zabbix-agent –y
或者使用官网提供的链接,然后rpm -ivh进行安装:rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-agent-3.4.0-1.el7.x86_64.rpm

配置zabbix-agent

[root@ecs-5c78-0002 ~]# vim /etc/zabbix/zabbix_agentd.conf 

修改server IP地址

修改为zabbix-server服务端的IP地址

修改ServerActive IP地址

修改为zabbix-server服务器端的IP地址

启动zabbix-agent并设置开机启动

[root@ecs-5c78-0002 ~]# systemctl start zabbix-agent.service 

[root@ecs-5c78-0002 ~]# systemctl enable zabbix-agent.service 
Created symlink from /etc/systemd/system/multi-user.target.wants/zabbix-agent.service to /usr/lib/systemd/system/zabbix-agent.service.
--------------------- 
作者:友人a笔记 
来源:CSDN 
原文:https://blog.csdn.net/tladagio/article/details/79056421 
版权声明:本文为博主原创文章,转载请附上博文链接!

五、安装及设置Zabbix-agent

安装zabbix-agent
[root@ecs-5c78-0002 ~]#  rpm -ivh  https://mirrors.aliyun.com/zabbix/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-1.el7.centos.noarh.rpm
Retrieving https://mirrors.aliyun.com/zabbix/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-1.el7.centos.noarch.rpm
Preparing...                          ################################# [100%]
Updating / installing...
   1:zabbix-release-3.4-1.el7.centos  ################################# [100%]
[root@ecs-5c78-0002 ~]#  yum install zabbix-agent –y
或者使用官网提供的链接,然后rpm -ivh进行安装:rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-agent-3.4.0-1.el7.x86_64.rpm

配置zabbix-agent

[root@ecs-5c78-0002 ~]# vim /etc/zabbix/zabbix_agentd.conf 

修改server IP地址

修改为zabbix-server服务端的IP地址

修改ServerActive IP地址

修改为zabbix-server服务器端的IP地址

启动zabbix-agent并设置开机启动

[root@ecs-5c78-0002 ~]# systemctl start zabbix-agent.service 

[root@ecs-5c78-0002 ~]# systemctl enable zabbix-agent.service 
Created symlink from /etc/systemd/system/multi-user.target.wants/zabbix-agent.service to /usr/lib/systemd/system/zabbix-agent.service.
六、Zabbix-server添加监控主机
手动添加监控主机

指定zabbix-agent机器IP

增加监控模板,只有添加了模板才会真正监控到主机

添加图形,以便观察数据

监控成功(客户端要关闭防火墙或者放通端口,要不ZBX图标会红色报错)

自动发现主机

添加发现规则

查看自动发现的主机

到此,zabbix简单监控就部署好了。

--------------------- 
作者:友人a笔记 
来源:CSDN 
原文:https://blog.csdn.net/tladagio/article/details/79056421 
版权声明:本文为博主原创文章,转载请附上博文链接!

zabbix agentd 跨网段连接 zabbix server注意项

 (2018-03-01 18:29:21)

22162850_eoMp.gif转载

标签: 

 

分类: 

当跨网段时,zabbix_agentd.conf 中 Server的值要填写所有的远程zabbix_server主机的ip地址,甚至要把所在的网关写上去,以半角逗号“,”分开,如下面配置的红色字体部分。

 

ServerActive的值也是填写远程zabbix_server的ip地址,EnableRemoteCommands=1 。

 

### Option: Server

#       List of comma delimited IP addresses, optionally in CIDR notation, or hostnames of Zabbix servers.

#       Incoming connections will be accepted only from the hosts listed here.

#       If IPv6 support is enabled then '127.0.0.1', '::127.0.0.1', '::ffff:127.0.0.1' are treated equally and '::/0' will allow any IPv4 or IPv6 address.

#       '0.0.0.0/0' can be used to allow any IPv4 address.

#       Example: Server=127.0.0.1,192.168.1.0/24,::1,2001:db8::/32,zabbix.domain

#

# Mandatory: no

# Default:

# Server=

 

 Server=192.168.1.8,192.168.2.8,192.168.1.0/24,192.168.2.0/24

 

### Option: ServerActive

#       List of comma delimited IP:port (or hostname:port) pairs of Zabbix servers for active checks.

#       If port is not specified, default port is used.

#       IPv6 addresses must be enclosed in square brackets if port for that host is specified.

#       If port is not specified, square brackets for IPv6 addresses are optional.

#       If this parameter is not specified, active checks are disabled.

#       Example: ServerActive=127.0.0.1:20051,zabbix.domain,[::1]:30051,::1,[12fc::1]

#

# Mandatory: no

# Default:

# ServerActive=

 

ServerActive=192.168.1.8,192.168.2.8

 

EnableRemoteCommands=1

 

 

转载于:https://my.oschina.net/u/3367404/blog/2249306

你可能感兴趣的文章
oracle里的正则表达式
查看>>
【CentOS 7笔记23】, Logical Volume Manager逻辑卷管理#
查看>>
被标记为事务的方法互相调用的坑(下)
查看>>
自定义Docker容器镜像并将其上传到DockerHub中
查看>>
女性视角有利于人工智能平衡发展
查看>>
IT兄弟连 JavaWeb教程 JSP语法
查看>>
原生JS实现最简单的图片懒加载
查看>>
java内存分析工具jstack
查看>>
OSChina 周四乱弹 —— 如何正确殴打男友
查看>>
OSChina 周一乱弹 —— 一个游戏值9999个比特币
查看>>
Centos 同步系统时间和Internet时间
查看>>
sort()
查看>>
ldap接触(2)之修改AD域用户密码
查看>>
数据库的隔离级别
查看>>
在页面中实现一个超简单的“复制按钮”
查看>>
手动运行脚本执行正常而放入crontab调用hadoop命令没有执行成功
查看>>
Android进程间通信机制Binder应用层分析
查看>>
我对Lamport Logical Clock的理解
查看>>
Spark Driver启动流程 代码解析
查看>>
名片管理系统(添加及查询功能)
查看>>