You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sections/errors.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,16 +57,20 @@ This may appear in a stack trace starting with something like:
57
57
58
58
javax.security.sasl.SaslException: GSS initiate failed [Caused by GSSException: No valid credentials provided (Mechanism level: Failed to find any Kerberos tgt)]
59
59
60
+
61
+
It's very common, and essentially means "you weren't authenticated"
62
+
60
63
Possible causes:
61
64
62
65
1. You aren't logged in via `kinit`.
63
66
1. You have logged in with `kinit`, but the tickets you were issued with have expired.
67
+
1. Your process was issued with a ticket, which has now expired.
64
68
1. You did specify a keytab but it isn't there or is somehow otherwise invalid
65
69
1. You don't have the Java Cryptography Extensions installed.
66
70
67
71
## Clock skew too great
68
72
69
-
GSSException: No valid credentials provided (Mechanism level: Attempt to obtain new INITIATE credentials failed! (null)) . . . Caused by: javax.security.auth.login.LoginException: Clock skew too great
73
+
GSSException: No valid credentials provided (Mechanism level: Attempt to obtain new INITIATE credentials failed! (null)) . . . Caused by: javax.security.auth.login.LoginException: Clock skew too great
70
74
71
75
GSSException: No valid credentials provided (Mechanism level: Clock skew too great (37) - PROCESS_TGS
72
76
@@ -104,7 +108,7 @@ See the comments above about DNS for some more possibilities.
104
108
## During SPNEGO Auth: Defective token detected
105
109
106
110
GSSException: Defective token detected (Mechanism level: GSSHeader did not find the right tag)
107
-
111
+
108
112
The token supplied by the client is not accepted by the server.
109
113
110
114
This apparently surfaces in [Java 8 after 8u40](http://sourceforge.net/p/spnego/discussion/1003769/thread/700b6941/#cb84);
0 commit comments