Mercurial > hg > Database > Alice
view scripts/aquariumfx.sh @ 409:e501afa00369 dispose
change JRE 1.8
author | tatsuki |
---|---|
date | Sat, 05 Jul 2014 16:10:57 +0900 |
parents | 030c4f35393c |
children |
line wrap: on
line source
#!/bin/bash if [ $# -ne 2 ]; then echo "Usage: ./aquarium.sh NODENUM CHILDLENNUM" exit 1 fi max=$1 child_num=$2 jar_path=../build/libs/Alice.jar if [ ! -e $java ]; then echo "$java not found." exit 1 fi ruby ./topology/treen.rb $1 $2 > ./topology/tree.dot dot -Tpng ./topology/tree.dot > ./topology/tree.png #open ./topology/tree.png java -version java -cp $jar_path alice.topology.manager.TopologyManager -p 10000 -conf ./topology/tree.dot -log ./output/manager.log -level fatal > ./output/std_manager.log & cnt=0 while [ $cnt -lt $max ] do java -cp $jar_path alice.test.topology.aquarium.fx.StartAquariumFX -host `hostname` -port 10000 -p `expr 20000 + $cnt` -log ./output/aquariumfx${cnt}.log -level fatal > ./output/std_aquariumfx${cnt}.log & cnt=`expr $cnt + 1` done wait