Skip to content

Commit 02b6bd2

Browse files
steveyenMatt Ingenthron
authored and
Matt Ingenthron
committed
bug 2529 - port 8080 to 8091
Change-Id: Ic1a1d0ed6be0c8afc7c91b05487eefaf09dfe500 Reviewed-on: http://review.northscale.com/2787 Reviewed-by: Matt Ingenthron <[email protected]> Tested-by: Matt Ingenthron <[email protected]>
1 parent 1c6c78b commit 02b6bd2

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,23 @@ server, try...
2222

2323
Against a NorthScale server, for example, this would look like...
2424

25-
moxi http://host:8080/pools/default/bucketsStreamingConfig/default
25+
moxi http://host:8091/pools/default/bucketsStreamingConfig/default
2626

2727
The above, also, is just shorthand (assuming you have no other flags
2828
specified), for the following explicit command-line...
2929

30-
moxi -z url=http://host:8080/url/of/vBucketServerMap.json
30+
moxi -z url=http://host:8091/url/of/vBucketServerMap.json
3131

3232
To provide reliability when running with multiple servers, moxi will
3333
accept multiple URLs. For example...
3434

3535
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
3737

3838
When used with particular buckets, authentication may be required.
3939
This can be done with the additional arguments to the -z flag...
4040

41-
moxi -z auth=USER%PASSWD,url=http://host:8080...
41+
moxi -z auth=USER%PASSWD,url=http://host:8091...
4242

4343
To get more command line usage info:
4444

agent_config.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,8 @@ proxy_main *cproxy_init_agent_start(char *jid,
304304
// "Administrator"
305305
config.pass = jpw; // "password"
306306
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"
309309
config.software = PACKAGE;
310310
config.version = VERSION;
311311
config.save_path = dbpath;

memcached.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -4045,10 +4045,10 @@ static void usage(char **argv) {
40454045
printf("The URL's provide REST/JSON vbucket-server-map(s) for dynamic\n"
40464046
"REST-based cluster (re-)configurability, using libvbucket hashing.\n"
40474047
"\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);
40494049
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");
40524052
#endif
40534053
#ifdef MOXI_USE_LIBMEMCACHED
40544054
printf("\n");

0 commit comments

Comments
 (0)