I need to get our mail server which is running (Suse 9.1 and postfix) to connect to Active Directory.
I am having difficulties joining the domain.
I KNOW my password is correct.
Here is my smb.conf file:
And my krb5.conf file:
How can I get it to join the domain?
I am having difficulties joining the domain.
Code:
ao:/etc/samba # net ads join -U Administrator
Administrator's password:
[2007/09/18 16:29:16, 0] utils/net_ads.c:ads_startup(186)
ads_connect: Invalid credentials
I KNOW my password is correct.
Here is my smb.conf file:
Code:
ao:/etc/samba # cat smb.conf
# smb.conf is the main Samba configuration file. You find a full commented
# version at /usr/share/doc/packages/samba/examples/smb.conf.SUSE if the
# samba-doc package is installed.
workgroup = DOMAIN
security = domain
realm = FULL.DOMAIN.COM
username map = /etc/samba/smbusers
winbind uid = 10000-20000
winbind gid = 10000-20000
winbind use default domain = yes
winbind enum users = yes
winbind enum groups = yes
And my krb5.conf file:
Code:
ao:/etc/samba # cat /etc/krb5.conf
[libdefaults]
default_realm = FULL.DOMAIN.COM
clockskew = 300
[realms]
FULL.DOMAIN.COM = {
kdc = 192.100.100.13
admin_server = 192.100.100.13
kpasswd_server = 192.100.100.13
}
[domain_realm]
.full.domain.com = FULL.DOMAIN.COM
[logging]
default = SYSLOG:NOTICE:DAEMON
kdc = FILE:/var/log/kdc.log
kadmind = FILE:/var/log/kadmind.log
[appdefaults]
pam = {
ticket_lifetime = 1d
renew_lifetime = 1d
forwardable = true
proxiable = false
retain_after_close = false
minimum_uid = 0
debug = false
}
How can I get it to join the domain?