设为首页 收藏本站
查看: 1248|回复: 0

cacti&nagios安装和整合详解(亲身部署加排错版)

[复制链接]

尚未签到

发表于 2019-1-16 11:34:30 | 显示全部楼层 |阅读模式
  . 系统环境
Red Hat Enterprise Linux AS>Kernel \r on an \m(如果版本不同,有的包不同!). 先部署LAMP平台,为cacti/nagios做展示;apache:httpd-2.2.11.tar.gz安装编译:# tar zxf httpd-2.2.11.tar.gz# cd httpd-2.2.11#./configure --prefix=/usr/local/apache --enable-so --enable-rewrite --enable-mods-shared=most//使支持dso模式,使支持URL重写,告诉编译器将所有标准模块都编译为DSO模块# make && make install修改主配置文件:vim /usr/local/apache/conf/httpd.confDirectoryIndex index.php index.html         //修改默认启动页  DocumentRoot "/usr/local/apache/htdocs/cacti"          //指定主目录
ServerName 192.168.175.100:80查找:AddType application/x-compress .Z在其下加入:AddType application/x-tar .tgzAddType application/x-httpd-php .phpAddType application/x-httpd-php .php .php5AddType image/x-icon .ico保存退出后,启动服务看是否正确显示页面!mkdir /usr/local/apache/htdocs/cacti/usr/local/apache/bin/apachectl start[root@localhost ~]# curl http://192.168.175.100It works!启动正常 mysql:我原来用的是源码安装,但由于后面安装udoutils无法关联上mysql且可能是缺包缺库的问题,故改用rpm包(用于rrd文件的存储)安装需包:perl-DBD-MySQL-2.9004-3.1.i386.rpmperl-DBI-1.40-9.i386.rpmlibdbi-dbd-mysql-0.6.5-10.RHEL4.1.i386.rpmmysql-4.1.22-2.el4.i386.rpmmysql-bench-4.1.22-2.el4.i386.rpmmysqlclient10-3.23.58-4.RHEL4.1.i386.rpmmysqlclient10-devel-3.23.58-4.RHEL4.1.i386.rpmmysql-devel-4.1.22-2.el4.i386.rpmmysql-server-4.1.22-2.el4.i386.rpmphp-mysql-4.3.9-3.26.i386.rpmrpm -ivh libdbi-dbd-mysql-0.6.5-10.RHEL4.1.i386.rpm mysql-4.1.22-2.el4.i386.rpm mysql-bench-4.1.22-2.el4.i386.rpm mysqlclient10-3.23.58-4.RHEL4.1.i386.rpm mysqlclient10-devel-3.23.58-4.RHEL4.1.i386.rpm mysql-devel-4.1.22-2.el4.i386.rpm mysql-server-4.1.22-2.el4.i386.rpm perl-DBD-MySQL-2.9004-3.1.i386.rpm perl-DBI-1.40-9.i386.rpm  --force配置启动:mysql_install_dbservice mysqld start查看进程是否启动:# ps -ef | grep mysqld# mysql -uroot -pphp:php-5.2.10.tar.gz安装编译:先装一些支持cacti的和php相关的包:(zlib-1.2.3.tar.gz,libpng-1.2.16.tar.gz,freetype-2.3.4.tar.gz,jpegsrc.v6b.tar.gz,fontconfig-2.4.2.tar.gz,gd-2.0.35.tar.gz,libxml2-2.6.32.tar.gz,php-5.2.10.tar.bz2)安装zlib(zlib-1.2.3.tar.gz)tar zxf zlib-1.2.3.tar.gzcd zlib-1.2.3./configure --prefix=/usr/local/zlibmake && make install安装libpng(libpng-1.2.16.tar.gz)这里的makefile不是用./configure生成,而是直接从scripts/里拷一个tar zxf libpng-1.2.16.tar.gzcd libpng-1.2.16cd scripts/mv makefile.linux ../makefilecd ..make && make install安装freetype(freetype-2.3.4.tar.gz)tar zxf freetype-2.3.4.tar.gzcd freetype-2.3.4./configure --prefix=/usr/local/freetypemake && make install安装jpeg(jpegsrc.v6b.tar.gz)这里configure一定要带--enable-shared参数,不然,不会生成共享库tar zxf jpegsrc.v6b.tar.gzcd jpeg-6b/mkdir /usr/local/libjpegmkdir /usr/local/libjpeg/includemkdir /usr/local/libjpeg/binmkdir /usr/local/libjpeg/libmkdir /usr/local/libjpeg/manmkdir /usr/local/libjpeg/man/man1./configure --prefix=/usr/local/libjpeg --enable-shared --enable-staticmake && make install安装Fontconfig(fontconfig-2.4.2.tar.gz)tar zxf fontconfig-2.4.2.tar.gzcd fontconfig-2.4.2       ./configure --with-freetype-config=/usr/local/freetypemake && make insall//这一步报错了,我就那么过去了,后面能起来,但不知道有无影响!解决方法: /configure --with-freetype-config=/usr/local/freetype/bin/freetype-config应该用freetype下的可执行程序来编译!安装GD(gd-2.0.34.tar.gz)tar -zxvf gd-2.0.34.tar.gzcd gd-2.0.34./configure --prefix=/usr/local/libgd --with-png --with-freetype=/usr/local/freetype --with-jpeg=/usr/local/libjpegmake && make install编辑/etc/ld.so.conf文件,添加以下几行到此文件中:# vi /etc/ld.so.conf /usr/local/zlib/lib /usr/local/freetype/lib /usr/local/libjpeg/lib /usr/local/libgd/lib# ldconfig -v      //并执行ldconfig命令,使用动态装入器装载找到共享库安装libxml(libxml2-2.6.32.tar.gz)# tar -zxvf libxml2-2.6.32.tar.gz# cd libxml2-2.6.32# ./configure  --prefix=/usr/local/libxml2# make# make install安装net-snmp(net-snmp-5.2.4.tar.gz)# tar -zxvf net-snmp-5.2.4.tar.gz# cd net-snmp-5.2.4# ./configure --prefix=/usr/local/net-snmp --enable-developer# make# make install# ln -s /usr/local/net-snmp/bin/* /usr/local/bin/# cp EXAMPLE.conf /usr/local/net-snmp/share/snmp/snmpd.conf# vi /usr/local/net-snmp/share/snmp/snmpd.conf         //修改snmpd.conf(修改COMMUNITY、允许抓取snmp数据的主机、抓取数据范围等)。以下是我的############snmpd.conf配置#################sec.name  source          communitycom2sec local     localhost       public##########################################被监控端指向监控端IP。#       sec.name  source          community  com2sec mynetwork 192.168.8.222      public
########################################### /usr/local/net-snmp/sbin/snmpd     //启动SNMP服务弄好之后,可以先用命令测试下配置是否有误:#snmpwalk -v 2c -c public 192.168.8.222如抓到包则成功;如显示Timeout等字样,则失败,可以用cat /var/log/snmpd.log查看安装php(php-5.2.10.tar.bz2)# tar jxf php-5.2.10.tar.bz2# cd php-5.2.10# ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with-mysql=/var/lib/mysql --with-gd=/usr/local/libgd --enable-gd-native-ttf --with-ttf --enable-gd-jis-conv --with-freetype-dir=/usr/local/freetype --with-jpeg-dir=/usr/local/libjpeg --with-png-dir=/usr --with-zlib-dir=/usr/local/zlib --enable-xml --enable-mbstring --enable-sockets --with-snmp --with-pdo-mysql --enable-short-tags# make# make install# cp php.ini-recommended /usr/local/php/lib/php.ini   //复制php配置文件# ln -s /usr/local/php/bin/* /usr/local/bin/      //建立符合链接# /usr/local/apache/bin/apachectl restart //重新启动apache服务三.安装cacti.nagios及相关包安装RRDTool(rrdtool-1.2.23.tar.gz)由于rrdtool-1.2.23需要一些库文件支持,故需先安装配置支持的环境,然后编译安装。直接运行以下bash脚本就可以完成安装:注 意:将cgilib-0.5.tar.gz、zlib-1.2.3.tar.gz、libpng-1.2.16.tar.gz、freetype- 2.3.5.tar.gz、libart_lgpl-2.3.17.tar.gz、rrdtool-1.2.23.tar.gz放到/usr/local /_temp/rrdtool目录下,将脚本保存为/usr/local/_temp/rrdtool/rrdtoolinstall.sh,并给执行权 限chmod u+x /usr/local/_temp/rrdtool/rrdtoolinstall.sh。以下链接是我重新打好的一个rrdtool-1.2.23的安装包,里面包括了所有用到的库文件和安装脚本,下载解压后执行脚本sh rrdinstall.sh即可以完成RRDTool的安装。#!/bin/shBUILD_DIR=`pwd`INSTALL_DIR=/usr/local/rrdtool########install cgilib-0.5#####################3#####cd $BUILD_DIRtar zxf cgilib-0.5.tar.gzcd cgilib-0.5make CC=gcc CFLAGS=&quot;-O3 -fPIC -I.&quot;mkdir -p $BUILD_DIR/lb/includecp *.h $BUILD_DIR/lb/includemkdir -p $BUILD_DIR/lb/libcp libcgi* $BUILD_DIR/lb/lib########install zlib-1.2.3#####################3#####cd $BUILD_DIRtar zxf zlib-1.2.3.tar.gzcd zlib-1.2.3env CFLAGS=&quot;-O3 -fPIC&quot; ./configure --prefix=$BUILD_DIR/lbmakemake install########install libpng-1.2.16#####################3#####cd $BUILD_DIRtar zxvf libpng-1.2.16.tar.gzcd libpng-1.2.16env CPPFLAGS=&quot;-I$BUILD_DIR/lb/include&quot; LDFLAGS=&quot;-L$BUILD_DIR/lb/lib&quot; CFLAGS=&quot;-O3 -fPIC&quot; \    ./configure --disable-shared --prefix=$BUILD_DIR/lbmakemake install########install freetype-2.3.5#####################3#####cd $BUILD_DIRtar zxvf freetype-2.3.5.tar.gzcd freetype-2.3.5env CPPFLAGS=&quot;-I$BUILD_DIR/lb/include&quot; LDFLAGS=&quot;-L$BUILD_DIR/lb/lib&quot; CFLAGS=&quot;-O3 -fPIC&quot; \    ./configure --disable-shared --prefix=$BUILD_DIR/lbmakemake install########install libart_lgpl-2.3.17#####################3#####cd $BUILD_DIRtar zxvf libart_lgpl-2.3.17.tar.gzcd libart_lgpl-2.3.17env CFLAGS=&quot;-O3 -fPIC&quot; ./configure --disable-shared --prefix=$BUILD_DIR/lbmakemake install########install rrdtool-1.2.23#####################3########cd $BUILD_DIRtar zxf rrdtool-1.2.23.tar.gzcd rrdtool-1.2.23./configure --prefix=$INSTALL_DIR --disable-python --disable-tcl && make && make install ####################################################### ln -s /usr/local/rrdtool/bin/* /usr/local/bin/    //完成后建立符号连接# rrdtool -v    //查看rrdtool版本,测试rrdtool是否安装成功安装cacti(cacti-0.8.7e.tar.gz)# tar -zxvf cacti-0.8.7e.tar.gz# mv cacti-0.8.7e /usr/local/apache/htdocs/cacti# cd /usr/local/apache/htdocs/cacti/cacti-0.8.7e# mv * ../# vi /usr/local/apache/htdocs/cacti/include/config.phpconfig.php文件中需要修改的内容$database_type = &quot;mysql&quot;;$database_default = &quot;cacti&quot;;$database_hostname = &quot;zs&quot;;$database_username = &quot;cacti&quot;;$database_password = &quot;cacti&quot;;$database_port = &quot;3306&quot;;# vi /usr/local/apache/htdocs/cacti/include/global.phpglobal.php文件中修改的内容$database_type = &quot;mysql&quot;;$database_default = &quot;cacti&quot;;$database_hostname = &quot;zs&quot;;$database_username = &quot;cacti&quot;;$database_password = &quot;cacti&quot;;$database_port = &quot;3306&quot;; # useradd cacti       //添加cacti用户# chown -R cacti /usr/local/apache/htdocs/cacti/rra# chgrp -R cacti /usr/local/apache/htdocs/cacti 创建cacti数据库:# mysql -uroot -p  //登录mysql 配置cacti数据库mysql> create database cacti;mysql> grant all on cacti.* to cacti@localhost>mysql>exit# mysql -uroot -p -D cacti –h localhost < /usr/local/apache/htdocs/cacti/cacti.sql     //导入cacti数据库初始化脚本 # su cacti   //为cacti用户添加cron任务# crontab -e   //编辑定时任务*/5 * * * * /usr/local/bin/php /usr/local/apache/htdocs/cacti/poller.php > /dev/null 2>&1# /usr/local/bin/php /usr/local/apache/htdocs/cacti/poller.php完成cacti安装:IE输入http://zs


cacti安装成功!安装 (nagios-3.2.3.tar.gz)及其插件(nagios-plugins-1.4.15.tar.gz)useradd nagiosmkdir /usr/local/nagioschown -R nagios.nagios /usr/local/nagiostar zxf nagios-3.2.3.tar.gzcd nagios-3.2.3./configure --prefix=/usr/local/nagios --with-gd-lib=/usr/local/lib --with-gd-inc=/usr/local/includemake allmake install //来安装主程序,CGI和HTML文件make install-init //在/etc/rc.d/init.d安装启动脚本make install-config //来安装示例配置文件make install-commandmode //来配置目录权限cd ..tar zxf nagios-plugins-1.4.15.tar.gzcd nagios-plugins-1.4.15./configure --with-nagios-user=nagios --with-nagios-group=nagios --enable-redhat-pthread-workaround --prefix=/usr/local/nagiosmake && make install设置nagios登录帐号密码:vim /usr/local/apache/conf/httpd.confScriptAlias /nagios/cgi-bin /usr/local/nagios/sbin    Options ExecCGI    AllowOverride None    Order allow,deny    Allow from all    AuthName &quot;Nagios Access&quot;    AuthType BasicAuthUserFile /usr/local/nagios/etc/htpasswd//用于此目录访问身份验证的文件    Require valid-user Alias /nagios /usr/local/nagios/share    Options None    AllowOverride None    Order allow,deny    Allow from all    AuthName &quot;Nagios Access&quot;AuthType BasicAuthUserFile /usr/local/nagios/etc/htpasswd//用于此目录访问身份验证的文件    Require valid-user修改完毕后重启apacheapachectl restart增加验证用户:也就是通过web访问nagios的时候,必须要用这个用户登陆.在这里我们增加用户test:密码为123456/usr/local/apache/bin/htpasswd -mbc /usr/local/nagios/etc/htpasswd test 123456查看认证文件的内容less /usr/local/nagios/etc/htpasswdtest:gQTtXNdyB21jw    前半部分是用户名test,后面是加密后的密码配置nagios修改nagios的主配置文件nagios.cfgcd /usr/local/nagios/etc(不要新建,用原来的改,不然监控主机会一直DOWN)cp nagios.cfg nagios.cfg.bakvim nagios.cfg注释行#cfg_file=/opt/nagios/etc/objects/localhost.cfgcfg_file=/usr/local/nagios/etc/objects/contactgroups.cfg //联系组配置文件路径cfg_file=/usr/local/nagios/etc/objects/hostgroups.cfg     //主机组配置文件路径cfg_file=/usr/local/nagios/etc/objects/hosts.cfg          //主机配置文件路径cfg_file=/usr/local/nagios/etc/objects/services.cfg       //服务配置文件路径cfg_file=/usr/local/nagios/etc/objects/contacts.cfg       //联系人配置文件路径cfg_file=/usr/local/nagios/etc/objects/timeperiods.cfg    //监视时段配置文件路径cfg_file=/usr/local/nagios/etc/objects/templates.cfg//模板配置文件路径cfg_file=/usr/local/nagios/etc/objects/commands.cfg            //命令配置文件路径注:有些文件不存在,手动创建即可。将check_external_commands=0改为check_external_commands=1\\这行的作用是允许在web界面下执行重启nagios、停止主机/服务检查等操作将command_check_interval的值从默认的1改成command_check_interval=10s\\根据自己的情况定这个命令检查时间间隔,不要太长也不要太短 修改CGI脚本控制文件cgi.cfgcp cgi.cfg cgi.cfg.bakvim cgi.cfguse_authentication=1default_user_name=testauthorized_for_system_information=nagiosadmin,testauthorized_for_configuration_information=nagiosadmin,testauthorized_for_system_commands=nagiosadmin,testauthorized_for_all_services=nagiosadmin,testauthorized_for_all_hosts=nagiosadmin,testauthorized_for_all_service_commands=nagiosadmin,testauthorized_for_all_host_commands=nagiosadmin,test修改监视时段配置文件timeperiods.cfgcp timeperiods.cfg timeperiods.cfg.bak> timeperiods.cfgvim timeperiods.cfgdefine timeperiod{        timeperiod_name         24x7   //时间段的名称,这个地方不要有空格        alias                   24 Hours A Day,7Days A Week        sunday                  00:00-24:00        monday                  00:00-24:00        tuesday                 00:00-24:00        wednesday               00:00-24:00        thursday                00:00-24:00        friday                  00:00-24:00        saturday                00:00-24:00        }定义了一个监控时间段,它的名称是24x7,监控的时间是每天全天24小时定义联系人,创建配置文件contacts.cfgcp contacts.cfg contacts.cfg.bak> contacts.cfgvim contacts.cfgdefine contact{        contact_name                    test   //联系人的名称,这个地方不要有空格        alias                           sys admin        service_notification_period        24x7        host_notification_period          24x7        service_notification_options       w,u,c,r        host_notification_options         d,u,r        service_notification_commands    notify-service-by-email        host_notification_commands      notify-host-by-email        email                          zs@test.com        pager                          1338757xxxx        address1                       xxxxx.xyyy@icq.com        address2                       555-555-5555        }创建了一个名为test的联系人,下面列出其中重要的几个选项做说明service_notification_period     24x7服务出了状况通知的时间段,这个时间段就是上面在timeperiods.cfg中定义的.host_notification_period        24x7主机出了状况通知的时间段, 这个时间段就是上面在timeperiods.cfg中定义的service_notification_options    w,u,c,r当服务出现w—报警(warning),u—未知(unkown),c—严重(critical),或者r—从异常情况恢复正常,在这四种情况下通知联系人.host_notification_options       d,u,r当主机出现d&shy;&shy;&shy;&shy;—当机(down),u—返回不可达(unreachable),r—从异常情况恢复正常,在这3种情况下通知联系人service_notification_commands   notify-service-by-email服务出问题通知采用的命令notify-by-email,这个命令是在commands.cfg中定义的,作用是给联系人发邮件.至于commands.cfg之后将专门介绍host_notification_commands      notify-host-by-email同上,主机出问题时采用的也是发邮件的方式通知联系人email                           zs@test.com很明显,联系的人email地址pager                           1338757xxxx联系人的手机,如果支持短信的通知的话,这个就很有用了.alias是联系人别名,address是地址 意义不大.按照上面的方式简单的复制修改就可以创建多个联系人了.将多个联系人组成一个联系人组,创建文件contactgroups.cfgtouch contactgroups.cfgvim contactgroups.cfgdefine contactgroup{        contactgroup_name         sagroup   //联系人组的名称,同样不能空格        alias                   System Administrators        //别名        members                 test //组的成员,来自于上面定义的contacts.cfg,如果有多个联系人则以逗号相隔        }定义被监控主机,创建文件hosts.cfgtouch hosts.cfgvim hosts.cfgdefine host{        host_name                       zs        alias                                  zs        address                            192.168.175.100        check_command                   check-host-alive        max_check_attempts               5        check_period                    24x7        contact_groups                  sagroup        notification_interval               10       notification_period                24x7        notification_options               d,u,r        }与联系人可以组成联系人组一样,多个主机也可以组成主机组.创建文件hostgrops.cfgtouch hostgroups.cfgvim hostgroups.cfgdefine hostgroup{        hostgroup_name          sa-servers //主机组名称        alias                   sa Servers //别名        members                 zs//组的成员主机,多个主机以逗号相隔,必须是上面hosts.cfg中定义的        }定义监控的项目,也叫服务,创建services.cfgtouch servicescfgvim servicescfg#service definitiondefine service{        host_name               zs        service_description       check-host-alive        check_command           check-host-alive        max_check_attempts      5        normal_check_interval    3        retry_check_interval       2        check_period            24x7        notification_interval       10        notification_period        24x7        notification_options       w,u,c,r        contact_groups          sagroup        }在运行nagios之前首先做测试/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfgTotal Warnings: 0Total Errors:   0出现以上字样说明配置成功!启动nagios:service nagios start在IE输入http://zs/nagios

安装 (ndoutils-1.4b7)tar zxf ndoutils-1.4b7.tar.gzcd ndoutils-1.4b7./configure --prefix=/usr/local/nagios --enable-mysql --disable-pgsql LDFLAGS=-L/usr/lib/mysql --with-mysql-inc=/usr/include/mysql --with-mysql-lib=/usr/lib/mysqlmakecd srccp ndomod-3x.o ndo2db-3x log2ndo file2sock /usr/local/nagios/bin/chown nagios.nagios /usr/local/nagios/bin/*cd ../configcp ndo* /usr/local/nagios/etcchown nagios.nagios /usr/local/nagios/etc/* vim /usr/local/nagios/etc/ndo2db.cfgdb_name=cacti             //数据库名,跟cacti公用一个库db_user=cactidb_pass=cactimysql -uroot -p -D cacti -h localhost < /root/cn/ndoutils-1.4b7/db/mysql.sql(59行)vim /usr/local/nagios/etc/nagios.cfg确定:event_broker_options=-1broker_module=/usr/local/nagios/bin/ndomod-3x.o config_file=/usr/local/nagios/etc/ndomod.cfg/usr/local/nagios/bin/ndo2db-3x -c /usr/local/nagios/etc/ndo2db.cfg //启动ndo2dbservice nagios restarttail -20 /usr/local/nagios/var/nagios.log

出现上面的则安装成功!安装 (cacti-plugin-arch.zip)#unzip cacti-plugin-0.8.7e-PA-v2.6.zip#cd cacti-plugin-arch# cp –R ../cacti-plugin-arch/* /usr/local/apache/htdocs/cacti/#cd /usr/local/apache/htdocs/cacti/#mysql -uroot -p -D cacti -h localhost < /usr/local/apache/htdocs/cacti/pa.sql#patch -p1 -N < cacti-plugin-0.8.7e-PA-v2.6.diff //打补丁以后,web界面图片会不显示IE打开cacti的web界面选择Console—User Management—admin在最下面选择Plugin Management勾选,然后Save.

安装(npc-2.0.4.tar.gz)#tar –zxvf npc-2.0.4.tar.gz#mv npc /usr/local/apache/htdocs/cacti/plugins#vim /usr/local/apache/htdocs/cacti/include/config.php添加$plugins[]='npc';然后打开cacati界面点击Console -> Plugin Management

然后点击install 和Enable,点击以后,这两个会变成灰色的,无法在点击返回点击Console -> Settings->NPC来修改几个参数

  点开npc标签,如部署成功,则显示如下图:

  如果这步没有数据,那及可能是编译PHP的时候没有加上--with-pdo-mysql造成的,可以重新编译一下!
  注:本文仅构造了框架,没有配置具体的监控对象!


运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-663958-1-1.html 上篇帖子: 关于nagios插件的出图与不出图~~~ 下篇帖子: nagios安装过程可能存在的问题
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表