博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
zabbix agent item
阅读量:6132 次
发布时间:2019-06-21

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

下载zabbix最新包: 我们找源码包 点击download即可

官方部署文档:

首先解压源码包:

tar -zxvf zabbix-3.2.0.tar.gz
创建zabbix用户:
groupadd zabbix
useradd -g zabbix zabbix
创建zabbix数据库:
预编译配置生成makefile:
./configure --enable-server --enable-agent --with-mysql --enable-ipv6 --with-net-snmp --with-libcurl
编译安装:
make&& make install
进行配置文件修改
服务端:/usr/local/etc/zabbix_server.conf
客户端:/usr/local/etc/zabbix_agentd.conf
启动server:
zabbix_server
启动agentd:
zabbix_server

配置lnmp或者lamp环境

略(注意curl1.7.2以上版本 php5.6)
附:
php yum安装:
rpm -Uvh
yum install httpd mysql-server mysql-devel net-snmp-devel gcc php54w php54w-gdphp54w-bcmath php54w-xml php54w-ldap php54w-mbstring php54w-mysql php54w-cliphp54w-common php54w-pdo -y
php 源码包安装:
创建php用户 :
groupadd -r php && useradd -r -g php -s /bin/false -d /usr/local/php7 -M php
预编译配置生成makefile:
./configure' '--prefix=/usr/local/php' '--with-pdo-pgsql' '--with-zlib-dir' '--with-freetype-dir' '--enable-mbstring' '--with-libxml-dir=/usr' '--enable-soap' '--enable-calendar' '--with-curl' '--with-mcrypt' '--with-gd' '--with-pgsql' '--disable-rpath' '--enable-inline-optimization' '--with-bz2' '--with-zlib' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-pcntl' '--enable-mbregex' '--enable-exif' '--enable-bcmath' '--with-mhash' '--enable-zip' '--with-pcre-regex' '--with-pdo-mysql' '--with-mysqli' '--with-jpeg-dir=/usr' '--with-png-dir=/usr' '--enable-gd-native-ttf' '--with-openssl' '--with-fpm-user=www-data' '--with-fpm-group=www-data' '--with-libdir=/lib/x86_64-linux-gnu/' '--enable-ftp' '--with-gettext' '--with-xmlrpc' '--with-xsl' '--enable-opcache' '--enable-fpm' '--with-iconv' '--with-xpm-dir=/usr
如果遇到问题可以使用yum安装所需要的依赖包即可
配置php-fpm启动脚本启动php

转载地址:http://otoua.baihongyu.com/

你可能感兴趣的文章
Get到的优秀博客网址
查看>>
dubbo
查看>>
【Git入门之四】操作项目
查看>>
老男孩教育每日一题-第107天-简述你对***的理解,常见的有哪几种?
查看>>
Python学习--time
查看>>
在OSCHINA上的第一篇博文,以后好好学习吧
查看>>
高利率时代的结局,任重道远,前途叵测
查看>>
phpcms v9栏目列表调用每一篇文章内容方法
查看>>
python 自定义信号处理器
查看>>
luov之SMTP报错详解
查看>>
软件概要设计做什么,怎么做
查看>>
dwr
查看>>
java的特殊符号
查看>>
word2010中去掉红色波浪线的方法
查看>>
fabric上下文管理器(context mangers)
查看>>
JQuery-EasyUI Datagrid数据行鼠标悬停/离开事件(onMouseOver/onMouseOut)
查看>>
并发和并行的区别
查看>>
php小知识
查看>>
Windows下安装、运行Lua
查看>>
Nginx 反向代理、负载均衡、页面缓存、URL重写及读写分离详解(二)
查看>>