2007-08-22 22:19:18 -04:00
|
|
|
#!/usr/bin/env bash
|
2007-07-12 18:08:25 -04:00
|
|
|
#
|
|
|
|
#/**
|
|
|
|
# * Copyright 2007 The Apache Software Foundation
|
|
|
|
# *
|
|
|
|
# * 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.
|
|
|
|
# */
|
|
|
|
|
2007-06-14 18:08:56 -04:00
|
|
|
# Modelled after $HADOOP_HOME/bin/stop-hbase.sh.
|
|
|
|
|
|
|
|
# Stop hadoop hbase daemons. Run this on master node.
|
|
|
|
|
2010-07-27 17:50:05 -04:00
|
|
|
bin=`dirname "${BASH_SOURCE-$0}"`
|
2010-07-12 20:24:12 -04:00
|
|
|
bin=`cd "$bin">/dev/null; pwd`
|
2007-06-14 18:08:56 -04:00
|
|
|
|
|
|
|
. "$bin"/hbase-config.sh
|
|
|
|
|
2008-02-05 15:09:24 -05:00
|
|
|
"$bin"/hbase-daemon.sh --config "${HBASE_CONF_DIR}" stop master
|
2010-05-18 15:24:36 -04:00
|
|
|
distMode=`$bin/hbase org.apache.hadoop.hbase.HBaseConfTool hbase.cluster.distributed`
|
|
|
|
if [ "$distMode" == 'true' ]
|
|
|
|
then
|
|
|
|
"$bin"/hbase-daemons.sh --config "${HBASE_CONF_DIR}" stop zookeeper
|
|
|
|
fi
|