2 # $Id: stop01.sh,v 1.5 2003-05-24 22:34:48 adam Exp $
3 # test start and stop of the server with -1
8 echo "initializing" >>$LOG
10 ../../index/zebraidx -l $LOG -c zebra1.cfg init || exit 1
12 #create a base to test on
13 ../../index/zebraidx -l $LOG -c zebra1.cfg update records || exit 1
15 #kill old server (if any)
16 test -f zebrasrv.pid && kill -9 `cat zebrasrv.pid`
18 echo "Starting server with -1 (one shot)..." >>$LOG
19 ../../index/zebrasrv -1 -c zebra1.cfg -l $LOG tcp:@:9901 &
22 echo " checking that it runs... " >>$LOG
23 test -f zebrasrv.pid || exit 1
24 PID=`cat zebrasrv.pid`
25 ps -p $PID |grep $PID >/dev/null || exit 1
27 echo " connecting to it..." >>$LOG
28 ../api/testclient localhost:9901 utah >>$LOG || exit 1
31 echo " checking that server does not run any more" >>$LOG
32 ps -p $PID | grep $PID >/dev/null && exit 1
35 rm -rf reg zebrasrv.pid