blob: 0a2b51e8de5e349ceacc4b1a07df6281f830cedd [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001#/*
2# Copyright 2009-2013 by The Regents of the University of California
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# you may obtain a copy of the License from
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#*/
ramangrover29116eb972013-02-20 20:47:35 +000015ZK_HOME=$1
16ZK_ID=$2
ramangrover29eb8bf052013-04-02 23:42:56 +000017JAVA_HOME=$3
ramangrover29116eb972013-02-20 20:47:35 +000018mkdir $ZK_HOME/data
19echo $2 > $ZK_HOME/data/myid
ramangrover29@gmail.com4ba21522013-02-27 23:35:42 +000020CLASSPATH=$ZK_HOME/lib/zookeeper-3.4.5.jar:$ZK_HOME/lib/log4j-1.2.15.jar:$ZK_HOME/lib/slf4j-api-1.6.1.jar:$ZK_HOME/conf:$ZK_HOME/conf/log4j.properties
ramangrover29116eb972013-02-20 20:47:35 +000021ZK_CONF=$ZK_HOME/zk.cfg
22export JAVA_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=8400,server=y,suspend=n"
ramangrover29eb8bf052013-04-02 23:42:56 +000023$JAVA_HOME/bin/java $JAVA_OPTS -Dlog4j.configuration="file:$ZK_HOME/conf/log4j.properties" -cp $CLASSPATH org.apache.zookeeper.server.quorum.QuorumPeerMain $ZK_CONF