Pat Lalonde <[email protected]> writes: > We get this error frequently, where can I find help on it? > [2010/04/26 09:37:18, 1] libads/kerberos_verify.c:(302) > ads_verify_ticket: krb5_init_context failed (Too many open files)
This isn't really a Kerberos error; rather, it indicates that you've run out of underlying operating system resources for your process. krb5_init_context has to open various files (most notably krb5.conf) and you're out of available file descriptors in that process. You may be able to increase the limit with ulimit. -- Russ Allbery ([email protected]) <http://www.eyrie.org/~eagle/> ________________________________________________ Kerberos mailing list [email protected] https://mailman.mit.edu/mailman/listinfo/kerberos
