From 211a72ec6bb2f79368654259bf12826a2b4ec904 Mon Sep 17 00:00:00 2001 From: allo Date: Wed, 21 Sep 2005 20:08:40 +0000 Subject: [PATCH] using wget instead of java for shutdown -better performance -more native git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@765 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- stopYACY.sh | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/stopYACY.sh b/stopYACY.sh index 0de52f7c8..f91ebce34 100755 --- a/stopYACY.sh +++ b/stopYACY.sh @@ -1,11 +1,16 @@ #!/bin/sh cd `dirname $0` -# generating the proper classpath -CLASSPATH="" -for N in `ls -1 lib/*.jar`; do CLASSPATH="$CLASSPATH$N:"; done -for N in `ls -1 libx/*.jar`; do CLASSPATH="$CLASSPATH$N:"; done +## generating the proper classpath +#CLASSPATH="" +#for N in `ls -1 lib/*.jar`; do CLASSPATH="$CLASSPATH$N:"; done +#for N in `ls -1 libx/*.jar`; do CLASSPATH="$CLASSPATH$N:"; done + +#java -classpath classes:htroot:$CLASSPATH yacy -shutdown + +port=`cat DATA/SETTINGS/httpProxy.conf |grep "^port="|sed "s/.*=//"` +pw=`cat DATA/SETTINGS/httpProxy.conf |grep "^adminAccountBase64MD5="|sed "s/.*=//"` +wget -q --header "Authorization: realm=$pw" http://localhost:$port/Steering.html?shutdown=true -O /dev/null -java -classpath classes:htroot:$CLASSPATH yacy -shutdown echo "please wait until the YaCy daemon process terminates" -echo "you can monitor this with 'tail -f DATA/LOG/yacy00.log' and 'fuser log/yacy00.log'" \ No newline at end of file +echo "you can monitor this with 'tail -f DATA/LOG/yacy00.log' and 'fuser log/yacy00.log'"