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

我的安装过程

[复制链接]

尚未签到

发表于 2015-9-9 07:48:29 | 显示全部楼层 |阅读模式
  系统环境:
  系统版本:centos 6.2
  安装情况:最小化安装
  一,安装LAMP环境
  1.[iyunv@mls]# yum -y install  gcc make vim unzip wget install httpd mysql mysql-devel mysql-server php php-devel php-mysql php-comman php-pdo php-gd lm_sensor net-snmp php-snmp net-snmp-utils
  2.[iyunv@mls]# chkconfig mysqld on
[iyunv@mls]# chkconfig httpd on
  [iyunv@mls]# chkconfig snmpd on
[iyunv@mls]# service mysqld start
  [iyunv@mls]#service httpd start
[iyunv@mls]#service snmpd start
3.[iyunv@mls]# mysqladmin -u root password '123456'
  [iyunv@mls]# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.1.69 Source distribution
  Copyright (c) 2000, 2013, 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 cacti;
Query OK, 1 row affected (0.00 sec)
  mysql>  grant all on cacti.* to cactiuser@localhost identified by '654321';
Query OK, 0 rows affected (0.01 sec)
  mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
  
  4.安装rrdtool
  wget http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.4.6.tar.gz
  [iyunv@mls ~]# tar xf rrdtool-1.4.4.tar.gz
[iyunv@mls ~]# cd rrdtool-1.4.4
[iyunv@mls rrdtool-1.4.4]# ./configure --prefix=/usr/local/rrdtool && make && make install
  报错:
  configure: WARNING:
----------------------------------------------------------------------------
* I found a copy of pkgconfig, but there is no cairo-png.pc file around.
  You may want to set the PKG_CONFIG_PATH variable to point to its
  location.
----------------------------------------------------------------------------
  configure: WARNING:
----------------------------------------------------------------------------
* I could not find a working copy of cairo-png. Check config.log for hints on why
  this is the case. Maybe you need to set LDFLAGS and CPPFLAGS appropriately
  so that compiler and the linker can find libcairo and its header files. If
  you have not installed cairo-png, you can get it either from its original home on
  http://cairographics.org/releases/
  You can find also find an archive copy on
  http://oss.oetiker.ch/rrdtool/pub/libs
  The last tested version of cairo-png is 1.4.6.
  LIBS=-lm
   LDFLAGS=
  CPPFLAGS=
  ----------------------------------------------------------------------------
               
checking for cairo_svg_surface_create in -lcairo... no
checking for pkg-config... (cached) pkg-config
configure: WARNING:
----------------------------------------------------------------------------
* I found a copy of pkgconfig, but there is no cairo-svg.pc file around.
  You may want to set the PKG_CONFIG_PATH variable to point to its
  location.
----------------------------------------------------------------------------
  configure: WARNING:
----------------------------------------------------------------------------
* I could not find a working copy of cairo-svg. Check config.log for hints on why
  this is the case. Maybe you need to set LDFLAGS and CPPFLAGS appropriately
  so that compiler and the linker can find libcairo and its header files. If
  you have not installed cairo-svg, you can get it either from its original home on
  http://cairographics.org/releases/
  You can find also find an archive copy on
  http://oss.oetiker.ch/rrdtool/pub/libs
  The last tested version of cairo-svg is 1.4.6.
  LIBS=-lm
   LDFLAGS=
  CPPFLAGS=
  ----------------------------------------------------------------------------
               
checking for cairo_pdf_surface_create in -lcairo... no
checking for pkg-config... (cached) pkg-config
configure: WARNING:
----------------------------------------------------------------------------
* I found a copy of pkgconfig, but there is no cairo-pdf.pc file around.
  You may want to set the PKG_CONFIG_PATH variable to point to its
  location.
----------------------------------------------------------------------------
  configure: WARNING:
----------------------------------------------------------------------------
* I could not find a working copy of cairo-pdf. Check config.log for hints on why
  this is the case. Maybe you need to set LDFLAGS and CPPFLAGS appropriately
  so that compiler and the linker can find libcairo and its header files. If
  you have not installed cairo-pdf, you can get it either from its original home on
  http://cairographics.org/releases/
  You can find also find an archive copy on
  http://oss.oetiker.ch/rrdtool/pub/libs
  The last tested version of cairo-pdf is 1.4.6.
  LIBS=-lm
   LDFLAGS=
  CPPFLAGS=
  ----------------------------------------------------------------------------
               
checking for cairo_ps_surface_create in -lcairo... no
checking for pkg-config... (cached) pkg-config
configure: WARNING:
----------------------------------------------------------------------------
* I found a copy of pkgconfig, but there is no cairo-ps.pc file around.
  You may want to set the PKG_CONFIG_PATH variable to point to its
  location.
----------------------------------------------------------------------------
  configure: WARNING:
----------------------------------------------------------------------------
* I could not find a working copy of cairo-ps. Check config.log for hints on why
  this is the case. Maybe you need to set LDFLAGS and CPPFLAGS appropriately
  so that compiler and the linker can find libcairo and its header files. If
  you have not installed cairo-ps, you can get it either from its original home on
  http://cairographics.org/releases/
  You can find also find an archive copy on
  http://oss.oetiker.ch/rrdtool/pub/libs
  The last tested version of cairo-ps is 1.4.6.
  LIBS=-lm
   LDFLAGS=
  CPPFLAGS=
  ----------------------------------------------------------------------------
               
checking for glib_check_version in -lglib-2.0... no
checking for pkg-config... (cached) pkg-config
configure: WARNING:
----------------------------------------------------------------------------
* I found a copy of pkgconfig, but there is no glib-2.0.pc file around.
  You may want to set the PKG_CONFIG_PATH variable to point to its
  location.
----------------------------------------------------------------------------
  configure: WARNING:
----------------------------------------------------------------------------
* I could not find a working copy of glib-2.0. Check config.log for hints on why
  this is the case. Maybe you need to set LDFLAGS and CPPFLAGS appropriately
  so that compiler and the linker can find libglib-2.0 and its header files. If
  you have not installed glib-2.0, you can get it either from its original home on
  ftp://ftp.gtk.org/pub/glib/2.12/
  You can find also find an archive copy on
  http://oss.oetiker.ch/rrdtool/pub/libs
  The last tested version of glib-2.0 is 2.12.12.
  LIBS=-lm
   LDFLAGS=
  CPPFLAGS=
  ----------------------------------------------------------------------------
               
checking for pango_cairo_context_set_font_options in -lpangocairo-1.0... no
checking for pkg-config... (cached) pkg-config
configure: WARNING:
----------------------------------------------------------------------------
* I found a copy of pkgconfig, but there is no pangocairo.pc file around.
  You may want to set the PKG_CONFIG_PATH variable to point to its
  location.
----------------------------------------------------------------------------
  configure: WARNING:
----------------------------------------------------------------------------
* I could not find a working copy of pangocairo. Check config.log for hints on why
  this is the case. Maybe you need to set LDFLAGS and CPPFLAGS appropriately
  so that compiler and the linker can find libpangocairo-1.0 and its header files. If
  you have not installed pangocairo, you can get it either from its original home on
  http://ftp.gnome.org/pub/GNOME/sources/pango/1.17
  You can find also find an archive copy on
  http://oss.oetiker.ch/rrdtool/pub/libs
  The last tested version of pangocairo is 1.17.
  LIBS=-lm
   LDFLAGS=
  CPPFLAGS=
  ----------------------------------------------------------------------------
               
checking for xmlParseFile in -lxml2... no
checking for pkg-config... (cached) pkg-config
configure: WARNING:
----------------------------------------------------------------------------
* I found a copy of pkgconfig, but there is no libxml-2.0.pc file around.
  You may want to set the PKG_CONFIG_PATH variable to point to its
  location.
----------------------------------------------------------------------------
  configure: WARNING:
----------------------------------------------------------------------------
* I could not find a working copy of libxml-2.0. Check config.log for hints on why
  this is the case. Maybe you need to set LDFLAGS and CPPFLAGS appropriately
  so that compiler and the linker can find libxml2 and its header files. If
  you have not installed libxml-2.0, you can get it either from its original home on
  http://xmlsoft.org/downloads.html
  You can find also find an archive copy on
  http://oss.oetiker.ch/rrdtool/pub/libs
  The last tested version of libxml-2.0 is 2.6.31.
  LIBS=-lm
   LDFLAGS=
  CPPFLAGS= -I/usr/include/libxml2
  ----------------------------------------------------------------------------
               
configure: error: Please fix the library issues listed above and try again.
[iyunv@bogon rrdtool-1.4.4]#
  yum -y install libxml2-devel
  yum -y install pango*
  
  
  
  make[2]: Entering directory `/root/rrdtool-1.4.4/bindings'
make[3]: Entering directory `/root/rrdtool-1.4.4/bindings'
cd perl-piped && /usr/bin/perl Makefile.PL PREFIX=/usr/local/rrdtool LIB=/usr/local/rrdtool/lib/perl/5.10.1
Can't locate ExtUtils/MakeMaker.pm in @INC (@INC contains: /usr/local/lib/perl5 /usr/local/share/perl5 /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5 /usr/share/perl5 .) at Makefile.PL line 1.
BEGIN failed--compilation aborted at Makefile.PL line 1.
make[3]: *** [perl-piped/Makefile] Error 2
make[3]: Leaving directory `/root/rrdtool-1.4.4/bindings'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/root/rrdtool-1.4.4/bindings'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/rrdtool-1.4.4'
make: *** [all] Error 2
  解决办法:yum -y install perl-devel
  再次执行[iyunv@mls rrdtool-1.4.4]# ./configure --prefix=/usr/local/rrdtool && make && make install
  ln -s /usr/local/rrdtool/bin/* /usr/local/bin/
  5. 安装cacti-0.8.7.e
  wget  http://www.cacti.net/downloads/cacti-0.8.7e.tar.gz
# tar xf cacti-0.8.7e.tar.gz -C /var/www/html/
  # cd /var/www/html/
# mv cacti-0.8.7e/ cacti
  # chown -R root.root /var/www/html/cacti/
  6.导入数据库
mysql -u root -p cacti <cacti/cacti.sql
  Enter password
  
  7.修改cacti配置文件,连接数据库
vim /var/www/html/cacti/include/config.php
  $database_username = "cactiuser";
$database_password = "654321";
########################################
vim /var/www/html/cacti/include/global.php
  $database_username = "cactiauser";
$database_password = "654321"
8.安装cacti-plugin
# wget http://mirror.cactiusers.org/downloads/plugins/cacti-plugin-0.8.7e-PA-v2.6.zip
  unzip cacti-plugin-0.8.7e-PA-v2.6.zip
cd cacti-plugin-arch/
  cp /root/cacti-plugin-arch/{cacti-plugin-0.8.7e-PA-v2.6.diff,pa.sql} /var/www/html/cacti/
cd /var/www/html/cacti/
  9、打补丁导入数据库
  yum -y install patch
# patch -p1 -N <cacti-plugin-0.8.7e-PA-v2.6.diff
  # mysql -uroot -p cacti<pa.sql
  10.修改配置文件
  修改配置文件,如下:
vim include/global.php
  $config['url_path'] = '/cacti/';
  11、添加计划任务
# crontab -e
*/5 * * * * /usr/bin/php /var/www/html/cacti/poller.php
service crond restart
  12.关闭iptables和selinux,无法打开http://ip/cacti/install/界面
  13.一切默认安装 rrd 1.2
  14、被监控端配置(不要了)
# vim /etc/snmp/snmpd.conf
  com2sec notConfigUser default public
group notConfigGroup v1 notConfigUser
  group notConfigGroup v2c notConfigUser
view systemview included .1.3.6.1.2.1.1
  view systemview included .1.3.6.1.2.1.25.1.1
access notConfigGroup "" any noauth exact mib2 none none
  view mib2 included .iso.org.dod.internet.mgmt.mib-2 fc
syslocation Unknown (edit /etc/snmp/snmpd.conf)
  syscontact Root <root@localhost> (configure /etc/snmp/snmp.local.conf)
pass .1.3.6.1.4.1.4413.4.1 /usr/bin/ucd5820stat
  15、重启服务(不要了)
# service snmpd restart

到此就差不多了,我们可以做些检测在服务器上,有信息返回说明正常:
# snmpwalk -v 2c -c public ServerIP if
  16、安装nagios
  1、建立用户

  • # useradd -s /bin/bash nagios
  • # mkdir -p /usr/local/nagios
  • # chown -R nagios.nagios /usr/local/nagios/
  2、编译安装nagios

  • # tar xf nagios-3.4.1.tar.gz
  • # cd nagios
  • # ./configure --prefix=/usr/local/nagios/
  • # make all
  • # make install
  • # make install-init
  • # make install-commandmode
  • # make install-config
  • # make install-webconf

  • # chkconfig --add nagios(buyaole)
  • # chkconfig nagios on
  • # service nagios start
  
  3、安装插件

  • # tar xf nagios-plugins-1.4.16.tar.gz
  • # cd nagios-plugins-1.4.16
  • # ./configure --prefix=/usr/local/nagios/ && make && make install
  
  4、修改apache的配置文件

  • # vim /etc/httpd/conf/httpd.conf

  • 最后添加如下内容,设置成需要输入密码才能登陆
  • ScriptAlias /nagios/cgi-bin "/usr/local/nagios/sbin"
  • <Directory "/usr/local/nagios/sbin">
  • AuthType Basic
  • Options ExecCGI
  • AllowOverride None
  • Order allow,deny
  • Allow from all
  • AuthName "Nagions Access"
  • AuthUserFile /usr/local/nagios/etc/htpasswd
  • Require valid-user
  • </Directory>

  • Alias /nagios "/usr/local/nagios/share"
  • <Directory "/usr/local/nagios/share">
  • AuthType Basic
  • Options None
  • AllowOverride None
  • Order allow,deny
  • Allow from all
  • AuthName "Nagios Access"
  • AuthUserFile /usr/local/nagios/etc/htpasswd
  • Require valid-user
  • </Directory>
  5、配置nagios添加主机,服务信息
在/usr/local/nagios/etc/objects/下建立2个文件:

    • (1)hosts.cfg定义主机的文件
    • define host{
    • use linux-server
    • host_name 172.16.21.46
    • address 172.16.21.46
    • }

    • (2)services.cfg 定义主机服务的文件
    • define service{
    • use local-service
    • host_name 172.16.21.46
    • service_description ssh
    • check_command check_ssh
    • }
    • define service{
    • use local-service
    • host_name 172.16.21.46
    • service_description Ping
    • check_command check_ping
    • }
    • # chown nagios.nagios /usr/local/nagios/etc/objects/{hosts.cfg,services.cfg}

  
  6、建立登陆的用户名密码
# htpasswd -c /usr/local/nagios/etc/htpasswd nagiosadmin(################)
  7、修改nagios.cfg文件,添加文件路径信息:
  
# You can specify individual object config files as shown below:
#cfg_file=/usr/local/nagios//etc/objects/commands.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/hosts.cfg
cfg_file=/usr/local/nagios/etc/objects/services.cfg
cfg_file=/usr/local/nagios/etc/objects/commands.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

  8、启动nagios以后访问输入用户名密码就可以看到Nagios了
  检查配置文件是否正确
  [iyunv@mls etc]# /usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg
  Nagios Core 3.3.1
Copyright (c) 2009-2011 Nagios Core Development Team and Community Contributors
Copyright (c) 1999-2009 Ethan Galstad
Last Modified: 07-25-2011
License: GPL
  Website: http://www.nagios.org
Reading configuration data...
   Read main config file okay...
Processing object config file '/usr/local/nagios/etc/objects/hosts.cfg'...
Processing object config file '/usr/local/nagios/etc/objects/services.cfg'...
Processing object config file '/usr/local/nagios/etc/objects/commands.cfg'...
Processing object config file '/usr/local/nagios/etc/objects/contacts.cfg'...
Processing object config file '/usr/local/nagios/etc/objects/timeperiods.cfg'...
Processing object config file '/usr/local/nagios/etc/objects/templates.cfg'...
Processing object config file '/usr/local/nagios//etc/objects/localhost.cfg'...
   Read object config files okay...
  Running pre-flight check on configuration data...
  Checking services...
        Checked 9 services.
Checking hosts...
        Checked 2 hosts.
Checking host groups...
        Checked 1 host groups.
Checking service groups...
        Checked 0 service groups.
Checking contacts...
        Checked 1 contacts.
Checking contact groups...
        Checked 1 contact groups.
Checking service escalations...
        Checked 0 service escalations.
Checking service dependencies...
        Checked 0 service dependencies.
Checking host escalations...
        Checked 0 host escalations.
Checking host dependencies...
        Checked 0 host dependencies.
Checking commands...
        Checked 24 commands.
Checking time periods...
        Checked 5 time periods.
Checking for circular paths between hosts...
Checking for circular host and service dependencies...
Checking global event handlers...
Checking obsessive compulsive processor commands...
Checking misc settings...
  Total Warnings: 0
Total Errors:   0
  Things look okay - No serious problems were detected during the pre-flight check
  
  四、整合cacti+nagios
整合cacti和nagios是利用了cacti的一个插件nagios for cacti,它的原理是将nagios的数据通过ndo2db导入到mysql数据库(cacti的库中),然后cacti读取数据库信息将nagios
  的结果展示出来。
  1、安装php-json扩展,因为NPC使用了ExtJS,如过没有json的扩展NPC界面无法出来。
# tar xf php-json-ext-1.2.1.tar.gz
  # cd php-json-ext-1.2.1
# phpize
  如果没有命令的话安装下面的软件包
# rpm -ihv /media/CentOS/php-devel-5.1.6-27.el5.i386.rpm
# sh configure && make && make install
  2、新建文件,添加信息如下:
# vim /etc/php.d/json.ini
extension=json.so
  3、安装ndoutils,需要安装mysql-devel前面已经装过这里就不用再装了
# tar xf ndoutils-1.4b9.tar.gz
  # cd ndoutils-1.4b9
# ./configure --with-mysql-inc=/usr/include/mysql --with-mysql-lib=/usr/lib/mysql --enable-mysql --with-ndo2db-user=nagios--with-ndo2db-group=nagios
  # make(不用make install)
  4、复制文件
# cp src/{ndomod-3x.o,ndo2db-3x,log2ndo,file2sock} /usr/bin/
  # cp config/ndo2db.cfg-sample /usr/local/nagios/etc/ndo2db.cfg
# cp config/ndomod.cfg-sample /usr/local/nagios/etc/ndomod.cfg
  # chmod 644 /usr/local/nagios/etc/ndo*
  5、修复配置文件信息,连接数据库
# vim /usr/local/nagios/etc/ndo2db.cfg
socket_type=tcp
db_host=127.0.0.1
db_port=3306
db_name=cacti
db_prefix=npc_
db_user=cactiuser
db_pass=654321
debug_level=1
# vim /usr/local/nagios/etc/ndomod.cfg
output_type=tcpsocket
output=127.0.0.1
  6、添加启动脚本,并修改Ndo2dbBin
# cp /download/ndoutils-1.4b9/daemon-init /etc/init.d/ndo2db
  # vim  /etc/init.d/ndo2db
  /etc/init.d/ndo2dbNdo2dbBin=/usr/bin/ndo2db-3x
# service ndo2db start
  [iyunv@mls ndoutils-1.4b9]# service ndo2db start
Starting ndo2db:Failed to obtain lock on file /usr/local/nagios/var/ndo2db.lock: Permission denied
: Permission denied
done.
  [iyunv@mls ndoutils-1.4b9]# chmod 700 /etc/init.d/ndo2db
  Failed to obtain lock on file /usr/local/nagios/var/ndo2db.lock: Permission denied  : Permission denied
  修改ndo2db.lock的所属组和用户对它有写的权限
  7、安装npc
# tar xf npc-2.0.4.tar.gz
  # mv npc /var/www/html/cacti/plugins/
  修改配置文件,添加如下信息
# vim /var/www/html/cacti/include/global.php
  $plugins = array();
  $plugins[]='npc';
  
  8、修改nagios添加信息:
# vim /usr/local/nagios/etc/nagios.cfg
broker_module=/usr/bin/ndomod-3x.o config_file=/usr/local/nagios/etc/ndomod.cfg
event_broker_options=-1
  service nagios restart
  启动之后在cacti中添加npc,如下:
  添加npc
  9.但是看npc里发现空白的,没有数据,是因为php没有PDO_MYSQL支持,所以安装PDO_MYSQL(暂时没有安装了)

  • # wget http://pecl.php.net/get/PDO_MYSQL-1.0.2.tgz
  • # tar zxvf PDO_MYSQL-1.0.2.tgz
  • # cd PDO_MYSQL-1.0.2
  • # /usr/bin/phpize
  • #./configure --with-php-config=/usr/bin/php-config
  • #make
  • #make install

  • 修改php.ini,添加如下信息,之后重启httpd即可
  • extension = "pdo_mysql.so"
  10、之后再访问还不行,还要修改数据库结构:

  • # mysql -u root -p
  • use cacti
  • mysql> alter table npc_eventhandlers add long_output TEXT NOT NULL default '' after output;
  • mysql> alter table npc_hostchecks add long_output TEXT NOT NULL default '' after output;
  • mysql> alter table npc_hoststatus add long_output TEXT NOT NULL default '' after output;
  • mysql> alter table npc_notifications add long_output TEXT NOT NULL default '' after output;
  • mysql> alter table npc_servicechecks add long_output TEXT NOT NULL default '' after output;
  • mysql> alter table npc_servicestatus add long_output TEXT NOT NULL default '' after output;
  • mysql> alter table npc_statehistory add long_output TEXT NOT NULL default '' after output;
  • mysql> alter table npc_systemcommands add long_output TEXT NOT NULL default '' after output;
  11.之后再访问还是没有数据了,另外cacti无法显示图片,但是点进去有图:
  解决方法:
settings里面的RRDTOOLS版本设置不对,默认为1.0.x,改为1.2.x就行了。
  
  
  
  
  
  
  
  
  

运维网声明 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-111168-1-1.html 上篇帖子: ubuntu14.04下安装Naigos和pnp4nagios 下篇帖子: iptables_cacti_nagios
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

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

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

扫描微信二维码查看详情

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


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


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


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



合作伙伴: 青云cloud

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