source: other-projects/hathitrust/vagrant-solr-cluster/trunk/modules/zookeeper/templates/solr-start-all.sh@ 31009

Last change on this file since 31009 was 31009, checked in by davidb, 7 years ago

Adjustments after latest fresh 'vagrant up' trial

File size: 273 bytes
Line 
1#!/bin/bash
2
3for node in <%= @solr_1 %> <%= @solr_2 %> <%= @solr_3 %> ; do
4 echo ""
5 echo "****"
6 echo "* Starting Solr daemon on '$node'"
7 echo "****"
8 # ssh $node solr-start-node.sh
9 ssh $node solr start -c -z zookeeper:2181 -h $node:8983
10done
11
12
Note: See TracBrowser for help on using the repository browser.