SENTRY-914: Sentry default webserver port needs to change out of ephemeral port range. (Dapeng Sun, reviewed by Lenni Kuff and Guoquan Shen)
Project: http://git-wip-us.apache.org/repos/asf/incubator-sentry/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-sentry/commit/eb6ee63b Tree: http://git-wip-us.apache.org/repos/asf/incubator-sentry/tree/eb6ee63b Diff: http://git-wip-us.apache.org/repos/asf/incubator-sentry/diff/eb6ee63b Branch: refs/heads/hive_plugin_v2 Commit: eb6ee63b1c08b39d159f9a833acfc19caa2b1f36 Parents: adc2280 Author: Sun Dapeng <[email protected]> Authored: Thu Oct 22 09:56:05 2015 +0800 Committer: Sun Dapeng <[email protected]> Committed: Mon Nov 2 16:37:23 2015 +0800 ---------------------------------------------------------------------- .../java/org/apache/sentry/service/thrift/ServiceConstants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-sentry/blob/eb6ee63b/sentry-provider/sentry-provider-db/src/main/java/org/apache/sentry/service/thrift/ServiceConstants.java ---------------------------------------------------------------------- diff --git a/sentry-provider/sentry-provider-db/src/main/java/org/apache/sentry/service/thrift/ServiceConstants.java b/sentry-provider/sentry-provider-db/src/main/java/org/apache/sentry/service/thrift/ServiceConstants.java index e23e9d7..d8afbae 100644 --- a/sentry-provider/sentry-provider-db/src/main/java/org/apache/sentry/service/thrift/ServiceConstants.java +++ b/sentry-provider/sentry-provider-db/src/main/java/org/apache/sentry/service/thrift/ServiceConstants.java @@ -154,7 +154,7 @@ public class ServiceConstants { public static final String SENTRY_WEB_ENABLE = "sentry.service.web.enable"; public static final Boolean SENTRY_WEB_ENABLE_DEFAULT = false; public static final String SENTRY_WEB_PORT = "sentry.service.web.port"; - public static final int SENTRY_WEB_PORT_DEFAULT = 51000; + public static final int SENTRY_WEB_PORT_DEFAULT = 29000; public static final String SENTRY_REPORTER = "sentry.service.reporter"; public static final String SENTRY_REPORTER_JMX = SentryMetrics.Reporting.JMX.name(); //case insensitive public static final String SENTRY_REPORTER_CONSOLE = SentryMetrics.Reporting.CONSOLE.name();//case insensitive
