如何部署Icingafrp配置客户端部署

您正在使用IE低版浏览器,为了您的雷锋网账号安全和更好的产品体验,强烈建议使用更快更安全的浏览器
发私信给大壮旅
导语:这 7 大免费工具可以满足用户从网络到服务器监控的各种需求。
同步到新浪微博
当月热门文章
为了您的账户安全,请
您的邮箱还未验证,完成可获20积分哟!
您的账号已经绑定,现在您可以以方便用邮箱登录
请填写申请人资料当前位置:&&
本页文章导读:
&&&&?Passenger/Nginx/Ubuntu快速部署Rails&&&&&&
网络设置:打开互ping
安装所需的linux包
sudo apt-get install build-essential bison openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev
libxml2-dev libxslt-dev autoconf libc6-dev.........&&&&?【ubuntu】bash: cannot execute binary file&&&&&&直接双击提示invalid encoding,使用shell运行则提示cannot execute binary file。这两天居然被这个东东难倒了,一直以为是无法识别编码或者缺少编译环境的问题。
于是加了个什么转码器,还apt-get instal.........&&&&?icinga安装PNP4Nagios&&&&&&这个addon可视化的展现了监控数据,非常有用。check_mk的表格中也链接了该页面。现在看看怎么安装?官方站点:http://docs.pnp4nagios.org/pnp-0.6/start首先下载软件:wget http://docs.pnp4nagios.org/_media/dwnl.........
[1]Passenger/Nginx/Ubuntu快速部署Rails
&&&&来源:&互联网& 发布时间:&
网络设置:打开互ping
安装所需的linux包
sudo apt-get install build-essential bison openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev
libxml2-dev libxslt-dev autoconf libc6-dev zlib1g-dev libssl-dev build-essential curl git-core libc6-dev g++ gcc
添加一个rails用户
sudo adduser railsu
sudo usermod -G passenger,www-data,sudo railsu
su - railsu
bash & &(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)
加载rvm (只需第一次安装时加载)
source .bashrc
rvm install 1.9.2
rvm 高阶应用可以参考这里的指南
安装 passenger/nginx
rvm use 1.9.2 default
gem install passenger
rvmsudo passenger-install-nginx-module
所有都选默认,包括nginx安装目录业选择默认 /opt/nginx/
安装nginx启动脚本
menxu@debian:~$ sudo apt-get install nginx-common
wget https://raw.github.com/gist/f6d7ccb9dfc82a50c95e9f6e2e60dc59e4c2fb/nginx
sudo cp nginx /etc/init.d/
sudo chmod +x /etc/init.d/nginx
sudo update-rc.d nginx defaults
配置文件在 /opt/nginx/config/nginx.conf
@debian:~$ ls /etc/nginx/
conf.d&& &&& &koi-win&& &&& && naxsi.rules&& &scgi_params&& & uwsgi_params
fastcgi_params&& &mime.types&& && nginx.conf&& &sites-available& win-utf
koi-utf&& &&& &naxsi_core.rules& proxy_params&& &sites-enabled
@debian:~$ cp /etc/nginx/nginx.conf /etc/nginx/nginx_copy.conf
cp: 无法创建普通文件&/etc/nginx/nginx_copy.conf&: 权限不够
@debian:~$ sudo cp /etc/nginx/nginx.conf /etc/nginx/nginx_copy.conf
gem install passenger
rvmsudo passenger-install-nginx-module
&sudo apt-get install libcurl4-openssl-dev
:~$ ls /nginx/conf/
:~$ sudo gedit nginx/conf/nginx.conf
listen 80;
server_name www.yourhost.
root /home/railsu/project/
# &--- 这里是你项目的public目录
passenger_
搞定你的数据库
如果是MongoDB, 可以参考这里的部署方案
安装node.js
用来precompile rails assets
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs
precompile assets
cd ~/project
rake assets:precompile
sudo /etc/init.d/nginx start
原文地址:
http://hisea.me/p/rails31-ubuntu-passenger-nginx-quick-deploy
作者:menxu_work 发表于 18:03:26 原文链接
阅读:64 评论:0 查看评论
[2]【ubuntu】bash: cannot execute binary file
&&&&来源:&互联网& 发布时间:&
直接双击提示invalid encoding,使用shell运行则提示cannot execute binary file。这两天居然被这个东东难倒了,一直以为是无法识别编码或者缺少编译环境的问题。
于是加了个什么转码器,还apt-get install g++了,问题依旧。
突然觉得会不会又是32位和64位系统的问题,结果一查,还真是这个原因,伤不起。
32位系统,下载了个64位的软件,结果就无法执行;换位32为版本即可运行。
查看系统命令: -uname -a 或 lsb_release -a,如下所示
作者:moxiaomomo 发表于 21:20:22 原文链接
阅读:34 评论:0 查看评论
[3]icinga安装PNP4Nagios
&&&&来源:&互联网& 发布时间:&
这个addon可视化的展现了监控数据,非常有用。check_mk的表格中也链接了该页面。现在看看怎么安装?官方站点:http://docs.pnp4nagios.org/pnp-0.6/start首先下载软件:wget http://docs.pnp4nagios.org/_media/dwnld/pnp4nagios-head.tar.gz解压:tar zxvf pnp4nagios-head.tar.gzcd pnp4nagios-head编译步骤:./configure --with-nagios-user=icinga --with-nagios-group=icinga报错:checking for rrdtool... no
checking rrdtool path ... no
configure: error:
is a directory! PNP needs the Path to the rrdtool binary!安装rrdtoolapt-get install rrdtool rrdtool-dbg再次运行configure, 成功。运行make all编译很快结束。安装:make installmake install-webconfmake install-configmake install-init其实应该就用一个命令搞定:make fullinstall后面配置真的好烦,重点参考:https://wiki.icinga.org/display/howtos/Setting+up+PNP4Nagios+with+Icinga-Webhttps://wiki.icinga.org/display/howtos/Setting+up+PNP+with+Icinga#SettingupPNPwithIcinga-Classic-UIhttps://wiki.icinga.org/display/howtos/PNP4Nagios+in+Classic-UIhttp://blog.csdn.net/wych1981/article/details/7246787最后不要忘记:apt-get purge libapache2-mod-php5 php5 && apt-get install libapache2-mod-php5 php5
作者:sheismylife 发表于 21:04:45 原文链接
阅读:29 评论:0 查看评论
最新技术文章:
特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!
(C)9IT.COM,E-mail:www_169it_com#163.com(请将#改为@)云计算&大数据
WEB开发设计
Object Storage
Conceptual
Product Documentation
ZoneMinder
Kubernetes
Text Editors
Icinga:RHEL / CentOS 7.0的下一代开源“Linux服务器监控”工具
Icinga是一个现代化的开放源码的监测工具,起源于Nagios的叉子,现在有两个并行分支,Icinga 1和Icinga 2什么这个工具的作用是,不要从Nagios的不同,由于它仍然使用了Nagios的插件和事实附加组件甚至配置文件来检查和监控网络服务和主机,但是在Web界面上可以看到一些差异,特别是在新的Web界面,报告功能和容易的附加组件开发上。
在CentOS / RHEL 7.0中安装Icinga Monitoring Tool
本主题将集中于Icinga 1监测工具从在CentOS或RHEL 7二进制文件基本安装,使用RepoForge(以前称为RPMForge软件)库为CentOS 6,由Apache服务器举行的传统Web界面和使用Nagios的插件的那将安装在您的系统上。
另请阅读 :
在RHEL / CentOS 7.0基本安装LAMP没有MySQL和phpMyAdmin的,但这些PHP模块:PHP-CLI
PHP梨 的PHP的xmlrpc PHP-XSL PHP-PDO PHP皂 PHP-GD。
第1步:安装Icinga Monitoring Tool
1.在与二进制文件Icinga继续安装通过发出以下命令,根据您的机器上的系统上添加RepoForge库。
对于86-64位 # rpm -Uvh http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm 对于32位 # rpm -Uvh http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.i686.rpm
安装RepoForge存储库
2.在RepoForge库已经在系统上添加,开始Icinga基本安装没有Web界面然而,通过运行以下命令。 # yum install icinga icinga-doc
安装Icinga监控工具
3.下一步是尝试安装由icinga贵包提供Icinga网络界面。 看来,目前这个软件包有一些未解决的问题与CentOS / RHEL 7,并会产生一些事务检查错误,但你可以随时尝试安装软件包,也许同时问题得到解决。
不过,如果您在您的机器上遇到与下面的图片所示相同的错误,请使用以下方法进一步描述,以便能够安装Icinga Web界面。 # yum install icinga-gui
安装Icinga Gui
Icinga Gui冲突错误
4.程序安装icinga贵包,它提供Web界面如下。 首先使用wget命令下载二进制包形式RepoForge网站。
对于86-64位 # wget http://pkgs.repoforge.org/icinga/icinga-gui-1.8.4-4.el6.rf.x86_64.rpm 对于32位 # wget http://pkgs.repoforge.org/icinga/icinga-gui-1.8.4-4.el6.rf.i686.rpm
安装Icinga RPM软件包
5. wget的完成下载包后,创建一个新的目录icinga贵 (你可以选择其他的名称,如果你想),移动icinga贵 RPM二进制文件到该文件夹,进入该文件夹,并通过发出下一个系列中提取RPM软件包内容的命令。 # mkdir icinga-gui
# mv icinga-gui-* icinga-gui
# cd icinga-gui
# rpm2cpio icinga-gui-* | cpio -idmv
复制Icinga GUI包
6.现在,您已经提取icinga贵封装,使用ls命令来可视化文件夹的内容-它应该产生三个新的目录- 等等 ,usr和变种 。 首先执行递归复制系统根文件系统布局上的所有三个结果目录。 # cp -r etc/* /etc/
# cp -r usr/* /usr/
# cp -r var/* /var/
以递归方式复制目录
第2步:修改Icinga Apache配置文件和系统权限
7.提交了关于这篇文章的介绍,您的系统需要的Apache HTTP服务器和PHP安装,以能够运行Icinga Web界面。
当您完成上述步骤后,一个新的配置文件应该是现在提出名为icinga.conf Apache的conf.d路径。 为了能够从浏览器从远程位置访问Icinga,请打开此配置文件,并使用以下配置替换其所有内容。 # nano /etc/httpd/conf.d/icinga.conf 请确保用以下内容替换所有文件内容。 ScriptAlias /icinga/cgi-bin "/usr/lib64/icinga/cgi"
&Directory "/usr/lib64/icinga/cgi"&
SSLRequireSSL
Options ExecCGI
AllowOverride None
AuthName "Icinga Access"
AuthType Basic
AuthUserFile /etc/icinga/passwd
&IfModule mod_authz_core.c&
# Apache 2.4
&RequireAll&
Require all granted
# Require local
Require valid-user
&/RequireAll&
&/IfModule&
&IfModule !mod_authz_core.c&
# Apache 2.2
Order allow,deny
Allow from all
Order deny,allow
Deny from all
Allow from 127.0.0.1
Require valid-user
&/IfModule&
&/Directory&
Alias /icinga "/usr/share/icinga/"
&Directory "/usr/share/icinga/"&
SSLRequireSSL
Options None
AllowOverride All
AuthName "Icinga Access"
AuthType Basic
AuthUserFile /etc/icinga/passwd
&IfModule mod_authz_core.c&
# Apache 2.4
&RequireAll&
Require all granted
# Require local
Require valid-user
&/RequireAll&
&/IfModule&
&IfModule !mod_authz_core.c&
# Apache 2.2
Order allow,deny
Allow from all
Order deny,allow
Deny from all
Allow from 127.0.0.1
Require valid-user
&/IfModule&
&/Directory&
8.您编辑Icinga httpd的配置文件后,Apache系统用户添加到Icinga系统组,并使用在下次系统路径下面的系统权限。 # usermod -aG icinga apache
# chown -R icinga:icinga /var/spool/icinga/*
# chgrp -R icinga /etc/icinga/*
# chgrp -R icinga /usr/lib64/icinga/*
# chgrp -R icinga /usr/share/icinga/*
9.启动Icinga系统进程和Apache服务器之前,请确保您还通过运行setenforce 0命令关闭SELinux安全机制,使更改永久通过编辑/ etc / SELinux的/ config文件, 强制执行为禁用改变SELinux上下文。 # nano /etc/selinux/config 修改SELINUX指令看起来像这样。 SELINUX=disabled
禁用SELinux
您还可以使用getenforce命令查看SELinux状态。
10.开始Icinga流程和Web界面,作为一种安全措施,您现在可以通过运行以下命令来修改Icinga管理员密码,然后启动这两个进程前的最后一步。 # htpasswd -cm /etc/icinga/passwd icingaadmin
# systemctl start icinga
# systemctl start httpd
创建Icinga管理员密码
启动Icinga服务
第3步:安装Nagios插件和访问Icinga Web界面
11.为了开始与Icinga主机,如HTTP,IMAP,POP3,SSH,DNS,ICMP ping和许多其他服务,从互联网或局域网,你需要安装EPEL存储库提供的Nagios插件包访问监控公共外部服务。 # rpm -Uvh http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-6.noarch.rpm
# yum install yum install nagios-plugins nagios-plugins-all
安装Epel存储库
安装Nagios插件
12.要登入Icinga Web界面,打开浏览器,并指向到http:// system_IP / icinga /。 使用icingaadmin作为用户名和您之前更改了密码,你现在可以看到你的本地主机的系统状态。
Icinga管理员登录
Icinga监控仪表板
就这样! 现在你有Icinga基本的古典web界面 -
nagios喜欢 - 安装和运行在您的系统上。 使用Nagios的插件现在可以开始添加新的主机与外部服务来检查并通过编辑的/ etc / icinga /路径Icinga配置文件监控。 如果需要监视远程主机上的内部服务,则必须在远程主机上安装代理,如NRPE,NSClient ++,SNMP,以收集数据并将其发送到Icinga主进程。
文章分类 10
howtoing.com是一个运维教程站,开始于2012年5月。这里提供如何简单的学习引导Linux/Windows系统管理员的目标。我们一直在努力提供简单易学高质量的文章。
(C)2018 Howtoing运维教程 京ICP备号-1如何部署Icinga服务端_百度知道
如何部署Icinga服务端
我有更好的答案
*** Configuration summary for nrpe 2: /usr&#47: /etc
If the NRPE daemon and client compiled without any errors, you can continue with the installation or upgrade process:
NRPE group:
Icinga user: no
# make # make install 设置权限 # chown -R icingaIcinga客户端的部署相对于服务器端来说,简单很多,只需要部署Icinga插件和NRPE。
icinga 中文化项目的下载地址为,NRPE(Nagios Remote Plugin Executor);sbin/nologin 安装nagios-cn-plugins # cd /usr/src/ # tar xvf /root&#47.debian files in /etc/icinga 最后输出如下;xinit.d
make install-init-freebsd
- This installs init-configure --prefix=&#47.14 12-21-2012 ***;icinga-nrpe-2: yes
--with-ping -n -U -w %d -c %d %s
--with-package-name: nagios-plugins
--with-nagios-user:
--with-nagios-etc&#47.gz。 新建icinga用户 # useradd icinga -s &#47。对于服务器端来说,如果要通过以下这种方式来监控服务器,必须包含三个组件: &#47: no
--enable-extra-opts: yes
--with-perl: /usr/bin/perl
--enable-perl-modules: no
--with-make all' to compile the NRPE daemon and client:/configure
最后输出如下.nagios/cgi-bin
--with-trusted-init.d
make install-init-debian
- This installs init-script.3;nagios-cn-plugins-2.icinga/libexec
make install-init
- This installs init-script files in /etc/init,Icinga内核,Icinga插件.status: creating po/init.d
make install-daemon-config
- This installs the Nrpe config file in /usr/local/icinga/ping6 -n -U -w %d -c %d %s
--with-ping-command.icinga &#47.d
make install-xinetd
- This installs sample-config/bin,我下载了nagios-cn-plugins-2。对于Icinga客户端来说;usr&#47:
--with-ping6-command: /usr/sbin/icinga/ 安装NRPE # cd /usr/src/ # tar xvf /root&#47.0:
NRPE user:
--with-ipv6: yes
--with-mysql: no
--with-etc&#47: config.0:
Icinga group: icinga
Review the options above for accuracy.
If they look okay, type &#39: *** Compile finished ***
make install
- This installs files in /usr/local/icinga
make install-plugin
- This installs init-script files in /local&#47.freebsd files in &#47:/usr/bin:&#47.3.14.tar.gz
# cd icinga-nrpe-2;nrpe.xinetd in &#47.14/ # ./sbin
--enable-libtap,Icinga插件,NRPE均在icinga plugins目录中。 在这里;Makefile
--with-apt-get-local/usr/usr/usr&#47.tar.
按照提示, # make all 输出结果如下.
Read the PDF documentation (NRPE.pdf) for information on the next steps you should take to complete the installation or upgrade.
对于Linux系统,可运行make install, make install-plugin,make install-init,make install-xinetd, make install-daemon-config。各项的具体作用可参考上述的说明。 修改NRPE的配置文件 # vim /usr/local/icinga/etc/nrpe.cfg
在allowed_hosts后面添加Icinga服务端的地址 allowed_hosts=127.0.0.1,192.168.244.145
启动NRPE服务 # /etc/init.d/icinga-nrpe start Starting icinga-nrpe (via systemctl):
Warning: Unit file of icinga-nrpe.service changed on disk, 'systemctl daemon-reload' recommended.
# systemctl daemon-reload # /etc/init.d/icinga-nrpe start 查看5666端口是否开启监听 # netstat -ntlup | grep 5666 tcp
0 0.0.0.0:5666
26517/nrpe
在服务端上进行验证 # /usr/local/icinga/libexec/check_nrpe -H 192.168.244.146
其中192.168.244.146是客户端的地址 如果输出的是NRPE的版本号: NRPE v2.14
则代表服务端和客户端已建立通信。
总结: 1. 如果在服务端上进行验证时,报以下错误: CHECK_NRPE: Error - Could not complete SSL handshake.
一般是NRPE的配置文件没有修改,或防火墙规则阻止了Icinga服务端和NRPE进程之间的连接。 2. 系统账号的shell使用 /sbin/nologin ,此时无法登陆系统,即使给了密码也不行。 所谓“无法登陆”指的仅是这个用户无法使用bash或其他shell来登陆系统而已,并不是说这个账号就无法使用系统资源。举例来说,各个系统账号中,打印作业有lp这个账号管理,www服务器有apache这个账号管理,他们都可以进行系统程序的工作,但就是无法登陆主机而已。有时候有些服务,比如邮件服务,大部分都是用来接收主机的邮件而已,并不需要登陆。假如有账号试图连接我的主机取得shell,我们就可以拒绝。另外,如果我想要让某个具有 /sbin/nologin 的用户知道,他们不能登陆主机时,可以新建 /etc/nologin.txt 这个文件,在文件内面写上不能登陆的原因,当用户登录时,屏幕上就会出现这个文件里面的内容。;local&#47:
General Options:
-------------------------
NRPE port.xz
# cd nagios-cn-plugins-2.0.3/ # .&#47.xz和icinga-nrpe-2.14: 其中.d
make install-init-SUSE
- This installs init-script.suse files in /bin/etc&#47
为您推荐:
其他类似问题
换一换
回答问题,赢新手礼包
个人、企业类
违法有害信息,请在下方选择后提交
色情、暴力
我们会通过消息、邮箱等方式尽快将举报结果通知您。1791人阅读
icinga(7)
1. 通过共享SSH KEYS 和check_by_ssh 插件来运行远程主机上的插件。
这种方式性能高,尤其是监控的主机数量达到一定规模时候性能较好。
2.通过NRPE addon,NRPE插件可以允许你执行远程主机的plugins
我们通过第二种方式NRPE来监控远程主机
先看其原理
如下图,受控端会运行一个nrpe的daemon,监控服务端则通过执行check_nrpe来调用远程主机的npre插件并调用check_命令,并返回数据
yum install gcc openssl-devel
添加普通账户icinga
#& /usr/sbin/useradd icinga
#& passwd icinga
编译和安装Icinga插件
#& tar jxvf nagios-cn-plugins-1.5.tar.bz2
#& cd nagios-cn-plugins-1.5
#& ./configure --prefix=/usr/local/icinga
--with-cgiurl=/icinga/cgi-bin --with-package-name=icinga-plugins
#& make install文档中configure时候还加了 --with-icinga-user=icinga --with-icinga-group=icinga ,我发现加了也不认,似乎也没什么用,加了反而报:
configure: WARNING: unrecognized options: --with-icinga-user, --with-icinga-group,没什么区别
客户端编译和安装Nrpe
#& tar xvzf icinga-nrpe-2.14.tar.gz
#& cd icinga-nrpe-2.14
#& /configure
#& make all
#& make install
#& make install-plugin
#& make install-daemon
#& make install-daemon-config
#& make install-init
configure过程的输出信息确认如下:
General Options:
-------------------------
NRPE port:
NRPE user:
NRPE group:
Icinga user:
Icinga group: icinga
配置客户端Nrpe
添加服务器地址
#& vi /usr/local/icinga/etc/nrpe.cfg
#& allowed_hosts=127.0.0.1,IPADDRESS增加command字段来添加要监控的服务
command[check_users]=/usr/local/icinga/libexec/check_users -w 5 -c 10
command[check_load]=/usr/local/icinga/libexec/check_load -w 15,10,5 -c 30,25,20
command[check_hda1]=/usr/local/icinga/libexec/check_disk -w 20% -c 10% -p /dev/hda1
command[check_zombie_procs]=/usr/local/icinga/libexec/check_procs -w 5 -c 10 -s Z
command[check_total_procs]=/usr/local/icinga/libexec/check_procs -w 150 -c 200
command[check_ssh]=/usr/local/icinga/libexec/check_ssh -H localhost
command[check_swap]=/usr/local/icinga/libexec/check_swap -w 20% -c 10%
command[check_mysql]=/usr/local/icinga/libexec/check_mysql -H localhost -uroot -ptomcat2008
command[check_apache]=/usr/local/icinga/libexec/check_apachestatus -H localhost -p 80
command[check_ntp]=/usr/local/icinga/libexec/check_ntp -H localhost -w 0.5 -c 1
command[check_snmp]=/usr/local/icinga/libexec/check_snmp_service -H localhost -C monitor_energysh
service icinga-nrpe start
检测服务端check_nrpe与客户端运行的nrpedaemon之间的通信
/usr/local/icinga/libexec/check_nrpe -H ClientIPADDRESS如果不通,可以关闭防火墙和selinux试试。监控windows主机
与监控linux原理类似,也是需要一个agent,这个agent叫 ,
使用check_nt plugin
来与NSClient++
交互, Icinga server应该先装好check_nt 。
安装Windows Agent
官方推荐的是NSClient++ addon,下载地址
下载最新版本,双击安装即可。这里下载的版本是NSCP-0.4.1.73-x64.msi
从服务里找到NSClient++,设置服务自动启动
属性里设置如下,这里没有设置密码
设置allowed hosts
配置文件在:C:\Program Files\NSClient++\nsclient.ini
[/settings/default]
; ALLOWED HOSTS - A comaseparated list of allowed hosts. You can use netmasks (/ syntax) or * to create ranges.
allowed hosts = 10.1.81.199
配置icinga服务端
先放开windows配置
vi /usr/local/icinga/etc/icinga.cfg#cfg_file=/usr/local/icinga/etc/objects/windows.cfg去掉这里的#
vi /usr/local/icinga/etc/objects/windows.cfg定义host和service等define host{
Inherit default values from a Windows server template
windows- make sure you keep this line!
My Windows Server
192.168.1.2
}默认已经有了,设置IP等
vi /usr/local/icinga/etc/objects/commands.cfg define command{
command_name
command_line
$USER1$/check_nt -H $HOSTADDRESS$ -p 12489 -s $USER9$ -v $ARG1$ $ARG2$
}改为,这里使用空密码
# 'check_nt' command definition
define command{
command_name
command_line
$USER1$/check_nt -H $HOSTADDRESS$ -p 12489 -s "" -v $ARG1$ $ARG2$
重启icinga,测试是否好用
调试用下面的命令
/usr/local/icinga/libexec/check_nt -H &ip address& -p &port& -s &password& -v UPTIME

我要回帖

更多关于 cas 客户端集群部署 的文章

 

随机推荐