public class DbGroupAdmin extends Object
ReplicationGroupAdmin in a convenient command line utility. For example, it
can be used to display replication group information, or to remove a node
from the replication group.
Note: This utility does not handle security and authorization. It is left to the user to ensure that the utility is invoked with proper authorization.
See main(java.lang.String...) for a full description of the command line
arguments.
| Constructor and Description |
|---|
DbGroupAdmin(String groupName,
Set<InetSocketAddress> helperSockets)
Create a DbGroupAdmin instance for programmatic use.
|
| Modifier and Type | Method and Description |
|---|---|
void |
dumpGroup()
Display group information.
|
static void |
main(String... args)
Usage:
|
void |
removeMember(String name)
Remove a node from the replication group.
|
void |
transferMaster(String nodeList,
String timeout)
Transfers the master role from the current master to one of the
electable replicas specified in the argument list.
|
void |
updateAddress(String nodeName,
String newHostName,
int newPort)
Update the network address for a specified node.
|
public DbGroupAdmin(String groupName, Set<InetSocketAddress> helperSockets)
groupName - replication group namehelperSockets - set of host and port pairs for group members which
can be queried to obtain group information.public static void main(String... args) throws Exception
java {com.sleepycat.je.rep.util.DbGroupAdmin |
-jar je-<version>.jar DbGroupAdmin}
-groupName <group name> # name of replication group
-helperHosts <host:port> # identifier for one or more members
# of the replication group which can be
# contacted for group information, in
# this format:
# hostname[:port][,hostname[:port]]*
-dumpGroup # dump group information
-removeMember <node name># node to be removed
-updateAddress <node name> <new host:port>
# update the network address for a specified
# node. The node should not be alive when
# updating address
-transferMaster [-force] <node1,node2,...> <timeout>
Exceptionpublic void dumpGroup()
public void removeMember(String name)
name - name of the node to be removedReplicationGroupAdmin.removeMember(java.lang.String)public void updateAddress(String nodeName, String newHostName, int newPort)
ReplicationGroupAdmin.updateAddress(java.lang.String, java.lang.String, int) for more information.nodeName - the name of the node whose address will be updatednewHostName - the new host name of the nodenewPort - the new port number of the nodepublic void transferMaster(String nodeList, String timeout)
nodeList - comma-separated list of nodestimeout - in
same form as accepted by duration config paramsReplicatedEnvironment.transferMaster(java.util.Set<java.lang.String>, int, java.util.concurrent.TimeUnit)Copyright (c) 2004, 2013 Oracle and/or its affiliates. All rights reserved.