source: other-projects/hathitrust/wcsa/extracted-features-solr/trunk/gslis-cluster/SCRIPTS/remote-solr-stop-all.sh@ 31161

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

Changes made after testing with 20 solr nodes

  • Property svn:executable set to *
File size: 196 bytes
Line 
1#!/bin/bash
2
3for solr_node in $SOLR_NODES ; do
4 solr_host=${solr_node%:*}
5 solr_port=${solr_node##*:}
6 echo "Stopping Solr cloud node: $solr_host"
7 ssh $solr_host solr stop -p $solr_port
8done
Note: See TracBrowser for help on using the repository browser.