File tree 3 files changed +9
-9
lines changed
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -22,23 +22,23 @@ server, try...
22
22
23
23
Against a NorthScale server, for example, this would look like...
24
24
25
- moxi http://host:8080 /pools/default/bucketsStreamingConfig/default
25
+ moxi http://host:8091 /pools/default/bucketsStreamingConfig/default
26
26
27
27
The above, also, is just shorthand (assuming you have no other flags
28
28
specified), for the following explicit command-line...
29
29
30
- moxi -z url=http://host:8080 /url/of/vBucketServerMap.json
30
+ moxi -z url=http://host:8091 /url/of/vBucketServerMap.json
31
31
32
32
To provide reliability when running with multiple servers, moxi will
33
33
accept multiple URLs. For example...
34
34
35
35
moxi \
36
- http://host:8080 /pools/default/bucketsStreamingConfig/default,http://host2:8080 /pools/default/bucketsStreamingConfig/default
36
+ http://host:8091 /pools/default/bucketsStreamingConfig/default,http://host2:8091 /pools/default/bucketsStreamingConfig/default
37
37
38
38
When used with particular buckets, authentication may be required.
39
39
This can be done with the additional arguments to the -z flag...
40
40
41
- moxi -z auth=USER%PASSWD,url=http://host:8080 ...
41
+ moxi -z auth=USER%PASSWD,url=http://host:8091 ...
42
42
43
43
To get more command line usage info:
44
44
Original file line number Diff line number Diff line change @@ -304,8 +304,8 @@ proxy_main *cproxy_init_agent_start(char *jid,
304
304
// "Administrator"
305
305
config .pass = jpw ; // "password"
306
306
config .host = host ; // "localhost" or
307
- // "http://x.com:8080 "
308
- // "http://x.com:8080 /pools/default/buckets/default"
307
+ // "http://x.com:8091 "
308
+ // "http://x.com:8091 /pools/default/buckets/default"
309
309
config .software = PACKAGE ;
310
310
config .version = VERSION ;
311
311
config .save_path = dbpath ;
Original file line number Diff line number Diff line change @@ -4045,10 +4045,10 @@ static void usage(char **argv) {
4045
4045
printf ("The URL's provide REST/JSON vbucket-server-map(s) for dynamic\n"
4046
4046
"REST-based cluster (re-)configurability, using libvbucket hashing.\n"
4047
4047
"\nExample:\n"
4048
- " %s http://127.0.0.1:8080 /pools/default/bucketsStreaming/default\n" , m );
4048
+ " %s http://127.0.0.1:8091 /pools/default/bucketsStreaming/default\n" , m );
4049
4049
printf ("\nExample, multiple comma-separated URL's (without whitespace):\n"
4050
- " moxi http://membase1:8080 /pools/default/bucketsStreaming/default,\\\n"
4051
- " http://membase2:8080 /pools/default/bucketsStreaming/default\n" );
4050
+ " moxi http://membase1:8091 /pools/default/bucketsStreaming/default,\\\n"
4051
+ " http://membase2:8091 /pools/default/bucketsStreaming/default\n" );
4052
4052
#endif
4053
4053
#ifdef MOXI_USE_LIBMEMCACHED
4054
4054
printf ("\n" );
You can’t perform that action at this time.
0 commit comments