You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2013/08/02 22:48:01 UTC

svn commit: r1509851 - /jmeter/trunk/bin/jaas.conf

Author: pmouawad
Date: Fri Aug  2 20:48:01 2013
New Revision: 1509851

URL: http://svn.apache.org/r1509851
Log:
Bug 53480 - Add Kerberos support to Http Sampler (HttpClient4)
Fix and document client configuration
Bugzilla Id: 53480

Modified:
    jmeter/trunk/bin/jaas.conf

Modified: jmeter/trunk/bin/jaas.conf
URL: http://svn.apache.org/viewvc/jmeter/trunk/bin/jaas.conf?rev=1509851&r1=1509850&r2=1509851&view=diff
==============================================================================
--- jmeter/trunk/bin/jaas.conf (original)
+++ jmeter/trunk/bin/jaas.conf Fri Aug  2 20:48:01 2013
@@ -14,20 +14,14 @@
 #   limitations under the License.
 
 #Sample file, you need to edit for your configuration
-com.sun.security.jgss.krb5.initiate {
-    com.sun.security.auth.module.Krb5LoginModule required
-    doNotPrompt=true
-    principal="HTTP/www.example.com@EXAMPLE.COM"
-    useKeyTab=true
-    keyTab="/home/felix/Developer/apache-tomcat-7.0.40/conf/www.example.com.keytab"
-    storeKey=true;
-};
+# see http://docs.oracle.com/javase/6/docs/technotes/guides/security/jgss/lab/part6.html#Kerberos_5_Configuration
+# see http://docs.oracle.com/javase/7/docs/technotes/guides/security/jgss/tutorials/KerberosReq.html
+# see http://docs.oracle.com/javase/7/docs/jre/api/security/jaas/spec/com/sun/security/auth/module/Krb5LoginModule.html
+
 
-com.sun.security.jgss.krb5.accept {
+JMeter {
     com.sun.security.auth.module.Krb5LoginModule required
-    doNotPrompt=true
-    principal="HTTP/www.example.com@EXAMPLE.COM"
-    useKeyTab=true
-    keyTab="/home/felix/Developer/apache-tomcat-7.0.40/conf/www.example.com.keytab"
-    storeKey=true;
-};
+    doNotPrompt=false
+    useKeyTab=false
+    storeKey=false;
+};
\ No newline at end of file