Release version 1.13.7
[sdc.git] / sdc-os-chef / scripts / docker_health.sh
1 #!/bin/bash
2
3 curl localhost:9200/_cluster/health?pretty=true
4
5 echo "BE health-Check:"
6 curl http://localhost:8080/sdc2/rest/healthCheck
7
8 echo ""
9 echo ""
10 echo "FE health-Check:"
11 curl http://localhost:8181/sdc1/rest/healthCheck
12
13
14 echo ""
15 echo ""
16 res=`curl -s -X GET -H "Accept: application/json" -H "Content-Type: application/json" -H "USER_ID: jh0003" "http://localhost:8080/sdc2/rest/v1/user/demo" | wc -l`
17 if [[ ${res} != 0 ]]
18 then
19     echo "Error [${res}] while user existance check"
20     exit ${res}
21 fi
22 echo "check user existance: OK"
23