blob: 53ceff8c0be8a17da71ab684408aa048a6ab5973 [file] [log] [blame]
Michael Blow6214f6f2016-08-31 03:03:00 -04001#!/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
21if [ -z "$JAVA_HOME" -a -x /usr/libexec/java_home ]; then
22 JAVA_HOME=$(/usr/libexec/java_home)
23 export JAVA_HOME
24fi
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}
35DIRNAME=$(dirname $0)
36[ $(echo $DIRNAME | wc -l) -ne 1 ] && {
37 echo "Paths with spaces are not supported"
38 exit 3
39}
40
41CLUSTERDIR=$(cd $DIRNAME/..; echo $PWD)
42INSTALLDIR=$(cd $CLUSTERDIR/../..; echo $PWD)
43LOGSDIR=$CLUSTERDIR/logs
44
45echo "CLUSTERDIR=$CLUSTERDIR"
46echo "INSTALLDIR=$INSTALLDIR"
Michael Blowfdcf0552016-09-25 22:18:27 -040047echo "LOGSDIR=$LOGSDIR"
Michael Blow6214f6f2016-08-31 03:03:00 -040048echo
49cd $CLUSTERDIR
50mkdir -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
59echo "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 Blowfdcf0552016-09-25 22:18:27 -040063$INSTALLDIR/bin/${HELPER_COMMAND} wait_for_cluster -timeout 30
64exit $?