1. 程式人生 > >定時啟動domino服務的腳本

定時啟動domino服務的腳本

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服務的腳本