HADOOP-12811. Change kms server port number which conflicts with HMaster port number. Contributed by Xiao Chen.
This commit is contained in:
parent
8b2880c0b6
commit
a74580a4d3
@ -60,14 +60,14 @@ public void testCreation() throws Exception {
|
|||||||
providers[2].getKMSUrl()));
|
providers[2].getKMSUrl()));
|
||||||
|
|
||||||
kp = new KMSClientProvider.Factory().createProvider(new URI(
|
kp = new KMSClientProvider.Factory().createProvider(new URI(
|
||||||
"kms://http@host1;host2;host3:16000/kms/foo"), conf);
|
"kms://http@host1;host2;host3:9600/kms/foo"), conf);
|
||||||
assertTrue(kp instanceof LoadBalancingKMSClientProvider);
|
assertTrue(kp instanceof LoadBalancingKMSClientProvider);
|
||||||
providers =
|
providers =
|
||||||
((LoadBalancingKMSClientProvider) kp).getProviders();
|
((LoadBalancingKMSClientProvider) kp).getProviders();
|
||||||
assertEquals(3, providers.length);
|
assertEquals(3, providers.length);
|
||||||
assertEquals(Sets.newHashSet("http://host1:16000/kms/foo/v1/",
|
assertEquals(Sets.newHashSet("http://host1:9600/kms/foo/v1/",
|
||||||
"http://host2:16000/kms/foo/v1/",
|
"http://host2:9600/kms/foo/v1/",
|
||||||
"http://host3:16000/kms/foo/v1/"),
|
"http://host3:9600/kms/foo/v1/"),
|
||||||
Sets.newHashSet(providers[0].getKMSUrl(),
|
Sets.newHashSet(providers[0].getKMSUrl(),
|
||||||
providers[1].getKMSUrl(),
|
providers[1].getKMSUrl(),
|
||||||
providers[2].getKMSUrl()));
|
providers[2].getKMSUrl()));
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
# The HTTP port used by KMS
|
# The HTTP port used by KMS
|
||||||
#
|
#
|
||||||
# export KMS_HTTP_PORT=16000
|
# export KMS_HTTP_PORT=9600
|
||||||
|
|
||||||
# The Admin port used by KMS
|
# The Admin port used by KMS
|
||||||
#
|
#
|
||||||
|
@ -37,7 +37,7 @@ function hadoop_subproject_init
|
|||||||
export HADOOP_CATALINA_CONFIG="${HADOOP_CONF_DIR}"
|
export HADOOP_CATALINA_CONFIG="${HADOOP_CONF_DIR}"
|
||||||
export HADOOP_CATALINA_LOG="${HADOOP_LOG_DIR}"
|
export HADOOP_CATALINA_LOG="${HADOOP_LOG_DIR}"
|
||||||
|
|
||||||
export HADOOP_CATALINA_HTTP_PORT="${KMS_HTTP_PORT:-16000}"
|
export HADOOP_CATALINA_HTTP_PORT="${KMS_HTTP_PORT:-9600}"
|
||||||
export HADOOP_CATALINA_ADMIN_PORT="${KMS_ADMIN_PORT:-$((HADOOP_CATALINA_HTTP_PORT+1))}"
|
export HADOOP_CATALINA_ADMIN_PORT="${KMS_ADMIN_PORT:-$((HADOOP_CATALINA_HTTP_PORT+1))}"
|
||||||
export HADOOP_CATALINA_MAX_THREADS="${KMS_MAX_THREADS:-1000}"
|
export HADOOP_CATALINA_MAX_THREADS="${KMS_MAX_THREADS:-1000}"
|
||||||
export HADOOP_CATALINA_MAX_HTTP_HEADER_SIZE="${KMS_MAX_HTTP_HEADER_SIZE:-65536}"
|
export HADOOP_CATALINA_MAX_HTTP_HEADER_SIZE="${KMS_MAX_HTTP_HEADER_SIZE:-65536}"
|
||||||
|
@ -32,7 +32,7 @@ KMS is a Java web-application and it runs using a pre-configured Tomcat bundled
|
|||||||
KMS Client Configuration
|
KMS Client Configuration
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
The KMS client `KeyProvider` uses the **kms** scheme, and the embedded URL must be the URL of the KMS. For example, for a KMS running on `http://localhost:16000/kms`, the KeyProvider URI is `kms://http@localhost:16000/kms`. And, for a KMS running on `https://localhost:16000/kms`, the KeyProvider URI is `kms://https@localhost:16000/kms`
|
The KMS client `KeyProvider` uses the **kms** scheme, and the embedded URL must be the URL of the KMS. For example, for a KMS running on `http://localhost:9600/kms`, the KeyProvider URI is `kms://http@localhost:9600/kms`. And, for a KMS running on `https://localhost:9600/kms`, the KeyProvider URI is `kms://https@localhost:9600/kms`
|
||||||
|
|
||||||
KMS
|
KMS
|
||||||
---
|
---
|
||||||
@ -178,7 +178,7 @@ $H3 Embedded Tomcat Configuration
|
|||||||
|
|
||||||
To configure the embedded Tomcat go to the `share/hadoop/kms/tomcat/conf`.
|
To configure the embedded Tomcat go to the `share/hadoop/kms/tomcat/conf`.
|
||||||
|
|
||||||
KMS pre-configures the HTTP and Admin ports in Tomcat's `server.xml` to 16000 and 16001.
|
KMS pre-configures the HTTP and Admin ports in Tomcat's `server.xml` to 9600 and 9601.
|
||||||
|
|
||||||
Tomcat logs are also preconfigured to go to Hadoop's `logs/` directory.
|
Tomcat logs are also preconfigured to go to Hadoop's `logs/` directory.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user