标签:domino
##################################!/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
原文地址:http://blog.51cto.com/junch/2096852