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 | |
Michael Blow | fec04f0 | 2016-10-27 21:15:20 -0400 | [diff] [blame] | 21 | function usage() { |
| 22 | echo |
| 23 | echo Usage: $(basename $0) [-f[orce]] |
| 24 | echo |
| 25 | echo " -f[orce] : Forces a start attempt when ${PRODUCT} processes are found to be running" |
| 26 | } |
| 27 | |
| 28 | while [ -n "$1" ]; do |
| 29 | case $1 in |
| 30 | -f|-force) force=1;; |
| 31 | -help|--help|-usage|--usage) usage; exit 0;; |
| 32 | *) echo "ERROR: unknown argument '$1'"; usage; exit 1;; |
| 33 | esac |
| 34 | shift |
| 35 | done |
| 36 | |
Michael Blow | 6214f6f | 2016-08-31 03:03:00 -0400 | [diff] [blame] | 37 | if [ -z "$JAVA_HOME" -a -x /usr/libexec/java_home ]; then |
| 38 | JAVA_HOME=$(/usr/libexec/java_home) |
| 39 | export JAVA_HOME |
| 40 | fi |
| 41 | |
| 42 | [ -z "$JAVA_HOME" ] && { |
| 43 | echo "JAVA_HOME not set" |
| 44 | exit 1 |
| 45 | } |
| 46 | "$JAVA_HOME/bin/java" -version 2>&1 | grep -q '1\.[89]' || { |
| 47 | echo "JAVA_HOME must be at version 1.8 or later:" |
| 48 | "$JAVA_HOME/bin/java" -version |
| 49 | exit 2 |
| 50 | } |
Michael Blow | d0324c2 | 2017-05-12 21:43:02 -0400 | [diff] [blame^] | 51 | DIRNAME=$(dirname "$0") |
Michael Blow | 6214f6f | 2016-08-31 03:03:00 -0400 | [diff] [blame] | 52 | [ $(echo $DIRNAME | wc -l) -ne 1 ] && { |
| 53 | echo "Paths with spaces are not supported" |
| 54 | exit 3 |
| 55 | } |
| 56 | |
Michael Blow | d0324c2 | 2017-05-12 21:43:02 -0400 | [diff] [blame^] | 57 | CLUSTERDIR=$(cd "$DIRNAME/.."; echo $PWD) |
| 58 | INSTALLDIR=$(cd "$CLUSTERDIR/../.."; echo $PWD) |
Michael Blow | 6214f6f | 2016-08-31 03:03:00 -0400 | [diff] [blame] | 59 | LOGSDIR=$CLUSTERDIR/logs |
| 60 | |
| 61 | echo "CLUSTERDIR=$CLUSTERDIR" |
| 62 | echo "INSTALLDIR=$INSTALLDIR" |
Michael Blow | fdcf055 | 2016-09-25 22:18:27 -0400 | [diff] [blame] | 63 | echo "LOGSDIR=$LOGSDIR" |
Michael Blow | 6214f6f | 2016-08-31 03:03:00 -0400 | [diff] [blame] | 64 | echo |
Michael Blow | d0324c2 | 2017-05-12 21:43:02 -0400 | [diff] [blame^] | 65 | cd "$CLUSTERDIR" |
| 66 | mkdir -p "$LOGSDIR" |
| 67 | "$INSTALLDIR/bin/${HELPER_COMMAND}" get_cluster_state -quiet \ |
Michael Blow | 6214f6f | 2016-08-31 03:03:00 -0400 | [diff] [blame] | 68 | && echo "ERROR: sample cluster address (localhost:${LISTEN_PORT}) already in use" && exit 1 |
| 69 | |
Michael Blow | efe014d | 2017-03-09 22:09:20 -0500 | [diff] [blame] | 70 | if ps -ef | grep 'java.*org\.apache\.hyracks\.control\.[cn]c\.\([CN]CDriver\|service\.NCService\)' > /tmp/$$_pids; then |
Michael Blow | fec04f0 | 2016-10-27 21:15:20 -0400 | [diff] [blame] | 71 | if [ $force ]; then |
| 72 | severity=WARNING |
| 73 | else |
| 74 | severity=ERROR |
| 75 | fi |
| 76 | echo -n "${severity}: ${PRODUCT} processes are already running; " |
| 77 | if [ $force ]; then |
| 78 | echo "-f[orce] specified, ignoring" |
| 79 | else |
| 80 | echo "aborting" |
| 81 | echo |
| 82 | echo "Re-run with -f to ignore, or run stop-sample-cluster.sh -f to forcibly terminate all running ${PRODUCT} processes:" |
Michael Blow | efe014d | 2017-03-09 22:09:20 -0500 | [diff] [blame] | 83 | cat /tmp/pids | sed 's/^ *[0-9]* \([0-9]*\).*org\.apache\.hyracks\.control\.[cn]c[^ ]*\.\([^ ]*\) .*/\1 - \2/' |
| 84 | rm /tmp/$$_pids |
Michael Blow | fec04f0 | 2016-10-27 21:15:20 -0400 | [diff] [blame] | 85 | exit 1 |
| 86 | fi |
| 87 | fi |
| 88 | |
Michael Blow | efe014d | 2017-03-09 22:09:20 -0500 | [diff] [blame] | 89 | rm /tmp/$$_pids |
Michael Blow | 6214f6f | 2016-08-31 03:03:00 -0400 | [diff] [blame] | 90 | ( |
| 91 | echo "--------------------------" |
| 92 | date |
| 93 | echo "--------------------------" |
Michael Blow | d0324c2 | 2017-05-12 21:43:02 -0400 | [diff] [blame^] | 94 | ) | tee -a "$LOGSDIR/blue-service.log" | tee -a "$LOGSDIR/red-service.log" >> "$LOGSDIR/cc.log" |
Michael Blow | fec04f0 | 2016-10-27 21:15:20 -0400 | [diff] [blame] | 95 | echo "INFO: Starting sample cluster..." |
Michael Blow | d0324c2 | 2017-05-12 21:43:02 -0400 | [diff] [blame^] | 96 | "$INSTALLDIR/bin/${NC_SERVICE_COMMAND}" -logdir - -config-file "$CLUSTERDIR/conf/blue.conf" >> "$LOGSDIR/blue-service.log" 2>&1 & |
| 97 | "$INSTALLDIR/bin/${NC_SERVICE_COMMAND}" -logdir - >> "$LOGSDIR/red-service.log" 2>&1 & |
| 98 | "$INSTALLDIR/bin/${CC_COMMAND}" -config-file "$CLUSTERDIR/conf/cc.conf" >> "$LOGSDIR/cc.log" 2>&1 & |
| 99 | "$INSTALLDIR/bin/${HELPER_COMMAND}" wait_for_cluster -timeout 30 |
Michael Blow | fdcf055 | 2016-09-25 22:18:27 -0400 | [diff] [blame] | 100 | exit $? |