According OpenLDAP is installed and configured.
aptitude install phpldapadminInclude /etc/phpldapadmin/apache.conf in your virtualhost. www.your-server.net/phpldapadmin.www.your-server.net/ldap, edit /etc/phpldapadmin/apache.conf and change Alias /phpldapadmin .
In /etc/phpldapadmin/config.php you may change :
$ldapservers→SetValue($i,'server','host','localhost'); to set your LDAP server address, if not local.// $ldapservers→SetValue($i,'server','port','389'); and set port number if not running on standard port.$ldapservers→SetValue($i,'server','base',array(' '));, to set your base DN : $ldapservers→SetValue($i,'server','base',array('dc=tchetch,dc=net'));. array('dc=tchetch,dc=net', 'cn=config'), so you can configure from here (if you're logged with the olcRootDN set in olcDatabase={o}cn=config. See Install openLDAP with runtime configuration.# $ldapservers→SetValue($i,'login','dn','cn=Manager,dc=example,dc=com'); and set to the correct DN value.This should be enough to start …