Skip to content

Commit e7051f9

Browse files
authored
SOLR-17166 cloud.sh can't put solr.xml in zk anymore (#2279)
1 parent 065d21a commit e7051f9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

dev-tools/scripts/cloud.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@
4141
# By default the script sets up a local Solr cloud with 4 nodes, in a local
4242
# directory with ISO date as the name. A local zookeeper at 2181 or the
4343
# specified port is presumed to be available, a new zk chroot is used for each
44-
# cluster based on the file system path to the cluster directory. the default
45-
# solr.xml is added to this solr root dir in zookeeper.
44+
# cluster based on the file system path to the cluster directory.
4645
#
4746
# Debugging ports are automatically opened for each node starting with port 5001
4847
#
@@ -338,7 +337,7 @@ start(){
338337
mkdir -p "${CLUSTER_WD}/n${i}"
339338
argsArray=(-c -s $CLUSTER_WD_FULL/n${i} -z localhost:${ZK_PORT}/solr_${SAFE_DEST} -p 898${i} -m $MEMORY \
340339
-a "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=500${i} \
341-
-Dsolr.solrxml.location=zookeeper -Dsolr.log.dir=$CLUSTER_WD_FULL/n${i} $JVM_ARGS")
340+
-Dsolr.log.dir=$CLUSTER_WD_FULL/n${i} $JVM_ARGS")
342341
FINAL_COMMAND="${SOLR}/bin/solr ${argsArray[@]}"
343342
echo ${FINAL_COMMAND}
344343
${SOLR}/bin/solr start "${argsArray[@]}"

0 commit comments

Comments
 (0)