All, After two days of googling, reading, swearing and cursing, I am finally admitting I cannot solve this one. I have three production FreeBSD servers running various network utilities (DHCP, bacula, zabix, syslog, rsync). These have been running fine for several years. As a primary Windows domain (accounting firm. Not much choice), I like to centralize all logins into AD which is currently mixed 2003/2008 DCs. To achieve this with FreeBSD, I have been using the following instructions since FreeBSD 6.1 and Samba 3.0 with the exception that I built all the ports through the ports collection: http://oslabs.mikro-net.com/fbsd_samba.html It has always worked for several years through FreeBSD 7.1 and Samba 3.2 with the current AD structure but recently I decided to upgrade the Samba port and now I am having issues. To troubleshoot, I have setup a clean install of FreeBSD 8.1 with the follow ports built with the following options and setup: openntpd heimdal 1.4 IPV6=on KCM=on BDB=off SQLITE=off LDAP=off PKINIT=on DIGEST=on KX509=on KRB4=off CRACKLIB=off X11=off cyprus-sasl2 BDB=on MYSQL=off PGSQL=off SQLITE=off DEV_URANDOM=off ALWAYSTRUE=off KEEP_DB_OPEN=off AUTHDAEMOND=off LOGIN=off PLAIN=off CRAM=off DIGEST=off OTP=off NTLM=off openldap24-sasl-client SASL=on FETCH=on samba 3.5 LDAP=on ADS=on CUPS=off WINBIND=on SWAT=off ACL_SUPPORT=on AIO_SUPPORT=on FAM_SUPPORT=on SYSLOG=on QUOTAS=on UTMP=on PAM_SMBPASS=on DNSUPDATE=off AVAHI=off EXP_MODULES=on POPT=on IPV6=off MAX_DEBUG=off SMBTORTURE=off After setting up as I have before, I can get ldapsearch, wbinfo -u and getent passwd username to display the correct info. It appears that winbind is communicating with AD. But the login command fails with a signal 11 (core dump) and no other info. I have included configs and an abridged log below as well. Some information in the configs and logs have been edited for security but I am sure they are set correctly in the real files. I would appreciate any help. If there is easier, newer and/or better way to authenticate users to AD on FreeBSD, please let me know. I don't use Samba for file shares, just for authentication. /etc/krb5.conf [logging] default = SYSLOG:AUTH:INFO kdc = SYSLOG:AUTH:INFO admin_server = SYSLOG:AUTH:INFO [libdefaults] default_domain = EXAMPLE.COM [realms] EXAMPLE.COM = { kdc = gnv-dc3-tmp.example.com default_domain = example.com admin_server = gnv-dc3-tmp.example.com } [domain_realm] .example.com = EXAMPLE.COM example.com = EXAMPLE.COM .EXAMPLE.COM = EXAMPLE.COM [appdefaults] pam = { debug = false ticket_lifetime = 36000 renew_lifetime = 36000 forwardable = true krb4_convert = false } /usr/local/etc/openldap/ldap.conf host gnv-dc3-tmp.example.com base dc=example,dc=com ldap_version 3 URI ldap://gnv-dc3-tmp.example.com binddn cn=username,cn=GNV,cn=AllUsers,dc=example,dc=com bindpw p at 55w0rd scope sub pam_login_attribute sAMAccountName pam_passwd md5 idle_timeout 3600 nss_base_passwd dc=example,dc=com?one nss_base_group dc=example,dc=com?one sasl_secprops maxssf=0 krb5_ccname FILE:/tmp/krb5cc_0 /etc/pam.d/login auth sufficient pam_winbind.so auth sufficient pam_self.so no_warn auth include system # account account sufficient pam_winbind.so account requisite pam_securetty.so account required pam_nologin.so account include system # session session include system # password password include system /etc/nsswitch.conf group: files winbind group_compat: nis hosts: files dns networks: files passwd: files winbind passwd_compat: nis shells: files services: compat services_compat: nis protocols: files rpc: files /usr/local/etc/smb.conf [global] realm = EXAMPLE.COM security = ADS encrypt passwords = yes socket options = TCP_NODELAY IPTOS_LOWDELAY SO_KEEPALIVE SO_SNDBUF=8192 SO_RCVBUF=8192 workgroup = EXAMPLE server string allow trusted domains = no idmap backend = idmap_rid:EXAMPLE=100000-200000 idmap uid = 100001-200000 idmap gid = 100001-200000 netbios name = GNV-NS2-TMP winbind use default domain = yes syslog = 3 syslog only = yes template shell = /bin/tcsh restrict anonymous = 2 client ntlmv2 auth = yes /var/log/all.log Feb 3 16:09:38 gnv-ns2-tmp ntpd[29094]: ntp engine ready Feb 3 16:09:40 gnv-ns2-tmp ntpd[29093]: set local clock to Thu Feb 3 16:09:40 EST 2011 (offset 1.713505s) Feb 3 16:10:03 gnv-ns2-tmp ntpd[29094]: peer 192.168.4.19 now valid Feb 3 16:12:27 gnv-ns2-tmp ntpd[29094]: clock is now synced Feb 3 16:13:31 gnv-ns2-tmp ntpd[29096]: adjusting local clock by 0.032613s Feb 3 17:07:37 gnv-ns2-tmp smbd[25927]: [2011/02/03 17:07:37.413455, 1] smbd/files.c:193(file_init) Feb 3 17:07:37 gnv-ns2-tmp smbd[25927]: file_init: Information only: requested 16384 open files, 11075 are available. Feb 3 17:07:37 gnv-ns2-tmp winbindd[25932]: [2011/02/03 17:07:37.458752, 0] winbindd/winbindd_cache.c:3076(initialize_winbindd_cache) Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25932]: [2011/02/03 17:07:37.458752, 0] winbindd/winbindd_cache.c:3076(initialize_winbindd_cache) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25932]: initialize_winbindd_cache: clearing cache and re-creating with version number 1 Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25932]: initialize_winbindd_cache: clearing cache and re-creating with version number 1 Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.559938, 1] winbindd/idmap.c:438(idmap_init_passdb_domain) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Could not init passdb idmap domain Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.560226, 1] winbindd/idmap.c:244(parse_idmap_module) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: idmap_init: idmap backend uses deprecated 'idmap_' prefix. Please replace 'idmap_rid:EXAMPLE=10000-20000' by 'rid:EXAMPLE=10000-20000' Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.567300, 0] winbindd/idmap.c:201(smb_register_idmap_alloc) Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.567300, 0] winbindd/idmap.c:201(smb_register_idmap_alloc) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: idmap_alloc module ldap already registered! Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: idmap_alloc module ldap already registered! Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.567417, 0] winbindd/idmap.c:201(smb_register_idmap_alloc) Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.567417, 0] winbindd/idmap.c:201(smb_register_idmap_alloc) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: idmap_alloc module tdb already registered! Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: idmap_alloc module tdb already registered! Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.567495, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.567495, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Idmap module passdb already registered! Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Idmap module passdb already registered! Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.567564, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.567564, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Idmap module nss already registered! Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Idmap module nss already registered! Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.567711, 1] winbindd/idmap.c:244(parse_idmap_module) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: idmap_init: idmap backend uses deprecated 'idmap_' prefix. Please replace 'idmap_rid:EXAMPLE=10000-20000' by 'rid:EXAMPLE=10000-20000' Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.567852, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.567852, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Idmap module rid already registered! Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Idmap module rid already registered! Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.567928, 0] lib/module.c:69(do_smb_load_module) Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.567928, 0] lib/module.c:69(do_smb_load_module) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Module '/usr/local/lib/samba/idmap/rid.so' initialization failed: NT_STATUS_OBJECT_NAME_COLLISION Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Module '/usr/local/lib/samba/idmap/rid.so' initialization failed: NT_STATUS_OBJECT_NAME_COLLISION Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.568051, 1] winbindd/idmap.c:580(idmap_alloc_init) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: could not find idmap alloc module idmap_rid:EXAMPLE=10000-20000 Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.571473, 0] winbindd/idmap.c:201(smb_register_idmap_alloc) Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.571473, 0] winbindd/idmap.c:201(smb_register_idmap_alloc) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: idmap_alloc module ldap already registered! Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: idmap_alloc module ldap already registered! Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.571564, 0] winbindd/idmap.c:201(smb_register_idmap_alloc) Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.571564, 0] winbindd/idmap.c:201(smb_register_idmap_alloc) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: idmap_alloc module tdb already registered! Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: idmap_alloc module tdb already registered! Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.571612, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.571612, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Idmap module passdb already registered! Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Idmap module passdb already registered! Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.571697, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.571697, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Idmap module nss already registered! Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Idmap module nss already registered! Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.571776, 1] winbindd/idmap.c:244(parse_idmap_module) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: idmap_init: idmap backend uses deprecated 'idmap_' prefix. Please replace 'idmap_rid:EXAMPLE=10000-20000' by 'rid:EXAMPLE=10000-20000' Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.571864, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.571864, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Idmap module rid already registered! Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Idmap module rid already registered! Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.571911, 0] lib/module.c:69(do_smb_load_module) Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.571911, 0] lib/module.c:69(do_smb_load_module) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Module '/usr/local/lib/samba/idmap/rid.so' initialization failed: NT_STATUS_OBJECT_NAME_COLLISION Feb 3 17:07:37 gnv-ns2-tmp kernel: Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: Module '/usr/local/lib/samba/idmap/rid.so' initialization failed: NT_STATUS_OBJECT_NAME_COLLISION Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: [2011/02/03 17:07:37.571965, 1] winbindd/idmap.c:580(idmap_alloc_init) Feb 3 17:07:37 gnv-ns2-tmp winbindd[25934]: could not find idmap alloc module idmap_rid:EXAMPLE=10000-20000 Feb 3 17:08:25 gnv-ns2-tmp winbindd[25932]: [2011/02/03 17:08:25.165476, 0] winbindd/winbindd.c:195(winbindd_sig_term_handler) Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25932]: [2011/02/03 17:08:25.165476, 0] winbindd/winbindd.c:195(winbindd_sig_term_handler) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25932]: Got sig[15] terminate (is_parent=1) Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25932]: Got sig[15] terminate (is_parent=1) Feb 3 17:08:25 gnv-ns2-tmp smbd[25988]: [2011/02/03 17:08:25.248114, 1] smbd/files.c:193(file_init) Feb 3 17:08:25 gnv-ns2-tmp smbd[25988]: file_init: Information only: requested 16384 open files, 11075 are available. Feb 3 17:08:25 gnv-ns2-tmp winbindd[25993]: [2011/02/03 17:08:25.282040, 0] winbindd/winbindd_cache.c:3076(initialize_winbindd_cache) Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25993]: [2011/02/03 17:08:25.282040, 0] winbindd/winbindd_cache.c:3076(initialize_winbindd_cache) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25993]: initialize_winbindd_cache: clearing cache and re-creating with version number 1 Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25993]: initialize_winbindd_cache: clearing cache and re-creating with version number 1 Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.398792, 1] winbindd/idmap.c:438(idmap_init_passdb_domain) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Could not init passdb idmap domain Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.399131, 1] winbindd/idmap.c:244(parse_idmap_module) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: idmap_init: idmap backend uses deprecated 'idmap_' prefix. Please replace 'idmap_rid:EXAMPLE=100000-200000' by 'rid:EXAMPLE=100000-200000' Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.406877, 0] winbindd/idmap.c:201(smb_register_idmap_alloc) Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.406877, 0] winbindd/idmap.c:201(smb_register_idmap_alloc) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: idmap_alloc module ldap already registered! Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: idmap_alloc module ldap already registered! Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.407014, 0] winbindd/idmap.c:201(smb_register_idmap_alloc) Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.407014, 0] winbindd/idmap.c:201(smb_register_idmap_alloc) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: idmap_alloc module tdb already registered! Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: idmap_alloc module tdb already registered! Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.407095, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.407095, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Idmap module passdb already registered! Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Idmap module passdb already registered! Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.407172, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.407172, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Idmap module nss already registered! Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Idmap module nss already registered! Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.407321, 1] winbindd/idmap.c:244(parse_idmap_module) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: idmap_init: idmap backend uses deprecated 'idmap_' prefix. Please replace 'idmap_rid:EXAMPLE=100000-200000' by 'rid:EXAMPLE=100000-200000' Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.407467, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.407467, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Idmap module rid already registered! Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Idmap module rid already registered! Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.407551, 0] lib/module.c:69(do_smb_load_module) Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.407551, 0] lib/module.c:69(do_smb_load_module) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Module '/usr/local/lib/samba/idmap/rid.so' initialization failed: NT_STATUS_OBJECT_NAME_COLLISION Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Module '/usr/local/lib/samba/idmap/rid.so' initialization failed: NT_STATUS_OBJECT_NAME_COLLISION Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.407672, 1] winbindd/idmap.c:580(idmap_alloc_init) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: could not find idmap alloc module idmap_rid:EXAMPLE=100000-200000 Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.410954, 0] winbindd/idmap.c:201(smb_register_idmap_alloc) Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.410954, 0] winbindd/idmap.c:201(smb_register_idmap_alloc) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: idmap_alloc module ldap already registered! Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: idmap_alloc module ldap already registered! Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.411104, 0] winbindd/idmap.c:201(smb_register_idmap_alloc) Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.411104, 0] winbindd/idmap.c:201(smb_register_idmap_alloc) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: idmap_alloc module tdb already registered! Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: idmap_alloc module tdb already registered! Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.411184, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.411184, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Idmap module passdb already registered! Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Idmap module passdb already registered! Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.411265, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.411265, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Idmap module nss already registered! Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Idmap module nss already registered! Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.411356, 1] winbindd/idmap.c:244(parse_idmap_module) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: idmap_init: idmap backend uses deprecated 'idmap_' prefix. Please replace 'idmap_rid:EXAMPLE=100000-200000' by 'rid:EXAMPLE=100000-200000' Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.411493, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.411493, 0] winbindd/idmap.c:149(smb_register_idmap) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Idmap module rid already registered! Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Idmap module rid already registered! Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.411573, 0] lib/module.c:69(do_smb_load_module) Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.411573, 0] lib/module.c:69(do_smb_load_module) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Module '/usr/local/lib/samba/idmap/rid.so' initialization failed: NT_STATUS_OBJECT_NAME_COLLISION Feb 3 17:08:25 gnv-ns2-tmp kernel: Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: Module '/usr/local/lib/samba/idmap/rid.so' initialization failed: NT_STATUS_OBJECT_NAME_COLLISION Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: [2011/02/03 17:08:25.411663, 1] winbindd/idmap.c:580(idmap_alloc_init) Feb 3 17:08:25 gnv-ns2-tmp winbindd[25995]: could not find idmap alloc module idmap_rid:EXAMPLE=100000-200000 Feb 3 17:09:04 gnv-ns2-tmp kernel: pid 1530 (login), uid 0: exited on signal 11 (core dumped) Feb 3 17:09:53 gnv-ns2-tmp kernel: pid 26004 (login), uid 0: exited on signal 11 (core dumped) Feb 3 17:11:13 gnv-ns2-tmp kernel: pid 26007 (login), uid 0: exited on signal 11 (core dumped) David M. Wassman, MCSE, CCENT, Security+ Carr, Riggs & Ingram, LLC 4010 NW 25th Place Gainesville, FL 32606 Voice: 352-372-6300 Fax: 352-375-1583 http://www.cricpa.com ************************************************************************************************** In compliance with IRS Circular 230: Any statements or tax advice that are contained in this email are not intended or written to be used, and cannot be used by any taxpayer, for the purpose of avoiding penalties that may be imposed on the taxpayer. The information contained in this message may be privileged and confidential and protected from disclosure. It is intended exclusively for the individual or entity to which it is addressed. This communication may contain information that is proprietary, privileged or confidential or otherwise legally exempt from disclosure. If the reader of this message is not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify us immediately by replying to the message and deleting it from your computer. Thank you. Carr, Riggs & Ingram LLC