macOS (Mac OS X or OS X) is the current series of Unix-based graphical operating systems developed and marketed by Apple Inc. designed to run on Apple's Macintosh computers ("Macs"). Within the market of desktop, laptop and home computers, and by web usage, it is the second most widely used desktop OS after Microsoft Windows. Recently, while working on one of my projects, there was a requiremnt to integrate our system with LDAP i.e. Lightweight Directory Access Protocol (LDAP). So, I wanted to try out some samples by installing OpenLDAP on my MAC. Initially, it looked streightforward but later I realized that there are multiple steps involved to get OpenLDAP up and running in my Mac. So, I thought of documenting various steps so that others can refer them.
What do you need to begin?
- MAC
- Obviously you need MAC because these steps will work only for MAC (Sorry Windows users)
- Homebrew
- This is a package manager for macOS. Click here and follow the instruction to install this on your MAC.
- OpenLDAP
- Click here and download the .tgz file. At the time of this blog, the latest available version was 2.4.45
- JXplorer
- This is an open source LDAP browser. Click here and download osx.zip file. At the time of this blog, the latest available version was 3.3.1.2
Setup
Lets begin the step now. I am assuming that you already have Homebrew installed. Now, we need to install Berkeley Database which is needed for OpenLDAP. Open "Terminal" and execute following command to install Berkeley DB.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install berkeley-db4 | |
Output after executing the command:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you need to have this software first in your PATH run: | |
echo 'export PATH="/usr/local/opt/berkeley-db@4/bin:$PATH"' >> ~/.bash_profile | |
For compilers to find this software you may need to set: | |
LDFLAGS: -L/usr/local/opt/berkeley-db@4/lib | |
CPPFLAGS: -I/usr/local/opt/berkeley-db@4/include | |
Now, its time to configure OpenLDAP. Extract the contents of OpenLDAP .tgz file. Open "Terminal" and go to the openldap-<version> folder and execute following command.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./configure CPPFLAGS="-I/usr/local/opt/berkeley-db@4/include" LDFLAGS="-L/usr/local/opt/berkeley-db@4/lib" | |
If everything is successful, last line of above command should be: Please "make depend" to build dependencies.Next step? Yes, we will execute this command.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make depend | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make test | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make install | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Step 1. Go to following folder. | |
cd /usr/local/etc/openldap | |
Step 2. Open slapd.conf file. | |
vi slapd.conf | |
Step 3. You will see this line: | |
include /usr/local/etc/openldap/schema/core.schema | |
Step 4. Add following lines: | |
include /usr/local/etc/openldap/schema/cosine.schema | |
include /usr/local/etc/openldap/schema/nis.schema | |
include /usr/local/etc/openldap/schema/inetorgperson.schema | |
Step 5. Update suffix to desired value: | |
suffix "dc=my-domain,dc=com" | |
Step 6. Update rootdn, it should match with above suffix value: | |
rootdn "cn=Manager,dc=my-domain,dc=com" | |
Step 7. Update rootpw: | |
rootpw secret | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To generate password hash: | |
./slappasswd -s <NewPassword> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo /usr/local/libexec/slapd -d3 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dn:dc=my-domain,dc=com | |
objectClass:dcObject | |
objectClass:organizationalUnit | |
dc:my-domain | |
ou:my-domain | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ldapadd -D "cn=Manager,dc=my-domain,dc=com" -W -x -f /<Location>/root-ou.ldif | |
P.S. Click here to access my other posts.
thank you for sharing this article very interesting. please i had a problem after executing command to add root organization unit. it asks me to enter ldap password so in this case wich password should be enter .and thank you so much
ReplyDeletenice post.
ReplyDeletemulesoft online training
linux online training
successfully installed this thing.
ReplyDeleteOne moment - directory /usr/local/var/openldap-data - didn't appear - so, I had to create it manually.
Nice and good article. It is very useful for me to learn and understand easily. Thanks for sharing
ReplyDeleteMule 4 Training
Best Mulesoft Online Training