HADOOP-1835 Updated Documentation for HBase setup/installation
git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk/src/contrib/hbase@573691 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6626ee072a
commit
c3ee52355d
|
@ -43,6 +43,8 @@ Trunk (unreleased changes)
|
|||
HADOOP-1793 (Phase 1) Remove TestHClient
|
||||
HADOOP-1794 Remove deprecated APIs
|
||||
HADOOP-1802 Startup scripts should wait until hdfs as cleared 'safe mode'
|
||||
HADOOP-1833 bin/stop_hbase.sh returns before it completes
|
||||
(Izaak Rubin via Stack)
|
||||
HADOOP-1835 Updated Documentation for HBase setup/installation
|
||||
(Izaak Rubin via Stack)
|
||||
|
||||
|
|
|
@ -122,8 +122,13 @@ case $startStop in
|
|||
(stop)
|
||||
if [ -f $pid ]; then
|
||||
if kill -0 `cat $pid` > /dev/null 2>&1; then
|
||||
echo stopping $command
|
||||
echo -n stopping $command
|
||||
nohup nice -n $HADOOP_NICENESS "$HBASE_HOME"/bin/hbase --config="${HADOOP_CONF_DIR}" --hbaseconfig="${HBASE_CONF_DIR}" $command $startStop "$@" > "$log" 2>&1 < /dev/null &
|
||||
while kill -0 `cat $pid` > /dev/null 2>&1; do
|
||||
echo -n "."
|
||||
sleep 1;
|
||||
done
|
||||
echo
|
||||
else
|
||||
echo no $command to stop
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue