|
Berkeley DB Java Edition version 5.0.34 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.sleepycat.je.rep.util.DbGroupAdmin
public class DbGroupAdmin
DbGroupAdmin supplies the functionality of the administrative class 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 Summary | |
---|---|
DbGroupAdmin(String groupName,
Set<InetSocketAddress> helperSockets)
Create a DbGroupAdmin instance for programmatic use. |
Method Summary | |
---|---|
void |
dumpGroup()
Display group information. |
static void |
main(String[] args)
Usage: |
void |
removeMember(String name)
Remove a node from the replication group. |
void |
updateAddress(String nodeName,
String newHostName,
int newPort)
Update the network address for a specified node. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
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.Method Detail |
---|
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
Exception
public 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 node
|
Berkeley DB Java Edition version 5.0.34 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |