source: other-projects/hathitrust/wcsa/extracted-features-solr/trunk/gslis-cluster/SCRIPTS/remote-solr-check-local-disk-all.sh@ 31152

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

Additional scripts to help with running solr locally out of /tmp area

  • Property svn:executable set to *
File size: 200 bytes
Line 
1#!/bin/bash
2
3unique_hosts=`echo $SOLR_NODES | tr ' ' '\n' | sed 's/:.*$//' | sort | uniq`
4
5echo "Running 'df' on all Solr hosts"
6
7for solr_host in $unique_hosts ; do
8 ssh $solr_host df -h /tmp;
9done
Note: See TracBrowser for help on using the repository browser.