Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

verify_krb5_conf(8) [osx man page]

VERIFY_KRB5_CONF(8)					    BSD System Manager's Manual 				       VERIFY_KRB5_CONF(8)

NAME
verify_krb5_conf -- checks krb5.conf for obvious errors SYNOPSIS
verify_krb5_conf [config-file] DESCRIPTION
verify_krb5_conf reads the configuration file krb5.conf, or the file given on the command line, parses it, checking verifying that the syntax is not correctly wrong. If the file is syntactically correct, verify_krb5_conf tries to verify that the contents of the file is of relevant nature. ENVIRONMENT
KRB5_CONFIG points to the configuration file to read. FILES
/etc/krb5.conf Kerberos 5 configuration file DIAGNOSTICS
Possible output from verify_krb5_conf include: <path>: failed to parse <something> as size/time/number/boolean Usually means that <something> is misspelled, or that it contains weird characters. The parsing done by verify_krb5_conf is more strict than the one performed by libkrb5, so strings that work in real life might be reported as bad. <path>: host not found (<hostname>) Means that <path> is supposed to point to a host, but it can't be recognised as one. <path>: unknown or wrong type Means that <path> is either a string when it should be a list, vice versa, or just that verify_krb5_conf is confused. <path>: unknown entry Means that <string> is not known by verify_krb5_conf. SEE ALSO
krb5.conf(5) BUGS
Since each application can put almost anything in the config file, it's hard to come up with a watertight verification process. Most of the default settings are sanity checked, but this does not mean that every problem is discovered, or that everything that is reported as a possi- ble problem actually is one. This tool should thus be used with some care. It should warn about obsolete data, or bad practice, but currently doesn't. HEIMDAL
December 8, 2004 HEIMDAL

Check Out this Related Man Page

KRB5_APPDEFAULT(3)					   BSD Library Functions Manual 					KRB5_APPDEFAULT(3)

NAME
krb5_appdefault_boolean, krb5_appdefault_string, krb5_appdefault_time -- get application configuration value LIBRARY
Kerberos 5 Library (libkrb5, -lkrb5) SYNOPSIS
#include <krb5.h> void krb5_appdefault_boolean(krb5_context context, const char *appname, krb5_realm realm, const char *option, krb5_boolean def_val, krb5_boolean *ret_val); void krb5_appdefault_string(krb5_context context, const char *appname, krb5_realm realm, const char *option, const char *def_val, char **ret_val); void krb5_appdefault_time(krb5_context context, const char *appname, krb5_realm realm, const char *option, time_t def_val, time_t *ret_val); DESCRIPTION
These functions get application defaults from the appdefaults section of the krb5.conf(5) configuration file. These defaults can be specified per application, and/or per realm. These values will be looked for in krb5.conf(5), in order of descending importance. [appdefaults] appname = { realm = { option = value } } appname = { option = value } realm = { option = value } option = value appname is the name of the application, and realm is the realm name. If the realm is omitted it will not be used for resolving values. def_val is the value to return if no value is found in krb5.conf(5). SEE ALSO
krb5_config(3), krb5.conf(5) HEIMDAL
July 25, 2000 HEIMDAL
Man Page

3 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

cronjob process not work

Hi all, I having a very unknown problem. I set my process to cronjob but it does not work at all!!!!!!No error detected, just nothing.... Cron: 15 * * * * /process/directory/path/$processname.sh Script($processname.sh): nohup $process & Please help. I have no idea at all.... (3 Replies)
Discussion started by: clemeot
3 Replies

2. Shell Programming and Scripting

problem parsing output file

Hi Gurus, I am using the following code to parse the output of a file. This code basically parses the file and adds | at the end of each field. But I am getting it wrong in some cases. I have explained it below #----- parse output file, get each field position, ----- #----- and construct... (13 Replies)
Discussion started by: ragha81
13 Replies

3. Shell Programming and Scripting

Need to change of file

I need to change the filed named from 3479238.conf.bad 3274293.conf.bad 2389749.conf.bad 3242397.conf.bad Need to move as 3479238.conf 3274293.conf 2389749.conf 3242397.conf Via shell script or any find command. (7 Replies)
Discussion started by: gsiva
7 Replies