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

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

批量設(shè)置nagios的計(jì)劃停機(jī)

當(dāng)我們要設(shè)置nagios監(jiān)控下的所有服務(wù)和主機(jī)的計(jì)劃停機(jī)時(shí)間時(shí),如果一個(gè)個(gè)的手動(dòng)點(diǎn)擊web界面的“Schedule downtime for this host”和“Schedule downtime for all services on this host”會(huì)相當(dāng)痛苦,那么有什么辦法可以一次搞定呢?我們可以把請(qǐng)求發(fā)給nagios.cmd,nagios讀取nagios.cmd文件,自動(dòng)完成計(jì)劃停機(jī)的設(shè)置
#!/bin/bash
EchoCmd="/bin/echo"
CommandFile="/usr/local/nagios/var/rw/nagios.cmd"

為麻陽(yáng)等地區(qū)用戶提供了全套網(wǎng)頁(yè)設(shè)計(jì)制作服務(wù),及麻陽(yáng)網(wǎng)站建設(shè)行業(yè)解決方案。主營(yíng)業(yè)務(wù)為成都做網(wǎng)站、網(wǎng)站建設(shè)、麻陽(yáng)網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠(chéng)的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長(zhǎng)期合作。這樣,我們也可以走得更遠(yuǎn)!

# get the current date/time in seconds since UNIX epoch
TodayTime=`date +%Y-%m-%d`
Tomorrow=`date +%Y-%m-%d --date='1 day'`
NowTime=`date +%s`
BeginTime=`date -d "$TodayTime 20:30:00" +%s`    //計(jì)劃停機(jī)時(shí)間今天20:30到第二天的08:00
EndTime=`date -d "$Tomorrow 08:00:00" +%s`
Comment_Author=nagiosadmin
Comment_Data=xitongweihu_`date +%Y%m%d`
hostgroup=/data/backup/group.ini  //該文件保存計(jì)劃停機(jī)的主機(jī)組名稱
for X in $(cat $hostgroup)
    do
# create the command line to add to the command file //該項(xiàng)設(shè)置主機(jī)組下的所有主機(jī)計(jì)劃停機(jī)
 CmdHostGroup="[$NowTime] SCHEDULE_HOSTGROUP_HOST_DOWNTIME;$X;$BeginTime;$EndTime;1;0;3600;$Comment_Author;$Comment_Data"
# append the command to the end of the command file
 `$EchoCmd $CmdHostGroup >> $CommandFile`

# create the command line to add to the command file    //該項(xiàng)設(shè)置主機(jī)組下的所有服務(wù)計(jì)劃停機(jī)
 CmdServiceGroup="[$NowTime] SCHEDULE_HOSTGROUP_SVC_DOWNTIME;$X;$BeginTime;$EndTime;1;0;3600;$Comment_Author;$Comment_Data"
# append the command to the end of the command file
 `$EchoCmd $CmdServiceGroup >> $CommandFile`
done


備注:可以通過(guò)打開(kāi)nagios.cfg里的日志級(jí)別,查看通過(guò)web界面執(zhí)行的命令詳細(xì)過(guò)程

 


當(dāng)前題目:批量設(shè)置nagios的計(jì)劃停機(jī)
標(biāo)題鏈接:http://weahome.cn/article/pgoppd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部