-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathjaas.conf
47 lines (43 loc) · 1.05 KB
/
jaas.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
KerberosWithPrompt {
com.sun.security.auth.module.Krb5LoginModule required
debug=true
useKeyTab=false
useTicketCache=true;
};
KerberosAcceptorWithKeytab {
com.sun.security.auth.module.Krb5LoginModule required
debug=true
doNotPrompt=true
useKeyTab=true
principal="gsstest/localhost@TEST.REALM"
keyTab="service.keytab"
isInitiator=false
storeKey=true;
};
com.sun.security.jgss.initiate {
com.sun.security.auth.module.Krb5LoginModule required
useTicketCache=true;
};
/*
*/
com.sun.security.jgss.accept {
com.sun.security.auth.module.Krb5LoginModule required
/*
debug=true
*/
principal="gsstest/localhost@TEST.REALM"
doNotPrompt=true
useKeyTab=true
keyTab="service.keytab"
isInitiator=false
storeKey=true;
};
HazelcastMember {
com.sun.security.auth.module.Krb5LoginModule required
principal="hazelcast/localhost@TEST.REALM"
doNotPrompt=true
useKeyTab=true
keyTab="service.keytab"
isInitiator=false
storeKey=true;
};