|
@@ -73,12 +73,13 @@ To use Kerberos SPNEGO as the authentication mechanism, the authentication filte
|
|
|
|
|
|
**Example**:
|
|
|
|
|
|
+```xml
|
|
|
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee">
|
|
|
...
|
|
|
|
|
|
<filter>
|
|
|
<filter-name>kerberosFilter</filter-name>
|
|
|
- <filter-class>org.apache.hadoop.security.auth.server.AuthenticationFilter</filter-class>
|
|
|
+ <filter-class>org.apache.hadoop.security.authentication.server.AuthenticationFilter</filter-class>
|
|
|
<init-param>
|
|
|
<param-name>type</param-name>
|
|
|
<param-value>kerberos</param-value>
|
|
@@ -112,6 +113,7 @@ To use Kerberos SPNEGO as the authentication mechanism, the authentication filte
|
|
|
|
|
|
...
|
|
|
</web-app>
|
|
|
+```
|
|
|
|
|
|
### Pseudo/Simple Configuration
|
|
|
|
|
@@ -125,12 +127,13 @@ To use Pseudo/Simple as the authentication mechanism (trusting the value of the
|
|
|
|
|
|
**Example**:
|
|
|
|
|
|
+```xml
|
|
|
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee">
|
|
|
...
|
|
|
|
|
|
<filter>
|
|
|
<filter-name>simpleFilter</filter-name>
|
|
|
- <filter-class>org.apache.hadoop.security.auth.server.AuthenticationFilter</filter-class>
|
|
|
+ <filter-class>org.apache.hadoop.security.authentication.server.AuthenticationFilter</filter-class>
|
|
|
<init-param>
|
|
|
<param-name>type</param-name>
|
|
|
<param-value>simple</param-value>
|
|
@@ -160,6 +163,7 @@ To use Pseudo/Simple as the authentication mechanism (trusting the value of the
|
|
|
|
|
|
...
|
|
|
</web-app>
|
|
|
+```
|
|
|
|
|
|
### AltKerberos Configuration
|
|
|
|
|
@@ -175,12 +179,13 @@ The AltKerberos authentication mechanism is a partially implemented derivative o
|
|
|
|
|
|
**Example**:
|
|
|
|
|
|
+```xml
|
|
|
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee">
|
|
|
...
|
|
|
|
|
|
<filter>
|
|
|
<filter-name>kerberosFilter</filter-name>
|
|
|
- <filter-class>org.apache.hadoop.security.auth.server.AuthenticationFilter</filter-class>
|
|
|
+ <filter-class>org.apache.hadoop.security.authentication.server.AuthenticationFilter</filter-class>
|
|
|
<init-param>
|
|
|
<param-name>type</param-name>
|
|
|
<param-value>org.my.subclass.of.AltKerberosAuthenticationHandler</param-value>
|
|
@@ -218,6 +223,7 @@ The AltKerberos authentication mechanism is a partially implemented derivative o
|
|
|
|
|
|
...
|
|
|
</web-app>
|
|
|
+```
|
|
|
|
|
|
### SignerSecretProvider Configuration
|
|
|
|
|
@@ -262,6 +268,7 @@ The following configuration properties are specific to the `zookeeper` implement
|
|
|
|
|
|
**Example**:
|
|
|
|
|
|
+```xml
|
|
|
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee">
|
|
|
...
|
|
|
|
|
@@ -279,9 +286,11 @@ The following configuration properties are specific to the `zookeeper` implement
|
|
|
|
|
|
...
|
|
|
</web-app>
|
|
|
+```
|
|
|
|
|
|
**Example**:
|
|
|
|
|
|
+```xml
|
|
|
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee">
|
|
|
...
|
|
|
|
|
@@ -299,9 +308,11 @@ The following configuration properties are specific to the `zookeeper` implement
|
|
|
|
|
|
...
|
|
|
</web-app>
|
|
|
+```
|
|
|
|
|
|
**Example**:
|
|
|
|
|
|
+```xml
|
|
|
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee">
|
|
|
...
|
|
|
|
|
@@ -339,3 +350,4 @@ The following configuration properties are specific to the `zookeeper` implement
|
|
|
|
|
|
...
|
|
|
</web-app>
|
|
|
+```
|