Nagios和ndo2db系统脚本---for gentoo

发布时间:2020-06-05 18:23:01 作者:chengchow
来源:网络 阅读:933

Gentoo下Nagios系统启动脚本

#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
depend() {
need net
}
if [ -f /etc/rc.d/init.d/functions ]; then
. /etc/rc.d/init.d/functions
elif [ -f /etc/init.d/functions ]; then
. /etc/init.d/functions
fi
checkconfig() {
nagios_bin_file=/var/www/localhost/htdocs/nagios/bin/nagios
nagios_cfg_file=/var/www/localhost/htdocs/nagios/etc/nagios.cfg
if [ ! -f "$nagios_bin_file" ]; then
echo "$nagios_bin_file is not exist."
exit 1
fi
if [ ! -f "$nagios_cfg_file" ]; then
echo "$nagios_cfg_file is not exist."
exit 1
fi
$nagios_bin_file -v $nagios_cfg_file > /dev/null 2>&1
if [ $? -ne 0 ]; then
echo "please check your nagios configuration file."
exit 1
fi
}
start() {
nagios_script_file=/var/www/localhost/htdocs/nagios/sbin/nagios
checkconfig
ebegin "starting nagios"
start-stop-daemon --start --exec $nagios_script_file
eend $?
}
stop() {
nagios_pid_file=/var/www/localhost/htdocs/nagios/var/nagios.lock
ebegin "Stopping nagios"
start-stop-daemon --stop --retry 30 --pidfile $nagios_pid_file
eend $?
}
status() {
nagios_run_path=/var/www/localhost/htdocs/nagios/var
if [ ! -f $nagios_run_path/nagios.lock ]; then
echo "nagios is not running."
else
nagios_pid_NO=`head -n 1 $nagios_run_path/nagios.lock`
echo "nagios( pid:$nagios_pid_NO ) is running."
fi
}

Gentoo下ndo2db系统启动脚本

#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
depend() {
need net
}
if [ -f /etc/rc.d/init.d/functions ]; then
. /etc/rc.d/init.d/functions
elif [ -f /etc/init.d/functions ]; then
. /etc/init.d/functions
fi
checkconfig() {
ndo2db_bin_file=/var/www/localhost/htdocs/nagios/bin/ndo2db-3x
ndo2db_cfg_file=/var/www/localhost/htdocs/nagios/etc/ndo2db.cfg
if [ ! -f "$ndo2db_bin_file" ]; then
echo "$ndo2db_bin_file is not exist."
exit 1
fi
if [ ! -f "$ndo2db_cfg_file" ]; then
echo "$ndo2db_cfg_file is not exist."
exit 1
fi
}
start() {
ndo2db_script_file=/var/www/localhost/htdocs/nagios/sbin/ndo2db
checkconfig
ebegin "starting ndo2db"
start-stop-daemon --start --exec $ndo2db_script_file
eend $?
}
stop() {
ndo2db_pid_file=/var/www/localhost/htdocs/nagios/var/ndo2db.lock
ebegin "Stopping ndo2db"
start-stop-daemon --stop --retry 30 --pidfile $ndo2db_pid_file
eend $?
}
status() {
ndo2db_run_path=/var/www/localhost/htdocs/nagios/var
if [ ! -f $ndo2db_run_path/ndo2db.lock ]; then
echo "ndo2db service is not running."
else
ndo2db_pid_NO=`head -n 1 $ndo2db_run_path/ndo2db.lock`
echo "ndo2db( pid:$ndo2db_pid_NO ) is running."
fi
}

 

推荐阅读:
  1. Linux用户和组相关命令及实验
  2. 8.01 用户组和权限管理练习

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

shell nagios 系统脚本

上一篇:MySQL MHA高可用群集的原理与配置

下一篇:软链接解决目录结构问题

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》