码迷,mamicode.com
首页 > 其他好文 > 详细

定时启动domino服务的脚本

时间:2018-04-11 15:07:18      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:domino

#################################

author : chenjunyong

Time : 2018-3-1

file : startdomino.sh

start domino server bash

#!/bin/bash
DOM_HOME=/opt/lotus/notesdata/
DOM_USER=notesinstall
DOM_PROG=/opt/lotus/bin
DAT=date +%Y-%m-%d
DST="/nas/fullback/"
LOG=$DST

###################################################################
echo -n Starting domino:
count=ps -ef |grep notes/latest |grep -v "grep" |wc -l
if [ $count -eq 0 ]; then
su $DOM_USER -c "$DOM_PROG/server"
else
su $DOM_USER -c "$DOM_PROG/nsd -kill " >> $LOG/back$DAT.log
su $DOM_USER -c "$DOM_PROG/server"
fi
###################################################################
echo "start Finished !" >> $LOG/back$DAT.log

~

定时启动domino服务的脚本

标签:domino

原文地址:http://blog.51cto.com/junch/2096852

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!