Here's a checklist to follow:
1 - Ensure that the AD domain is correctly configured (DNS,DHCP, etc)
2 - Add the AD domain controller as the first DNS server on the linux box (and check using /etc/resolv.conf)
3 - Ensure the kerberos and samba packages are installed on the linux box
4 - Set the hostname on your linux box in /etc/sysconfig/network
5- Ensure you have the correct hostname (using your FQDN) in/etc/hosts. Mine looks like:
Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 RCFedora rcfedora.rc.local localhost
::1 localhost6.localdomain6 localhost6
6 - Ensure your linux box is set to use the Windows Domain controller as an NTP server and that your time zone is correct (this caught me out - the time zone was incorrectly set and it wouldn't allow me to join the domain!)
7 - Edit /etc/krb.conf to include the following on the FIRST 2 LINES!!
RC.LOCAL rcsrv01.rc.local:88
RC.LOCAL rcsrv01.rc.local:749 admin server
8 - Next I added the file /etc/krb.realms, and added the following line
.rc.local RC.LOCAL
9 - In /etc/krb5.conf, check that the following options are there and correct:
[libdefaults]
default_realm = RC .LOCAL
dns_lookup_realm = true
dns_lookup_kdc = true
[realms]
RC .LOCAL = {
kdc = rcsrv01.rc .local:88
admin_server = rcsrv01.rc .local:749
kpasswd_server = rcsrv01.rc .local:464
kpasswd_protocol = SET_CHANGE
}
[domain_realm]
*.addomain.local = RC .LOCAL
.addomain.local = RC .LOCAL
10 - Next check /etc/nsswitch.conf for the following entries:passwd: compat winbind
group: compat winbind
hosts: files dns winbind
11 - Check /etc/pam.d/system-auth for the following in the session sectionsession required pam_mkhomedir.so skel=/etc/skel umask=0022
12 - Under the global settings in the /etc/samba/smb.conf you should have the following
unix charset = LOCALE
workgroup = RC
netbios name = RCFEDORA
password server = RCSRV01
realm = RC.LOCAL
server string = Fedora8
security = ads
allow trusted domains = No
idmap backend = idmap_rid:RC=16777216-33554431
idmap uid = 16777216-33554431
idmap gid = 16777216-33554431
log level = 1
syslog = 0
log file =var/log/samba/%m
max log size = 50
template shell = /bin/bash
template homedir = /home/%U
winbind use default domain = yes
winbind offline logon = true
winbind enum users = Yes
winbind enum groups = Yes
winbind nested groups = Yes
printcap name = CUPS printing = cups
and under HOMES you should have
comment = Home Directories
browseable = no
writable = yes
; valid users = %D\%U
; valid users = MYDOMAIN\%S
13 - Finally stop the Winbind and Samba services, and run the following commands:
rm -f /etc/samba/*tdb
rm -f /var/cache/samba/*tdb
rm -f /var/cache/samba/*dat
net ads join -U Administrator
then start the winbind and samba services again and reboot!
You should then be able to log on with domain credentials!

No comments:
Post a Comment