mirror of https://github.com/apache/lucene.git
add start existing solrcloud script and remove data dir in init start script
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1243179 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2fc6800bdf
commit
0f1b765c28
|
@ -0,0 +1,26 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
rm -r -f dist
|
||||||
|
rm -r -f build
|
||||||
|
|
||||||
|
ant example dist
|
||||||
|
|
||||||
|
cd example
|
||||||
|
java -DzkRun -DSTOP.PORT=7983 -DSTOP.KEY=key -jar start.jar 1>example.log 2>&1 &
|
||||||
|
|
||||||
|
cd ../example2
|
||||||
|
java -Djetty.port=7574 -DzkHost=localhost:9983 -DSTOP.PORT=6574 -DSTOP.KEY=key -jar start.jar 1>example2.log 2>&1 &
|
||||||
|
|
||||||
|
cd ../example3
|
||||||
|
java -Djetty.port=7575 -DzkHost=localhost:9983 -DSTOP.PORT=6575 -DSTOP.KEY=key -jar start.jar 1>example3.log 2>&1 &
|
||||||
|
|
||||||
|
cd ../example4
|
||||||
|
java -Djetty.port=7576 -DzkHost=localhost:9983 -DSTOP.PORT=6576 -DSTOP.KEY=key -jar start.jar 1>example4.log 2>&1 &
|
||||||
|
|
||||||
|
cd ../example5
|
||||||
|
java -Djetty.port=7577 -DzkHost=localhost:9983 -DSTOP.PORT=6577 -DSTOP.KEY=key -jar start.jar 1>example5.log 2>&1 &
|
||||||
|
|
||||||
|
cd ../example6
|
||||||
|
java -Djetty.port=7578 -DzkHost=localhost:9983 -DSTOP.PORT=6578 -DSTOP.KEY=key -jar start.jar 1>example6.log 2>&1 &
|
|
@ -11,6 +11,7 @@ rm -r -f example6
|
||||||
rm -r -f dist
|
rm -r -f dist
|
||||||
rm -r -f build
|
rm -r -f build
|
||||||
rm -r -f example/solr/zoo_data
|
rm -r -f example/solr/zoo_data
|
||||||
|
rm -r -f example/solr/data
|
||||||
rm -f example/example.log
|
rm -f example/example.log
|
||||||
|
|
||||||
ant example dist
|
ant example dist
|
Loading…
Reference in New Issue