#!/usr/bin/env bash # # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # Configure Apache ZooKeeper after the ensemble has started. # # Call with arguments listing all the servers in the ensemble: # post-configure -c * set -x set -e CLOUD_PROVIDER= while getopts "c:" OPTION; do case $OPTION in c) CLOUD_PROVIDER="$OPTARG" shift $((OPTIND-1)); OPTIND=1 ;; esac done case $CLOUD_PROVIDER in # Use private IP for SELF_HOST # ZooKeeper listens on all addresses, not just the one specified in server. ec2) SELF_HOST=`wget -q -O - http://169.254.169.254/latest/meta-data/local-ipv4` ;; *) SELF_HOST=`/sbin/ifconfig eth1 | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1}'` ;; esac myid_file=/var/log/zookeeper/txlog/myid config_file=/etc/zookeeper/conf/zoo.cfg cat > $config_file <> $config_file id=$((id+1)) done if [ -z $myid ]; then echo "Could not determine id for my host $SELF_HOST against servers $@." exit 1 fi echo $myid > $myid_file # Now that it's configured, start ZooKeeper nohup /etc/rc.local &