Unix and Linux Discussions Tagged with sudo |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
8,757 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
33,201 |
AIX |
|
|
|
3 |
6,764 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,299 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,080 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
16,502 |
Linux |
|
|
|
1 |
20,379 |
Solaris |
|
|
|
1 |
2,921 |
Shell Programming and Scripting |
|
|
|
8 |
5,465 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
4,790 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,483 |
UNIX for Beginners Questions & Answers |
|
|
|
29 |
8,966 |
Shell Programming and Scripting |
|
|
|
9 |
7,335 |
Shell Programming and Scripting |
|
|
|
16 |
5,802 |
Shell Programming and Scripting |
|
|
|
7 |
5,140 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,909 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
4,223 |
Shell Programming and Scripting |
|
|
|
9 |
3,951 |
Shell Programming and Scripting |
|
|
|
3 |
10,150 |
Cybersecurity |
|
|
|
6 |
6,616 |
Shell Programming and Scripting |
|
|
|
1 |
3,187 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
2,368 |
Shell Programming and Scripting |
|
|
|
3 |
5,326 |
Shell Programming and Scripting |
|
|
|
5 |
3,575 |
Solaris |
|
|
|
5 |
2,660 |
Shell Programming and Scripting |
|
|
|
5 |
23,474 |
Red Hat |
|
|
|
5 |
7,914 |
HP-UX |
|
|
|
2 |
4,515 |
HP-UX |
|
|
|
4 |
6,165 |
Shell Programming and Scripting |
|
|
|
25 |
12,705 |
AIX |
|
|
|
7 |
6,042 |
Linux |
|
|
|
8 |
10,108 |
Cybersecurity |
|
|
|
2 |
12,717 |
Emergency UNIX and Linux Support |
|
|
|
4 |
4,828 |
Red Hat |
|
|
|
1 |
4,783 |
Shell Programming and Scripting |
|
|
|
4 |
2,664 |
Shell Programming and Scripting |
|
|
|
4 |
6,461 |
Solaris |
|
|
|
2 |
2,200 |
Solaris |
|
|
|
2 |
2,888 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,978 |
Shell Programming and Scripting |
heimdal_debug(5) BSD File Formats Manual heimdal_debug(5)
NAME
heimdal_debug -- how to turn on/off debugging for Kerberos tools
DESCRIPTION
The heimdal_debug kerberos frameworks have several knobs for controlling logging. The different framework knobs are:
libkrb
The Kerberos library, some gss-api Kerberos output ends up here too
kcm the kcm library (credentials cache, ntlm client)
kdc the kerberos KDC output
digest-service
the digest service (ntlm server)
CONFIGURATION FILE
[logging]
<subsystem> = 0-/SYSLOG:
and watch syslog for logging information.
APPLE MAC OS X
First turn up syslog debugging
sudo syslog -c 0 -d
then you can see the syslog output in Console.app or by running
syslog -w -k org.h5l.asl
To enable more extensive debugging logging for each subsystem, use the following commands:
Kerberos Library
sudo defaults write /Library/Preferences/com.apple.Kerberos logging -dict-add krb5 '0-/ASL:'
digest-server
sudo defaults write /Library/Preferences/com.apple.Kerberos logging -dict-add digest-service '0-/ASL:'
kcm sudo defaults write /Library/Preferences/com.apple.Kerberos logging -dict-add kcm '0-/ASL:'
kdc sudo defaults write /Library/Preferences/com.apple.Kerberos logging -dict-add kdc '0-/ASL:'
MIT Kerberos Shim
defaults write com.apple.MITKerberosShim EnableDebugging -bool true
GSS-API framework logging
sudo defaults write /Library/Preferences/com.apple.GSS DebugLevel -int 10
Other options on Mac OS X
Make the admin API pretend to the server even on client
sudo defaults write /Library/Preferences/com.apple.Kerberos ForceHeimODServerMode -bool true
SEE ALSO
gss(5), kerberos(8)
HEIMDAL
Sep 30, 2011 HEIMDAL