Michael Blow | 6214f6f | 2016-08-31 03:03:00 -0400 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # ------------------------------------------------------------ |
| 3 | # Licensed to the Apache Software Foundation (ASF) under one |
| 4 | # or more contributor license agreements. See the NOTICE file |
| 5 | # distributed with this work for additional information |
| 6 | # regarding copyright ownership. The ASF licenses this file |
| 7 | # to you under the Apache License, Version 2.0 (the |
| 8 | # "License"); you may not use this file except in compliance |
| 9 | # with the License. You may obtain a copy of the License at |
| 10 | # |
| 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | # |
| 13 | # Unless required by applicable law or agreed to in writing, |
| 14 | # software distributed under the License is distributed on an |
| 15 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | # KIND, either express or implied. See the License for the |
| 17 | # specific language governing permissions and limitations |
| 18 | # under the License. |
| 19 | # ------------------------------------------------------------ |
| 20 | |
| 21 | if [ -z "$JAVA_HOME" -a -x /usr/libexec/java_home ]; then |
| 22 | JAVA_HOME=$(/usr/libexec/java_home) |
| 23 | export JAVA_HOME |
| 24 | fi |
| 25 | |
| 26 | [ -z "$JAVA_HOME" ] && { |
| 27 | echo "JAVA_HOME not set" |
| 28 | exit 1 |
| 29 | } |
| 30 | "$JAVA_HOME/bin/java" -version 2>&1 | grep -q '1\.[89]' || { |
| 31 | echo "JAVA_HOME must be at version 1.8 or later:" |
| 32 | "$JAVA_HOME/bin/java" -version |
| 33 | exit 2 |
| 34 | } |
| 35 | DIRNAME=$(dirname $0) |
| 36 | [ $(echo $DIRNAME | wc -l) -ne 1 ] && { |
| 37 | echo "Paths with spaces are not supported" |
| 38 | exit 3 |
| 39 | } |
| 40 | |
| 41 | CLUSTERDIR=$(cd $DIRNAME/..; echo $PWD) |
| 42 | INSTALLDIR=$(cd $CLUSTERDIR/../..; echo $PWD) |
| 43 | LOGSDIR=$CLUSTERDIR/logs |
| 44 | |
| 45 | echo "CLUSTERDIR=$CLUSTERDIR" |
| 46 | echo "INSTALLDIR=$INSTALLDIR" |
Michael Blow | fdcf055 | 2016-09-25 22:18:27 -0400 | [diff] [blame] | 47 | echo "LOGSDIR=$LOGSDIR" |
Michael Blow | 6214f6f | 2016-08-31 03:03:00 -0400 | [diff] [blame] | 48 | echo |
| 49 | cd $CLUSTERDIR |
| 50 | mkdir -p $LOGSDIR |
| 51 | $INSTALLDIR/bin/${HELPER_COMMAND} get_cluster_state -quiet \ |
| 52 | && echo "ERROR: sample cluster address (localhost:${LISTEN_PORT}) already in use" && exit 1 |
| 53 | |
| 54 | ( |
| 55 | echo "--------------------------" |
| 56 | date |
| 57 | echo "--------------------------" |
| 58 | ) | tee -a $LOGSDIR/blue-service.log | tee -a $LOGSDIR/red-service.log >> $LOGSDIR/cc.log |
| 59 | echo "Starting sample cluster..." |
| 60 | $INSTALLDIR/bin/${NC_SERVICE_COMMAND} -logdir - -config-file $CLUSTERDIR/conf/blue.conf >> $LOGSDIR/blue-service.log 2>&1 & |
| 61 | $INSTALLDIR/bin/${NC_SERVICE_COMMAND} -logdir - >> $LOGSDIR/red-service.log 2>&1 & |
| 62 | $INSTALLDIR/bin/${CC_COMMAND} -config-file $CLUSTERDIR/conf/cc.conf >> $LOGSDIR/cc.log 2>&1 & |
Michael Blow | fdcf055 | 2016-09-25 22:18:27 -0400 | [diff] [blame] | 63 | $INSTALLDIR/bin/${HELPER_COMMAND} wait_for_cluster -timeout 30 |
| 64 | exit $? |