source: hadoop4win-setup/my_packages/hbase/bin/start-hbase @ 232

Last change on this file since 232 was 232, checked in by jazz, 14 years ago
  • 加入 0.1.3 變更內容,保留 0.1.2 的 cygwin_mirror/setup.ini
  • Property svn:executable set to *
File size: 514 bytes
Line 
1#!/bin/bash
2if [ -z "$(jps | grep NameNode)" ]; then /bin/start-hadoop; fi
3if [ -z "$(jps | grep HRegionServer)" ]; then
4  cygstart --showminnoactive /bin/bash -c /bin/start-hbase-daemon
5  for ((i=1;i<=10;i++)); do sleep 1; printf "."; done
6  printf "\n"
7  jps
8else
9  echo "HBase had already started!!"
10  jps
11fi
12
13echo "============================================"
14echo " run 'cd ~; hbase shell hbase-test' to test "
15echo " hbase services.                            "
16echo "============================================"
Note: See TracBrowser for help on using the repository browser.