From f84bc0b842b1cdde2fbeda8d48222e01af461c24 Mon Sep 17 00:00:00 2001 From: allo Date: Sun, 14 Aug 2005 13:49:00 +0000 Subject: [PATCH] no yacy.log as default. -l reenabled logging to yacy.log -d disabled detaching, and prints log to console http://www.yacy-forum.de/viewtopic.php?p=7455 git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@532 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- startYACY.sh | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/startYACY.sh b/startYACY.sh index 5b836c9d1..c0c3f12f4 100755 --- a/startYACY.sh +++ b/startYACY.sh @@ -12,14 +12,17 @@ else for N in `ls -1 lib/*.jar`; do CLASSPATH="$CLASSPATH$N:"; done for N in `ls -1 libx/*.jar`; do CLASSPATH="$CLASSPATH$N:"; done - if [ x$1 != x-d ] + if [ x$1 == x-d ] #debug + then + java -classpath classes:$CLASSPATH yacy + exit 0 + elif [ x$1 == x-l ] #logging then nohup java -classpath classes:htroot:$CLASSPATH yacy >> yacy.log & - echo "YaCy started as daemon process. View it's activity in yacy.log" - echo "To stop YaCy, please execute stopYACY.sh and wait some seconds" - echo "To administrate YaCy, start your web browser and open http://localhost:8080" else - java -classpath classes:$CLASSPATH yacy - #java -Xms16m -Xmx200m -classpath classes:htroot:$CLASSPATH yacy + nohup java -classpath classes:htroot:$CLASSPATH yacy > /dev/null & fi + echo "YaCy started as daemon process. View it's activity in yacy.log" + echo "To stop YaCy, please execute stopYACY.sh and wait some seconds" + echo "To administrate YaCy, start your web browser and open http://localhost:8080" fi