diff --git a/6.Creation_openldap.md b/6.Creation_openldap.md index e0ad88b029904777af0ea2b81661f42f896955a7..b775bfe4081343c22bcaf070993ee2896b260ef6 100644 --- a/6.Creation_openldap.md +++ b/6.Creation_openldap.md @@ -210,4 +210,110 @@ Identifiants de connexion : Ce déploiement permet de gérer un annuaire LDAP efficacement dans un cluster Kubernetes, tout en garantissant une interface web simplifiée pour l'administration.  - \ No newline at end of file + + +- Voici la configuration complete de mon LDAP : +```bash +# LDIF Export for dc=unzy +# Server: openldap-service (openldap-service) +# Search Scope: sub +# Search Filter: (objectClass=*) +# Total Entries: 9 +# +# Generated by phpLDAPadmin (http://phpldapadmin.sourceforge.net) on March 9, 2025 4:35 pm +# Version: 1.2.5 + +version: 1 + +# Entry 1: dc=unzy +dn: dc=unzy +dc: unzy +o: devops +objectclass: top +objectclass: dcObject +objectclass: organization + +# Entry 2: cn=admin,dc=unzy +dn: cn=admin,dc=unzy +cn: admin +description: LDAP administrator +objectclass: simpleSecurityObject +objectclass: organizationalRole +userpassword: {SSHA}k0E3DnJhMzTy0+2PTfS4n5u84U3sWx+U + +# Entry 3: ou=Groups,dc=unzy +dn: ou=Groups,dc=unzy +objectclass: organizationalUnit +objectclass: top +ou: Groups + +# Entry 4: cn=Admin,ou=Groups,dc=unzy +dn: cn=Admin,ou=Groups,dc=unzy +cn: Admin +gidnumber: 502 +memberuid: dclemente +objectclass: posixGroup +objectclass: top + +# Entry 5: cn=Famille,ou=Groups,dc=unzy +dn: cn=Famille,ou=Groups,dc=unzy +cn: Famille +gidnumber: 500 +memberuid: dclemente +memberuid: mclemente +memberuid: fclemente +objectclass: posixGroup +objectclass: top + +# Entry 6: ou=Users,dc=unzy +dn: ou=Users,dc=unzy +objectclass: organizationalUnit +objectclass: top +ou: Users + +# Entry 7: cn=Damien clemente,ou=Users,dc=unzy +dn: cn=Damien clemente,ou=Users,dc=unzy +cn: Damien clemente +gidnumber: 502 +givenname: Damien +homedirectory: /home/users/dclemente +loginshell: /bin/bash +objectclass: inetOrgPerson +objectclass: posixAccount +objectclass: top +sn: clemente +uid: dclemente +uidnumber: 1000 +userpassword: kube + +# Entry 8: cn=Frederic Clemente,ou=Users,dc=unzy +dn: cn=Frederic Clemente,ou=Users,dc=unzy +cn: Frederic Clemente +gidnumber: 500 +givenname: Frederic +homedirectory: /home/users/fclemente +loginshell: /bin/bash +objectclass: inetOrgPerson +objectclass: posixAccount +objectclass: top +sn: Clemente +uid: fclemente +uidnumber: 1002 +userpassword: kube + +# Entry 9: cn=Mathieu Clemente,ou=Users,dc=unzy +dn: cn=Mathieu Clemente,ou=Users,dc=unzy +cn: Mathieu Clemente +gidnumber: 500 +givenname: Mathieu +homedirectory: /home/users/mclemente +loginshell: /bin/bash +objectclass: inetOrgPerson +objectclass: posixAccount +objectclass: top +sn: Clemente +uid: mclemente +uidnumber: 1001 +userpassword: kube + +``` \ No newline at end of file