changed start-up message and Mac startup method

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1937 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 19 years ago
parent 063ef4660a
commit cded4923ff

@ -1,8 +1,11 @@
cd `dirname $0` ?cd `dirname $0`
./startYACY.sh &
# generating the proper classpath echo "****************** YaCy Web Crawler/Indexer & Search Engine *******************"
CLASSPATH="" echo "**** (C) by Michael Peter Christen, usage granted unter the GPL Version. 2 ****"
for N in `ls -1 lib/*.jar`; do CLASSPATH="$CLASSPATH$N:"; done echo "**** USE AT YOUR OWN RISK! Project home and releases: http://yacy.net/yacy **"
for N in `ls -1 libx/*.jar`; do CLASSPATH="$CLASSPATH$N:"; done echo "** LOG of YaCy: DATA/LOG/yacy00.log (and yacy<xx>.log) **"
echo "** STOP YaCy: execute stopYACY.sh and wait some seconds **"
java -classpath classes:htroot:$CLASSPATH -server yacy echo "** GET HELP for YaCy: see www.yacy-websearch.net/wiki and www.yacy-forum.de **"
echo "*******************************************************************************"
echo " >> YaCy started as daemon process. Administration at http://localhost:8080 <<"
echo " You can close this window now, this will NOT shut down your YaCy peer."

@ -55,7 +55,13 @@ else
nohup java $java_args -classpath classes:htroot:$CLASSPATH yacy > /dev/null & nohup java $java_args -classpath classes:htroot:$CLASSPATH yacy > /dev/null &
# nohup java -Xms160m -Xmx160m -classpath classes:htroot:$CLASSPATH yacy > /dev/null & # nohup java -Xms160m -Xmx160m -classpath classes:htroot:$CLASSPATH yacy > /dev/null &
fi fi
echo "YaCy started as daemon process. View it's activity in DATA/LOG/yacy00.log" echo "****************** YaCy Web Crawler/Indexer & Search Engine *******************"
echo "To stop YaCy, please execute stopYACY.sh and wait some seconds" echo "**** (C) by Michael Peter Christen, usage granted unter the GPL Version. 2 ****"
echo "To administrate YaCy, start your web browser and open http://localhost:8080" echo "**** USE AT YOUR OWN RISK! Project home and releases: http://yacy.net/yacy **"
echo "** LOG of YaCy: DATA/LOG/yacy00.log (and yacy<xx>.log) **"
echo "** STOP YaCy: execute stopYACY.sh and wait some seconds **"
echo "** GET HELP for YaCy: see www.yacy-websearch.net/wiki and www.yacy-forum.de **"
echo "*******************************************************************************"
echo " >> YaCy started as daemon process. Administration at http://localhost:8080 <<"
fi fi

Loading…
Cancel
Save