mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
463 B
18 lines
463 B
#!/bin/bash
|
|
|
|
# Pass the base SOLR URL as parameter, i.e., bash check_solr http://localhost:8983
|
|
|
|
SOLR_URL=$1
|
|
|
|
echo "Waiting for solr connection at $SOLR_URL ..."
|
|
while true; do
|
|
echo "$SOLR_URL/solr/admin/collections?action=LIST"
|
|
RESULT=$(curl -s -o /dev/null -I "$SOLR_URL/solr/admin/collections?action=LIST" -w '%{http_code}')
|
|
echo $RESULT
|
|
if [ "$RESULT" -eq '200' ]; then
|
|
echo "Solr server is up!"
|
|
break
|
|
else
|
|
sleep 3
|
|
fi
|
|
done
|
|
|