diff options
author | Michael Paquier | 2012-04-26 03:03:40 +0000 |
---|---|---|
committer | Michael Paquier | 2012-04-26 03:03:40 +0000 |
commit | 0ab163163ba39a83016e71fd4f4828a999fe83d4 (patch) | |
tree | d70ac5a7d25da6f17940b52b4deb216645c83f80 | |
parent | 627cbf6d63963da0ae875164929a915fd7498993 (diff) |
Change default port of GTM to 6666 in initgtm to stick with default on nodes
Default connection value n Coordinators and Datanodes is 6666.
This makes initialization more consistent.
-rw-r--r-- | src/bin/initgtm/initgtm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/initgtm/initgtm.c b/src/bin/initgtm/initgtm.c index 0c3b442aa4..784a2ab37c 100644 --- a/src/bin/initgtm/initgtm.c +++ b/src/bin/initgtm/initgtm.c @@ -60,11 +60,11 @@ static int output_errno = 0; static bool is_gtm = true; /* GTM or proxy */ /* defaults for all nodes */ -static int n_port = 6667; +static int n_port = 6666; static char *n_name = "one"; -/* defaults for proxies */ -static int gtm_port = 6666; +/* defaults for proxies - connection parameters to GTM */ +static int gtm_port = 6668; static char *gtm_host = "localhost"; /* path to 'initgtm' binary directory */ |