From 0cf30fe5d05f8640f46b5b85be8902242d8f36b3 Mon Sep 17 00:00:00 2001 From: Tatsuo Kawasaki Date: Mon, 22 Dec 2014 12:06:12 +0900 Subject: [PATCH] Fixed document typos in the replication and security chapters. --- src/main/docbkx/ops_mgt.xml | 2 +- src/main/docbkx/security.xml | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/main/docbkx/ops_mgt.xml b/src/main/docbkx/ops_mgt.xml index 3e38ff7..a8e5daf 100644 --- a/src/main/docbkx/ops_mgt.xml +++ b/src/main/docbkx/ops_mgt.xml @@ -1596,7 +1596,7 @@ $ for i in `cat conf/regionservers|sort`; do ./bin/graceful_stop.sh --restart -- On the source cluster, in HBase Shell, add the destination cluster as a peer, using the add_peer command. The syntax is as follows: - hbase< add_peer 'ID' 'CLUSTER_KEY' + hbase> add_peer 'ID' 'CLUSTER_KEY' The ID is a string (prior to HBASE-11367, it was a short integer), which must not contain a hyphen (see Define the List of Visibility Labels HBase Shell - hbase< add_labels [ 'admin', 'service', 'developer', 'test' ] + hbase> add_labels [ 'admin', 'service', 'developer', 'test' ] Java API @@ -1313,9 +1313,9 @@ public static void addLabels() throws Exception { Associate Labels with Users HBase Shell - hbase< set_auths 'service', [ 'service' ] - hbase< set_auths 'testuser', [ 'test' ] - hbase< set_auths 'qa', [ 'test', 'developer' ] + hbase> set_auths 'service', [ 'service' ] + gbase> set_auths 'testuser', [ 'test' ] + hbase> set_auths 'qa', [ 'test', 'developer' ] Java API @@ -1339,9 +1339,9 @@ public void testSetAndGetUserAuths() throws Throwable { Clear Labels From Users HBase Shell - hbase< clear_auths 'service', [ 'service' ] - hbase< clear_auths 'testuser', [ 'test' ] - hbase< clear_auths 'qa', [ 'test', 'developer' ] + hbase> clear_auths 'service', [ 'service' ] + hbase> clear_auths 'testuser', [ 'test' ] + hbase> clear_auths 'qa', [ 'test', 'developer' ] Java API @@ -1363,11 +1363,11 @@ try { given version of the cell. HBase Shell - hbase< set_visibility 'user', 'admin|service|developer', \ + hbase> set_visibility 'user', 'admin|service|developer', \ { COLUMNS => 'i' } - hbase< set_visibility 'user', 'admin|service', \ + hbase> set_visibility 'user', 'admin|service', \ { COLUMNS => ' pii' } - hbase< COLUMNS => [ 'i', 'pii' ], \ + hbase> COLUMNS => [ 'i', 'pii' ], \ FILTER => "(PrefixFilter ('test'))" } -- 1.8.4.2