测试centos7安装zabbix3.4

环境:centos7 x64 1501

实验ip为:192.168.31.77

1.安装必须软件包

yum -y install httpd mariadb mariadb-server php php-gd php-mysql php php-gd php-mysql php-bcmath php-mbstring

修改apache的配置文件,默认首页设置为php

vim /etc/httpd/conf/httpd.conf

找到:
AddType application/x-gzip .gz .tgz
在该行下面添加
AddType application/x-httpd-php .php
找到:
<IfModule dir_module>
    DirectoryIndex index.html
</IfModule>
将该行改为
<IfModule dir_module>
    DirectoryIndex index.html index.htm index.php
</IfModule>

增加php应用的支持

重启httpd

systemctl restart httpd.service

firewall-cmd --add-port=80/tcp --permanent

firewall-cmd --reload

2.配置zabbixzone package

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

3.安装zabbix server

yum install zabbix-server-mysql zabbix-web-mysql zabbix-agent zabbix-java-gateway -y

yum install zabbix-get

编辑/etc/httpd/conf.d/zabbix.conf

更改时区:

添加上海时区

php_value date.timezone Asia/Shanghai

重启httpd生效配置

开启mariadb

systemctl enable mariadb

systemctl  start mariadb

然后设置数据库密码777777

mysqladmin  -uroot password 777777

4.创建mariadb数据库和用户

mysql -uroot -p777777

create database zabbix character set utf8;

授权

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

刷新权限

flush privileges;

5.数据库导入zabbix  template

查看需要导入的数据表

ls -l  /usr/share/doc/zabbix-server-mysql-3.4.0/

登录zabbix数据库

mysql -uzabbix -pzabbix

使用zabbix数据库

use zabbix;

导入模板数据

---------------------------------------------------------------------------------------

备注:

2.0版本导入数据方法:

source /usr/share/doc/zabbix-server-mysql-2.4.8/create/schema.sql

source /usr/share/doc/zabbix-server-mysql-2.4.8/create/images.sql

source /usr/share/doc/zabbix-server-mysql-2.4.8/create/data.sql

或者:

# mysql -uroot -pttlsapwd zabbix <schema.sql

# mysql -uroot -pttlsapwd zabbix <images.sql

# mysql -uroot -pttlsapwd zabbix <data.sql

---------------------------------------------------------------------------------------

3.0版本以上导入数据:

zcat /usr/share/doc/zabbix-server-mysql-3.4.0/create.sql.gz | mysql -uzabbix -pzabbix zabbix

6.配置zabbix server

vi /etc/zabbix/zabbix_server.conf

开启参数

DBName=zabbix

DBUser=zabbix

DBPassword=zabbix

7.配置zabbix-agent

vi /etc/zabbix/zabbix_agentd.conf

修改添加zabbix-server的ip

Server=127.0.0.1

修改

ServerActive=127.0.0.1

修改

Hostname=127.0.0.1

8.修改PHP配置

编辑文件/etc/php.ini

max_execution_time = 600

max_input_time = 600

memory_limit = 256

post_max_size = 32M

upload_max_filesize = 16M

date.timezone = Asia/Shanghai

9.修改Firewall和selinux设置

开放zabbix端口10050 和10051

firewall-cmd --permanent --add-port=10050/tcp

firewall-cmd --permanent --add-port=10051/tcp

systemctl restart firewalld

如果使用selinux,运行一下命令使apache可以和zabbix通信

setsebool -P  httpd_can_connet_zabbix=1

启动zabbix-server和zabbix-agent,重启httpd,并设置开机自动启动

systemctl start zabbix-server

systemctl start zabbix-agent

systemctl restart httpd

systemctl restart mariadb

systemctl enable zabbix-server

systemctl enable zabbix-agent

11.通过控制台配置zabbix(2.4和3.4图示基本相同)

http://192.168.31.77/zabbix/setup.php

12.客户端安装:

windows客户端安装

1.下载客户端:zabbix_agentd.zip

2.在c盘创建文件夹zabbix,解压conf和bin目录

3.将conf下的zabbix_agentd.win.conf 修改为zabbix_agentd.conf

4.修改配置文件zabbix_agentd.conf:

  LogFile=C:\zabbix\zabbix_agentd.log

  Server=192.168.31.77 备注:-----zabbix server 源地址

  ServerActive=192.168.31.150

  Hostname=192.168.31.150 备注: ------本计算机名或IP

.安装:

  cd C:\zabbix\bin

  zabbix_agentd.exe -c "C:\zabbix\conf\zabbix_agentd.conf" -i

启动:

  zabbix_agentd.exe -c "C:\zabbix\conf\zabbix_agentd.conf" -s

-----------------------------------------

linux客户端:

rpm -Uv http://repo.zabbix.com/zabbix/2.4/rhel/7/x86_64/zabbix-release-2.4-1.el7.noarch.rpm
yum install zabbix-sender zabbix-agent zabbix -y

sed -i "s/Server=127.0.0.1/Server=192.168.31.77/" /etc/zabbix/zabbix_agentd.conf
sed -i "s/ServerActive=127.0.0.1/ServerActive=192.168.31.77/" /etc/zabbix/zabbix_agentd.conf
sed -i "s/Hostname=Zabbix server/Hostname=192.168.31.50/" /etc/zabbix/zabbix_agentd.conf 
systemctl enable zabbix-agent
systemctl start zabbix-agent
netstat -anlpt
firewall-cmd --add-port=10050/tcp --permanent
firewall-cmd --reload

13、zabbix图形中文乱码

cd /usr/share/zabbix/include
[[email protected] include]# vi defines.inc.php

define('ZBX_FONT_NAME','simkai');

define('ZBX_GRAPH_FONT_NAME','simkai')

然后下载微软楷体字体,改名为simkai传入 /usr/share/zabbix/fonts目录下即可
时间: 2024-10-12 07:55:11

测试centos7安装zabbix3.4的相关文章

centos7安装zabbix3.0.3

之前鼓捣过zabbix3.0,但是由于事就给放一边了,记录一下方便自己以后使用. centos7安装zabbix3.0.3 检查是否关闭selinux [[email protected] ~]# getenforce Disabled 如果没有关闭可以使用setenforce 0来操作关闭,只不过是临时关闭而已 检查是否关闭firewalld [[email protected] ~]# systemctl stop firewalld.service [[email protected] ~

centos7安装zabbix3.0超详细步骤解析

安装前准备 1.0 系统时间同步 在crontab中添加 #crontab -l 00 00 * * * /usr/sbin/ntpdate -u x.x.x.x #选择ntp服务器 #systemctl restart crond 1.1 安装依赖包: yum -y install wget net-snmp-devel net-snmp-utils OpenIPMI-devel httpd openssl-devel java lrzsz fping-devel libcurl-devel

CentOS7安装Zabbix3.0版本应用

一.Zabbix介绍 zabbix 简介   Zabbix 是一个高度集成的网络监控解决方案,可以提供企业级的开源分布式监控解决方案,由一个国外的团队持续维护更新,软件可以自由下载使用,运作团队靠提供收费的技术支持赢利   zabbix是一个基于Web界面的,提供分布式系统监控以及网络监视功能的企业级的开源解决方案.   zabbix能监视各种网络参数,保证服务器系统的安全运营,并提供灵活的通知机制以让系统管理员快速定位/解决存在的各种问题   zabbix主要由2部分构成zabbix serv

centos7安装zabbix3.2,Nginx+PHP+MySQL

1.centos7最小化安装,登录后设置ip vi /etc/sysconfig/network-scripts/ifcfg-ens33 ##################################################### TYPE=Ethernet BOOTPROTO=none DEFROUTE=yes PEERDNS=yes PEERROUTES=yes IPV4_FAILURE_FATAL=no IPV6INIT=yes IPV6_AUTOCONF=yes IPV6_

centos7安装zabbix3.4.1

linux 监控简介: cacti.nagios.zabbix.smokeping.open-falcon等等 cacti.smokeping偏向于基础监控,成图非常漂亮,偏重网络设备 cacti.nagios.zabbix服务端监控中心,需要php环境支持,其中zabbix和cacti都需要mysql作为数据存储,nagios不用存储历史数据,注重服务或者监控项的状态,zabbix会获取服务或者监控项目的数据,会把数据记录到数据库里,从而可以成图 open-falcon为小米公司开发,开源后受

Centos7安装Zabbix3.0

1.安装服务器端包 1 2 3 4 #rpm -ivh http://repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm #yum clean all #yum install zabbix-server-mysql zabbix-web-mysql #yum -y install mariadb-server 2.启动mariadb 1 2 #systemctl start mariadb-s

Centos7 安装zabbix3.0 服务端 详细

参考: https://www.cnblogs.com/37yan/p/6879218.html http://blog.csdn.net/hao134838/article/details/57122516 http://blog.csdn.net/u014057054/article/details/66476990 1.导入源 sudo rpm -ivh http://repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1

centos7安装zabbix3

链接:http://www.cnblogs.com/yangdonghao/p/7130855.html

Centos7安装RocketMQ及配置测试

环境 Centos7 RocketMQ 3.2.6 安装位置 /usr/local/alibaba-rockermq 外网ip 182.254.145.66 内网ip 10.105.23.114 安装 wget https://github.com/alibaba/RocketMQ/releases/download/v3.2.6/alibaba-rocketmq-3.2.6.tar.gz tar alibaba-rocketmq-3.2.6.tar.gz cd  alibaba-rocketm