`

nagios servicegroup - 服务组

阅读更多
【基本介绍】
这里介绍servergroup的基本情况

【基本配置】
在对应的配置文件中添加相应的servicegroup
define servicegroup{
     servicegroup_name       services-name
     alias                   NA
     members                 host,service,host2,service2,…………
}



【问题】
有了hostgroup,servicegroup等组的概念方便了查看,但是如果有时候一台服务器下线了,除了注释掉host的配置外,其他组包括该服务器的都应该做调整。
分享到:
评论

相关推荐

    Nagios监控mysql的安装配置及报警.pdf

    [root@nagios nagios-plugins-1.4.15]# ./configure –with-nagios-user=nagios –with-nagios-group=nagios –enable-extra-opts –enable-libtap –enable-perl-modules [root@nagios nagios-plugins-1.4.15]# ...

    Nagios E Book - Linux Networking Monitoring

    4. **启动服务**:通过systemctl或service命令启动Nagios服务。 5. **验证配置**:使用`nagios -v /usr/local/nagios/etc/nagios.cfg`命令验证配置文件的有效性。 #### 监控不同类型的目标 - **Windows机器**:...

    Nagios监控mysql的安装配置及报警[归类].pdf

    2. 创建一个名为`nagios`的用户,以便运行Nagios服务,并将Apache用户添加到`nagios`组中,以允许Web界面的正常操作: ```bash [root@nagios ~]# useradd nagios [root@nagios ~]# usermod –G nagios apache `...

    CentOS安装Nagios和监控Linux、Windows客户端以及微信报警详细配置

    - `./configure --with-nagios-user=nagios --with-nagios-group=nagios --with-ssl=/usr/local/ssl` - `make all` - `make install` - `make install-daemon` - `make install-daemon-config` - 启动NRPE服务...

    Nagios安装步骤(超级详细)

    ./configure --prefix=/soft/nagios-plugins --with-nagios-user=nagios --with-nagios-group=nagios make make install ``` #### 八、Nagios 服务初始化与启动 1. **添加并启用 Nagios 服务**: ```bash ...

    nagios监控软件的安装

    - `./configure –with-command-group=nagcmd –prefix=/usr/local/nagios` 配置编译选项,指定命令组和安装路径 - `make all` 编译源代码 - `make install` 安装Nagios - `make install-init` 安装初始化脚本 ...

    nagios基本安装配置介绍

    [root@nagios nagios-plugins-2.3.2]# ./configure --with-nagios-user=nagios --with-nagios-group=nagios ``` 4. **安装**: ```bash [root@nagios nagios-plugins-2.3.2]# make all [root@nagios nagios-...

    Nagios with NRPE detail configure

    # ./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios # make all # make install # make install-init # make install-commandmode # make install-webconf ```...

    nagios 安装文档完整版

    - `service nagios start`: 启动Nagios服务。 **2. 配置HTTPD** 为了使Nagios可以通过Web浏览器访问,需要对Apache Web服务器进行相应的配置。 ##### (1) 配置Web登录用户名和密码 使用`htpasswd -c /usr/local/...

    nagios搭建

    3. **创建Nagios组**:创建一个名为`nagcmd`的组,用于管理Nagios命令执行权限,并将`nagios`和`apache`用户添加到该组中: ```bash groupadd nagcmd usermod -G nagcmd nagios usermod -G nagcmd apache ``` ...

    nagios监控linux主机、web等各种服务,并实现飞信自动报警

    ### Nagios监控Linux主机、Web服务及其实现飞信自动报警 #### 一、Nagios简介 Nagios是一款非常强大的开源网络监控系统,它主要用于监控计算机系统的各种服务状态,比如服务器硬件健康状况、应用软件运行状态、...

    Nagios的安装部署和与Cacti的整合

    - 创建`nagios`用户和`nagcmd`用户组,以运行Nagios服务和处理外部命令。 ```bash #usr/sbin/useradd -m nagios #passwd nagios #usr/sbin/groupadd nagcmd #usr/sbin/usermod -a -G nagcmd nagios #usr/sbin...

    Nagios安装配置说明

    - **定义服务组**:在 `/usr/local/nagios/etc/objects/servicegroups/` 目录下编辑服务组配置文件。 - **定义主机组**:在 `/usr/local/nagios/etc/objects/hostgroups/` 目录下编辑主机组配置文件。 - **定义依赖...

    安装nagios并且邮件报警

    创建nagcmd组和nagios用户,并将nagios用户和apache用户添加到nagcmd组中。 2. **下载并编译安装Nagios** ```bash mkdir downloads cd downloads wget ...

    nagis服务端客户端安装

    ./configure --with-nagios-user=nagios --with-nagios-group=nagios make && make install ``` #### 三、安装 NRPE (Nagios Remote Plugin Executor) 为了实现远程主机的监控,我们需要在被监控主机上安装 **...

    nagios+mysql 安装文档

    # service nagios start ``` ##### 5.4 SELinux 配置 如果使用 CentOS 并且 SELinux 处于强制模式,可能需要调整 SELinux 设置以避免访问 Web 界面时出现错误。 **查看 SELinux 模式**: ```bash # getenforce ``` ...

    nagios配置方法

    这些选项分别指定了MySQL配置路径、Nagios的安装路径、Nagios用户和组名。 #### 编译并安装 ```bash [root@UnixHot nagios-plugins-1.4.13]# make && make install ``` 使用`make`命令进行编译,然后使用`make ...

    Nagios的安装部署和与Cacti的整合(linuxtone)归类.pdf

    3. 配置插件,指定用户和组:`./configure --with-nagios-user=nagios --with-nagios-group=nagios` 4. 编译和安装:`make`, `make install` 为了监控Windows主机,还需安装Nagios SNMP插件,该插件利用SNMP协议与...

    Nagios的安装部署和与Cacti的整合(linuxtone

    接着,创建一个名为'nagios'的用户和'nagcmd'用户组,这两个身份将分别用于运行Nagios服务和处理Web接口的控制命令: 1. 添加用户和用户组: ``` # /usr/sbin/useradd -m nagios # passwd nagios # /usr/sbin/...

    Ubuntu上Nagios安装过程.doc

    ./configure --with-nagios-user=nagios --with-nagios-group=nagios --with-httpd-conf=/etc/apache2/sites-available --with-libwrap make all sudo make install sudo make install-init sudo make install-...

Global site tag (gtag.js) - Google Analytics