Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The "SolrCloud" page has been changed by Mark Miller: http://wiki.apache.org/solr/SolrCloud?action=diff&rev1=52&rev2=53 {{{ cd example - java -Dbootstrap_confdir=./solr/conf -Dcollection.configName=myconf -DzkRun -DnumShards=2 -jar start.jar + java -Dbootstrap_confdir=./solr/collection1/conf -Dcollection.configName=myconf -DzkRun -DnumShards=2 -jar start.jar }}} * {{{-DzkRun}}} causes an embedded zookeeper server to be run as part of this Solr server. - * {{{-Dbootstrap_confdir=./solr/conf}}} Since we don't yet have a config in zookeeper, this parameter causes the local configuration directory {{{./solr/conf}}} to be uploaded as the "myconf" config. The name "myconf" is taken from the "collection.configName" param below. + * {{{-Dbootstrap_confdir=./solr/collection1/conf}}} Since we don't yet have a config in zookeeper, this parameter causes the local configuration directory {{{./solr/collection1/conf}}} to be uploaded as the "myconf" config. The name "myconf" is taken from the "collection.configName" param below. * {{{-Dcollection.configName=myconf}}} sets the config to use for the new collection. Omitting this param will cause the config name to default to "configuration1". * {{{-DnumShards=2}}} the number of logical partitions we plan on splitting the index into. @@ -128, +128 @@ {{{ cd example - java -Dbootstrap_confdir=./solr/conf -Dcollection.configName=myconf -DzkRun -DzkHost=localhost:9983,localhost:8574,localhost:9900 -DnumShards=2 -jar start.jar + java -Dbootstrap_confdir=./solr/collection1/conf -Dcollection.configName=myconf -DzkRun -DzkHost=localhost:9983,localhost:8574,localhost:9900 -DnumShards=2 -jar start.jar }}} {{{ cd example2