Ignore:
Timestamp:
Dec 22, 2010, 12:43:15 AM (14 years ago)
Author:
jazz
Message:
  • 加入 0.1.3 變更內容,保留 0.1.2 的 cygwin_mirror/setup.ini
Location:
hadoop4win-setup/my_packages/hbase/bin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • hadoop4win-setup/my_packages/hbase/bin/hbase-init

    r143 r232  
    11#!/bin/bash
    2 if [ ! -f /usr/src/hbase-0.20.3.tar.gz ]; then
    3   wget http://ftp.twaren.net/Unix/Web/apache/hadoop/hbase/hbase-0.20.3/hbase-0.20.3.tar.gz -O /usr/src/hbase-0.20.3.tar.gz
     2if [ ! -f /usr/src/hbase-*.tar.gz ]; then
     3  echo "Hbase tar ball not found at /usr/src/hbase-*.tar.gz!!"
     4  exit
    45fi
    56
    67if [ ! -f /opt/hase* ]; then
    7   tar zxvf /usr/src/hbase-0.20.3.tar.gz -C /opt
     8  tar zxvf /usr/src/hbase-*.tar.gz -C /opt
    89  ln -s /opt/hbase-* /opt/hbase
    910
     
    5253EOF
    5354
    54   clear
    55   echo "=========================================="
    56   echo " !! NOTE !!                               "
    57   echo " please 'source /etc/profile' to update   "
    58   echo " current \$PATH environment variables or  "
    59   echo " login again to update \$PATH variables.  "
    60   echo " .                                        "
    61   echo " run 'start-hbase' to start hbase daemons."
    62   echo " run 'stop-hbase'  to stop hbase daemons. "
    63   echo " run 'hbase shell hbase-test'  to test    "
    64   echo " hbase services.                          "
    65   echo "=========================================="
     55cat >> /etc/profile << EOF
     56  echo "============================================"
     57  echo " Use 'start-hadoop' to start hadoop daemons."
     58  echo " Use 'start-hadoop' to stop  hadoop daemons."
     59  echo " ."
     60  echo " run 'start-hbase' to start hbase daemons.  "
     61  echo " run 'stop-hbase'  to stop hbase daemons.   "
     62  echo " run 'hbase shell hbase-test'  to test      "
     63  echo " hbase services.                            "
     64  echo " ."
     65  echo " Use 'jps' to check java process for        "
     66  echo " troubleshooting.                           "
     67  echo "============================================"
     68EOF
    6669
    6770  echo " Starting HBase ....."
  • hadoop4win-setup/my_packages/hbase/bin/start-hbase

    r141 r232  
    11#!/bin/bash
    2 cygstart --showminnoactive /bin/bash -c /bin/start-hbase-daemon
    3 for ((i=1;i<=10;i++)); do sleep 1; printf "."; done
    4 printf "\n"
    5 jps
     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 "============================================"
  • hadoop4win-setup/my_packages/hbase/bin/stop-hbase

    r141 r232  
    11#!/bin/bash
    2 /opt/hbase/bin/hbase-daemon.sh stop regionserver
    3 /opt/hbase/bin/hbase-daemon.sh stop master
    4 /opt/hbase/bin/hbase-daemon.sh stop zookeeper
     2if [ ! -z "$(jps | grep HRegionServer)" ];then /opt/hbase/bin/hbase-daemon.sh stop regionserver ; fi
     3if [ ! -z "$(jps | grep HMaster)" ];then /opt/hbase/bin/hbase-daemon.sh stop master ; fi
     4if [ ! -z "$(jps | grep HQuorumPeer)" ];then /opt/hbase/bin/hbase-daemon.sh stop zookeeper ; fi
Note: See TracChangeset for help on using the changeset viewer.