mirror of https://github.com/apache/lucene.git
37 lines
890 B
Bash
Executable File
37 lines
890 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd ..
|
|
|
|
rm -r -f example2
|
|
rm -r -f example3
|
|
rm -r -f example4
|
|
|
|
rm -r -f dist
|
|
rm -r -f build
|
|
rm -r -f example/solr/zoo_data
|
|
rm -r -f example/solr/collection1/data
|
|
rm -f example/example.log
|
|
|
|
ant server dist
|
|
|
|
cp -r -f example example2
|
|
cp -r -f example example3
|
|
cp -r -f example example4
|
|
|
|
|
|
cd example
|
|
java -DzkRun -DnumShards=2 -DSTOP.PORT=7983 -DSTOP.KEY=key -Dbootstrap_conf=true -jar start.jar 1>example.log 2>&1 &
|
|
|
|
# wait for config to go up
|
|
sleep 10
|
|
|
|
cd ../example2
|
|
java -Djetty.port=9574 -DzkRun -DzkHost=localhost:9983 -DSTOP.PORT=6574 -DSTOP.KEY=key -jar start.jar 1>example2.log 2>&1 &
|
|
|
|
cd ../example3
|
|
java -Djetty.port=9575 -DzkRun -DzkHost=localhost:9983 -DSTOP.PORT=6575 -DSTOP.KEY=key -jar start.jar 1>example3.log 2>&1 &
|
|
|
|
cd ../example4
|
|
java -Djetty.port=9576 -DzkHost=localhost:9983 -DnumShards=2 -DSTOP.PORT=6576 -DSTOP.KEY=key -jar start.jar 1>example4.log 2>&1 &
|
|
|