mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-02 19:39:26 +01:00
a basic ldap setup example
This commit is contained in:
parent
caee1c36fd
commit
dccc710045
45
phpgwapi/doc/ldap/ldap_init.txt
Normal file
45
phpgwapi/doc/ldap/ldap_init.txt
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
#
|
||||||
|
# ldapadd -f <file.ldif> -x -D "cn=Manager,dc=enterprise,dc=subnet" -w <password>
|
||||||
|
#
|
||||||
|
## Example
|
||||||
|
# --- French version ---
|
||||||
|
#dn: dc=entreprise,dc=subnet
|
||||||
|
#objectClass: top
|
||||||
|
#objectClass: organization
|
||||||
|
#l: Paris
|
||||||
|
#st: Ile-de-France
|
||||||
|
#o: entreprise
|
||||||
|
#
|
||||||
|
## Personnes, edge-it, subnet
|
||||||
|
#dn: ou=Personnes,dc=entreprise,dc=subnet
|
||||||
|
#objectClass: top
|
||||||
|
#objectClass: organizationalUnit
|
||||||
|
#ou: Personnes
|
||||||
|
#
|
||||||
|
## Groupes, edge-it, subnet
|
||||||
|
#dn: ou=Groupes,dc=entreprise,dc=subnet
|
||||||
|
#objectClass: top
|
||||||
|
#objectClass: organizationalUnit
|
||||||
|
#ou: Groupes
|
||||||
|
|
||||||
|
# Example
|
||||||
|
# --- English version ---
|
||||||
|
dn: dc=enterprise,dc=loc
|
||||||
|
objectClass: top
|
||||||
|
objectClass: organization
|
||||||
|
l: City
|
||||||
|
st: States
|
||||||
|
o: enterprise
|
||||||
|
|
||||||
|
# People, edge-it, subnet
|
||||||
|
dn: ou=People,dc=enterprise,dc=loc
|
||||||
|
objectClass: top
|
||||||
|
objectClass: organizationalUnit
|
||||||
|
ou: People
|
||||||
|
|
||||||
|
# Groups, edge-it, subnet
|
||||||
|
dn: ou=Groups,dc=enterprise,dc=loc
|
||||||
|
objectClass: top
|
||||||
|
objectClass: organizationalUnit
|
||||||
|
ou: Groups
|
||||||
|
|
Loading…
Reference in New Issue
Block a user