4.2. Smoke Test HBase and ZooKeeper

Use the following instructions to smoke test HBase and ZooKeeper:

  1. Open the HBase command line tool:

    hbase shell
    

  2. On the HBase shell prompt execute the following commands:

    status
    help
    create 'usertable', 'family'
    put 'usertable', 'row01', 'family:col01', 'value1'
    scan 'usertable'
    disable 'usertable'
    drop 'usertable'
    
    


loading table of contents...