summaryrefslogtreecommitdiff
path: root/stopYACY.command
blob: 555f9c43f7a9300d2c2b4d133fd7a0ae16a69463 (plain)
1
2
3
4
5
6
7
8
9
10
11
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

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'"