LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Server
User Name
Password
Linux - Server This forum is for the discussion of Linux Software used in a server related context.

Notices


Reply
  Search this Thread
Old 11-12-2007, 07:34 AM   #1
Davinder Singh
LQ Newbie
 
Registered: Sep 2006
Posts: 11

Rep: Reputation: 0
want to install samba-LDAP-BDC


I have already a linux PDC with LDAP-samba. now i want to install BDC which will work if my PDC goes down.
pls help me out where i have to make changes in conf files & how userdatabase sync with PDC to BDC.

Thanks
 
Old 11-12-2007, 07:57 AM   #2
Simon Bridge
LQ Guru
 
Registered: Oct 2003
Location: Waiheke NZ
Distribution: Ubuntu
Posts: 9,211

Rep: Reputation: 198Reputation: 198
Trying to find out what BCD stands for: Binary Coded Decimal is probably not it.
http://www.answers.com/topic/bcd?cat=technology
Bootable CD, Boot Configuration Data...

Since PDC = Primary Domain Controller
http://acronyms.thefreedictionary.com/PDC

I'm guessing you want to have a backup domain controller.
[edit: ah... I see you edited the post ]

Last edited by Simon Bridge; 11-13-2007 at 01:02 AM.
 
Old 11-13-2007, 12:46 AM   #3
Davinder Singh
LQ Newbie
 
Registered: Sep 2006
Posts: 11

Original Poster
Rep: Reputation: 0
Its a backup domain controller,

Quote:
Originally Posted by Simon Bridge View Post
Trying to find out what BCD stands for: Binary Coded Decimal is probably not it.
http://www.answers.com/topic/bcd?cat=technology
Bootable CD, Boot Configuration Data...

Since PDC = Primary Domain Controller
http://acronyms.thefreedictionary.com/PDC
... I'm guessing this is a windows-ism.

I'm guessing you want to have a backup domain controller.
 
Old 11-13-2007, 01:00 AM   #4
Simon Bridge
LQ Guru
 
Registered: Oct 2003
Location: Waiheke NZ
Distribution: Ubuntu
Posts: 9,211

Rep: Reputation: 198Reputation: 198
Quote:
Its a backup domain controller
surely that's "BDC".
http://acronyms.thefreedictionary.com/BDC
... writing in TLAs can be cool and confusing at the same time

See the SAMBA howto.
http://skippy.net/linux/2000/smb-howto.html
 
Old 09-05-2008, 04:20 AM   #5
kashifazizawan
Member
 
Registered: Aug 2008
Location: Dubai, UAE
Distribution: CentOS
Posts: 40
Blog Entries: 13

Rep: Reputation: 15
Backup Domain Controller (BDC) for the Primary Domain Controller (PDC)


Once again you install a minimal CentOS 4.x system, full update it with.

CODE

yum update
yum install mc samba-common samba openldap-clients perl-XML-NamespaceSupport perl-XML-SAX glibc-kernheaders glibc-headers glibc-devel cpp perl-HTML-Tagset perl-HTML-Parser perl-Convert-ASN1 perl-URI perl-libwww-perl perl-Digest-SHA1 openldap-servers perl-LDAP gcc



http://www.majen.net/smbldap/ go to this webpage to download THE EXACT SAME version of smbldap-tools you used to install the PDC, THE EXACT SAME NUMBERS!!!. And user the SAME domain names and passwords.

CODE

cd /home
wget http://www.majen.net/smbldap/archive...ller-1.2.1.tgz
tar -xvzf smbldap-installer-1.2.1.tgz
cd smbldap-installer
./smb-ldap.pl



You already know which tools to use as described just above in the PDC setup guide. Will skip a few steps so that I can stop repeating myself and go into the real thing.

The first thing you must do is change on this BDC the following in
/etc/samba/smb.conf
CODE

domain master = no
wins support = no
wins server = ip_address_of_pdc_server


Don't forget to change the Share Definitions in your smb.conf file on the BDC as well to suit your needs.

Now you do the following on the BDC server , make sure samba is started up (/etc/init.d/smb start)
CODE

net rpc getsid
net join


you will be asked for the same password you use to join your windows clients to the samba domain.

the using Midnight Commander's or just mc ssh link or some other means whatever you like (easy is mc , then you select left and chose ssh and type in ip of server pdc, it looks like norton commander), copy from the pdc server /var/lib/ldap directory to bdc server /var/lib/ldap.

Berore the copy takes place make sure you stop the ldap server (/etc/init.d/ldap stop) on the bdc.

After the copy finished make sure that all files under /var/lib/ldap are owned by user ldap group ldap
CODE

cd /var/lib/ldap
chown ldap.ldap *


now you'll configure the slave ldap server on the bdc server like this
/etc/openldap/ldap.conf
CODE

HOST 192.168.1.109


you can use whatever ip you like, I'm only writing down the modifications you have to make, leave the rest alone.

/etc/openldap/slapd.conf

CODE

updatedn cn=Manager,dc=yourdomainname,dc=com
updateref ldap://192.168.1.104


instead of yourdomainname you type your real domain name you used for the pdc, and instead of that ip you type the ip of the pdc.

now you can start this ldap server on the bdc server

/etc/init.d/ldap start

On the PDC server you do the following modifications to your ldap config

/etc/openldap/ldap.conf

CODE

HOST 192.168.1.104


/etc/openldap/slapd.conf

CODE

replica host=192.168.1.109
suffix="dc=yourdomainnamehere,dc=com"
binddn="cn=Manager,dc=yourdomainnamehere,dc=com"
bindmethod=simple credentials=yourpassword

replogfile /var/lib/ldap/replogfile



now restart ldap here as well

CODE

/etc/init.d/ldap restart


now you can try adding a user to you pdc server, via usrmgr.exe from windows or directly with smbldap-tools, then look into /var/lib/ldap/replica directory and you can see what happened in those log files, if you go to bdc server, and type the following.

CODE

id username


it must returnt the exact same id as the pdc server does.

Amongs other things you should also copy over the /var/lib/samba directory from the samba pdc to the samba bdc , so if the pdc is dead for some reason clients loging into the network will run their startup script.

You can have as many bdc servers as you want , in fact you can even have them in different subnets, just make sure that you specify the following in the PDC config (ONLY WITH DIFFERENT SUBNETS)

/etc/samba/smb.conf

CODE

remote announce = 192.168.11.255/YOURDOMAIN 192.168.1.255/YOURDOMAIN
remote browse sync = 192.168.1.255 192.168.11.255


for the first parameter the foreign subnets are first, and your local subnet is last, for second parameter
your local subnet is first foreign subnet is last.

Sincerely
Kashif Aziz Awan
 
  


Reply

Tags
backup, controller, domain



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Samba BDC kool_kid Red Hat 0 10-12-2007 07:08 AM
samba BDC and trust relationship mozilla Linux - Networking 0 08-01-2007 04:29 AM
how to have local ldap backends for pdc and bdc and syncronice procfs Linux - Security 0 07-17-2006 06:33 AM
samba PDC <-> BDC saavik Linux - Networking 3 08-18-2004 10:30 AM
Linux PDC using Samba with NT 4 servedr BDC ??? TechnoBod Linux - Networking 3 02-11-2003 09:08 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Server

All times are GMT -5. The time now is 11:05 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration