真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

puppet中nagios客戶端模塊的示例分析-創(chuàng)新互聯(lián)

這篇文章主要為大家展示了“puppet中nagios客戶端模塊的示例分析”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“puppet中nagios客戶端模塊的示例分析”這篇文章吧。

十多年建站經(jīng)驗, 成都做網(wǎng)站、成都網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設客戶的見證與正確選擇。創(chuàng)新互聯(lián)建站提供完善的營銷型網(wǎng)頁建站明細報價表。后期開發(fā)更加便捷高效,我們致力于追求更美、更快、更規(guī)范。

  為了方便與puppet結(jié)合著用,所以接下去原本用源碼編譯的,統(tǒng)統(tǒng)改成用rpmbuild打包完,在放進自己建的源里面,本文也將說明本地源如何創(chuàng)建。

  文中軟件包nrpe,和nagios-plugins均由上篇文章的spec生成。

  老規(guī)矩,先上架構(gòu)圖(ps:其實都差不多- -):

  puppet中nagios客戶端模塊的示例分析

1.init.pp

import "*"

2.web.pp

class nagios::web (   $nagiospluginsversion="1.4.16-10",   $nrpeversion="2.13-10" ){          file {"sa":           path    => "/root/sa",           ensure  => directory,         }          package {"xinetd":           ensure  => present,         }                  package {"nagios-plugins":           ensure  => $nagiospluginsversion,         }          package {"nrpe":           ensure  => $nrpeversion,           require => Package["nagios-plugins"],         }          file {"nrpe.cfg":           mode      => 0644,           owner     => nagios,           group     => nagios,           path      => "/usr/local/nagios/etc/nrpe.cfg",           require   => Package["nrpe"],           content   => template('nagios/web-nrpe.erb'),           notify    => Service['xinetd'],           }          file {"nrpe":           mode      => 0644,           owner     => root,           group     => root,           path      => "/etc/xinetd.d/nrpe",           content   => template('nagios/nrpe.erb'),           require   => Package["nrpe"],           notify    => Service['xinetd'],         }                service {"xinetd":           ensure    => running,           enable    => true,           subscribe => File["nrpe","nrpe.cfg"],         } }

3,nrpe.erb

# default: on # description: NRPE (Nagios Remote Plugin Executor) service nrpe {         flags           = REUSE         socket_type     = stream               port              = 5666             wait            = no         user            = nagios           group             = nagios         server          = /usr/local/nagios/bin/nrpe         server_args     = -c /usr/local/nagios/etc/nrpe.cfg --inetd         log_on_failure  += USERID         disable         = no           only_from       = 127.0.0.1 <%= nagios_server %> }

4,nrpe-web.erb

里面就是源碼編譯出來的nrpe.cfg的內(nèi)容

5,site.pp

########################   for module nagios ######################## $nagios_server      = "192.168.10.211"

設置了nagios_server變量的值

6,node調(diào)用

(1),modules.pp

import "nagios"

(2),site.pp

node /^redis\.\w+\.com$/ {     include nagios::web }

當然也可以寫進nodes.pp里面設置的節(jié)點里

7,創(chuàng)建本地源

我使用的是ftp來做

(1)yum install vsftpd -y  (2)yum install createrep -y

然后把nrpe,nagios-plugins軟件包復制到/var/ftp/pub下,生成依賴關系

createrepo /var/ftp/pub

創(chuàng)建ftp.repo

[ftp] name=base baseurl=ftp://192.168.10.211/pub enabled=1 gpgcheck=0

最后在

yum makecache

別忘了防火墻開啟ftp端口

以上是“puppet中nagios客戶端模塊的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!

另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。


當前名稱:puppet中nagios客戶端模塊的示例分析-創(chuàng)新互聯(lián)
分享網(wǎng)址:http://weahome.cn/article/icjhe.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部