#!/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 * set -x set -e SELF_HOST=`/sbin/ifconfig eth0 | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1}'` 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 &