You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2012/07/09 19:33:13 UTC

svn commit: r1359301 - in /lucene/dev/trunk/solr/cloud-dev: example1.sh example2.sh example3.sh

Author: markrmiller
Date: Mon Jul  9 17:33:12 2012
New Revision: 1359301

URL: http://svn.apache.org/viewvc?rev=1359301&view=rev
Log:
fix cloud dev example scripts which point to solr/conf - use boostrap_conf=true instead

Modified:
    lucene/dev/trunk/solr/cloud-dev/example1.sh
    lucene/dev/trunk/solr/cloud-dev/example2.sh
    lucene/dev/trunk/solr/cloud-dev/example3.sh

Modified: lucene/dev/trunk/solr/cloud-dev/example1.sh
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/cloud-dev/example1.sh?rev=1359301&r1=1359300&r2=1359301&view=diff
==============================================================================
--- lucene/dev/trunk/solr/cloud-dev/example1.sh (original)
+++ lucene/dev/trunk/solr/cloud-dev/example1.sh Mon Jul  9 17:33:12 2012
@@ -15,7 +15,7 @@ cp -r -f example example2
 
 
 cd example
-java -DzkRun -DnumShards=2 -DSTOP.PORT=7983 -DSTOP.KEY=key -Dbootstrap_confdir=solr/conf -jar start.jar 1>example.log 2>&1 &
+java -DzkRun -DnumShards=2 -DSTOP.PORT=7983 -DSTOP.KEY=key -Dbootstrap_conf=true -jar start.jar 1>example.log 2>&1 &
 
 sleep 10
 

Modified: lucene/dev/trunk/solr/cloud-dev/example2.sh
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/cloud-dev/example2.sh?rev=1359301&r1=1359300&r2=1359301&view=diff
==============================================================================
--- lucene/dev/trunk/solr/cloud-dev/example2.sh (original)
+++ lucene/dev/trunk/solr/cloud-dev/example2.sh Mon Jul  9 17:33:12 2012
@@ -19,8 +19,9 @@ cp -r -f example example4
 
 
 cd example
-java -DzkRun -DnumShards=2 -DSTOP.PORT=7983 -DSTOP.KEY=key -Dbootstrap_confdir=solr/conf -jar start.jar 1>example.log 2>&1 &
+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

Modified: lucene/dev/trunk/solr/cloud-dev/example3.sh
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/cloud-dev/example3.sh?rev=1359301&r1=1359300&r2=1359301&view=diff
==============================================================================
--- lucene/dev/trunk/solr/cloud-dev/example3.sh (original)
+++ lucene/dev/trunk/solr/cloud-dev/example3.sh Mon Jul  9 17:33:12 2012
@@ -19,10 +19,10 @@ cp -r -f example example4
 
 
 cd example
-java -DzkRun -DnumShards=2 -DSTOP.PORT=7983 -DSTOP.KEY=key -Dbootstrap_confdir=solr/conf -DzkHost=localhost:9983,localhost:14574,localhost:14585 -jar start.jar 1>example.log 2>&1 &
+java -DzkRun -DnumShards=2 -DSTOP.PORT=7983 -DSTOP.KEY=key -Dbootstrap_conf=true -DzkHost=localhost:9983,localhost:14574,localhost:14585 -jar start.jar 1>example.log 2>&1 &
 
 cd ../example2
-java -Djetty.port=13574 -DzkRun -DzkHost=localhost:9983,localhost:14574,localhost:14575 -DSTOP.PORT=6574 -DSTOP.KEY=key -jar start.jar 1>example2.log 2>&1 &
+java -Djetty.port=13574 -DzkRun -DzkHost=localhost:9983,localhost:14574,localhost:14585 -DSTOP.PORT=6574 -DSTOP.KEY=key -jar start.jar 1>example2.log 2>&1 &
 
 cd ../example3
 java -Djetty.port=13585 -DzkRun -DzkHost=localhost:9983,localhost:14574,localhost:14585 -DSTOP.PORT=6575 -DSTOP.KEY=key -jar start.jar 1>example3.log 2>&1 &