1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
gq for Debian
-------------
Adding a new server to the configuration:
Gq has a preferences window, in which you can configure the servers you
are going to use. Unfortunately the server definition you create there
are "transient": they are not saved in you configuration, and so last
only for the current session.
Moreover the new servers you create will also often disappear, perhaps
when switching to a different tab.
To cut a long story short: the "create a new server" feature is broken,
simply don't use it. Instead to add a server just edit manually your
~/.gq file and put a stanza like this into it:
<ldapserver>
<name>*Server-name*</name>
<ldaphost>*Server uri or host*</ldaphost>
<ldapport>*Port (unused if server specified by an uri)*</ldapport>
<basedn>*Base DN*</basedn>
<pw-encoding>Base64</pw-encoding>
<search-attribute>cn</search-attribute>
</ldapserver>
(I've put between * the values you need change to fit your needs).
After that you can use the preferences panel to change and fine tune
your new server.
You can browse the Debian LDAP directory:
Just bind anonymously to ldap://db.debian.org, and use "dc=debian,dc=org" as
the base dn.
List of public LDAP servers:
http://www.dante.net/np/pdi.html
|