-
Notifications
You must be signed in to change notification settings - Fork 8
/
usage.py
178 lines (144 loc) · 5.85 KB
/
usage.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
def commands_usage():
return """
server-list list all servers in a cluster
server-info show details on one server
server-add add one or more servers to the cluster
server-readd readd a server that was failed over
rebalance start a cluster rebalancing
rebalance-stop stop current cluster rebalancing
rebalance-status show status of current cluster rebalancing
failover failover one or more servers
cluster-init set the username,password and port of the cluster
node-init set node specific parameters
bucket-list list all buckets in a cluster
bucket-create add a new bucket to the cluster
bucket-edit modify an existing bucket
bucket-delete delete an existing bucket
bucket-flush flush a given bucket
help show longer usage/help and examples
"""
def short_usage():
print "usage: couchbase-cli COMMAND CLUSTER [OPTIONS]"
print ""
print "CLUSTER is --cluster=HOST[:PORT] or -c HOST[:PORT]"
print ""
print "COMMANDs include" + commands_usage()
sys.exit(2)
def usage(error_msg=''):
if error_msg:
print "ERROR: %s" % error_msg
sys.exit(2)
print """couchbase-cli - command-line cluster administration tool
usage: couchbase-cli COMMAND CLUSTER [OPTIONS]
COMMAND:""" + commands_usage() + """
CLUSTER:
--cluster=HOST[:PORT] or -c HOST[:PORT]
OPTIONS:
-u USERNAME, --user=USERNAME admin username of the cluster
-p PASSWORD, --password=PASSWORD admin password of the cluster
-o KIND, --output=KIND KIND is json or standard
-d, --debug
server-add OPTIONS:
--server-add=HOST[:PORT] server to be added
--server-add-username=USERNAME admin username for the
server to be added
--server-add-password=PASSWORD admin password for the
server to be added
server-readd OPTIONS:
--server-add=HOST[:PORT] server to be added
--server-add-username=USERNAME admin username for the
server to be added
--server-add-password=PASSWORD admin password for the
server to be added
rebalance OPTIONS:
--server-add* see server-add OPTIONS
--server-remove=HOST[:PORT] the server to be removed
failover OPTIONS:
--server-failover=HOST[:PORT] server to failover
cluster-init OPTIONS:
--cluster-init-username=USER new admin username
--cluster-init-password=PASSWORD new admin password
--cluster-init-port=PORT new cluster REST/http port
--cluster-init-ramsize=RAMSIZEMB per node ram quota in MB
node-init OPTIONS:
--node-init-data-path=PATH per node path to store data
bucket-* OPTIONS:
--bucket=BUCKETNAME bucket to act on
--bucket-type=TYPE memcached or couchbase
--bucket-port=PORT supports ASCII protocol and is auth-less
--bucket-password=PASSWORD standard port, exclusive with bucket-port
--bucket-ramsize=RAMSIZEMB ram quota in MB
--bucket-replica=COUNT replication count
--wait wait for bucket create to be complete before returning
The default PORT number is 8091.
EXAMPLES:
List servers in a cluster:
couchbase-cli server-list -c 192.168.0.1:8091
Server information:
couchbase-cli server-info -c 192.168.0.1:8091
Add a node to a cluster, but do not rebalance:
couchbase-cli server-add -c 192.168.0.1:8091 \\
--server-add=192.168.0.2:8091 \\
--server-add-username=Administrator \\
--server-add-password=password
Add a node to a cluster and rebalance:
couchbase-cli rebalance -c 192.168.0.1:8091 \\
--server-add=192.168.0.2:8091 \\
--server-add-username=Administrator \\
--server-add-password=password
Remove a node from a cluster and rebalance:
couchbase-cli rebalance -c 192.168.0.1:8091 \\
--server-remove=192.168.0.2:8091
Remove and add nodes from/to a cluster and rebalance:
couchbase-cli rebalance -c 192.168.0.1:8091 \\
--server-remove=192.168.0.2 \\
--server-add=192.168.0.4 \\
--server-add-username=Administrator \\
--server-add-password=password
Stop the current rebalancing:
couchbase-cli rebalance-stop -c 192.168.0.1:8091
Change the username, password, port and ram quota:
couchbase-cli cluster-init -c 192.168.0.1:8091 \\
--cluster-init-username=Administrator \\
--cluster-init-password=password \\
--cluster-init-port=8080 \\
--cluster-init-ramsize=300
Change the data path:
couchbase-cli node-init -c 192.168.0.1:8091 \\
--node-init-data-path=/tmp
List buckets in a cluster:
couchbase-cli bucket-list -c 192.168.0.1:8091
Create a new dedicated port couchbase bucket:
couchbase-cli bucket-create -c 192.168.0.1:8091 \\
--bucket=test_bucket \\
--bucket-type=couchbase \\
--bucket-port=11222 \\
--bucket-ramsize=200 \\
--bucket-replica=1
Create a couchbase bucket and wait for bucket ready:
couchbase-cli bucket-create -c 192.168.0.1:8091 \\
--bucket=test_bucket \\
--bucket-type=couchbase \\
--bucket-port=11222 \\
--bucket-ramsize=200 \\
--bucket-replica=1 \\
--wait
Create a new sasl memcached bucket:
couchbase-cli bucket-create -c 192.168.0.1:8091 \\
--bucket=test_bucket \\
--bucket-type=memcached \\
--bucket-password=password \\
--bucket-ramsize=200
Modify a dedicated port bucket:
couchbase-cli bucket-edit -c 192.168.0.1:8091 \\
--bucket=test_bucket \\
--bucket-port=11222 \\
--bucket-ramsize=400
Delete a bucket:
couchbase-cli bucket-delete -c 192.168.0.1:8091 \\
--bucket=test_bucket
"""
sys.exit(2)