12

I am using this wiki to configure LDAP client on Ubuntu. Now I am looking for a GUI tool to configure LDAP client on Ubuntu. My colleagues often complains that configuring LDAP client on Ubuntu is little difficult.

Is there any simple GUI tool for this?

Pablo Bianchi
  • 17,371
aneeshep
  • 30,949

5 Answers5

12

There is the LDAP Administration Tool Install lat, available from the repositories.

alt text

There is also the GQ LDAP Client Install gq, but it's a bit older and (I'm going to be blunt) not as good. :)

Zanna
  • 72,312
2

phpLDAPadmin

(Also known as PLA) is a web-based LDAP client. It provides easy, anywhere-accessible, multi-language administration for your LDAP server.

Its hierarchical tree-viewer and advanced search functionality make it intuitive to browse and administer your LDAP directory. Since it is a web application, this LDAP browser works on many platforms, making your LDAP server easily manageable from any location.

phpLDAPadmin is the perfect LDAP browser for the LDAP professional and novice alike. Its user base consists mostly of LDAP administration professionals.

Its best Features:

  • LDAP tree browser
  • Copy LDAP entries (even copy between different servers)
  • Delete LDAP entries
  • LDAP searches (both simple and advanced)
  • LDIF import
  • Manage user password hashes (supports sha, crypt, md5, blowfish, md5crypt)

Installation:

  • Install apache

      sudo apt-get install apache2
    
  • Install phpldapadmin

      sudo apt-get install phpldapadmin
    

Enter your browser and type : localhost/phpldapadmin

Connect to ldap server database

ITs a Great ldap manger

screenshot

Pablo Bianchi
  • 17,371
nux
  • 39,152
1

For CLI ldapsearch from ldap-utils.

Pablo Bianchi
  • 17,371
0

Install the ldap-auth-config package on the Ubuntu client server.

It might have a few dependencies like

  • libldap
  • ibnss-ldap
  • libkrb53 (probably).

Once you install the package it is going to ask you for the LDAP login related details, for example, the URI and base domain. Provide them, and you should be well on your way towards getting the LDAP authentication right.

After you haveĀ LDAP packages installed, you can install ldap-utils and do a

ldapsearch -x

to verify that the client can bind to the LDAP master server.

slhck
  • 940
Somujit
  • 27
0

The LDAP Administration tool you provided is to administer the actual LDAP database. It would be nice if there was an LDAP client such as the one available in OpenSuse so that Ubuntu can be easily configured to authenticate against the LDAP database. At the moment it's a real pain.

And also this wiki link doesn't seem to be very up-to-date. For Ubuntu 10.04 I would recommend this blog.

Braiam
  • 69,112