Update dolibarr.md

This commit is contained in:
Cyrix126 2022-04-25 10:28:49 +02:00 committed by GitHub
parent b8448fecd8
commit a0852e6587
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,24 +1,24 @@
# Configuration pour Dolibarr
## Configuration pour Dolibarr
## This example will help you to create user in dolibarr from your users in your lldap server from a specific group and to login with the password from the lldap server.
This example will help you to create user in dolibarr from your users in your lldap server from a specific group and to login with the password from the lldap server.
## to connect ldap->dolibarr
## To connect ldap->dolibarr
Install module LDAP from Home -> Modules/Applications
In Dolibarr, install the LDAP module from Home -> Modules/Applications
Go to the configuration of this module and fill it like this:
Users and groups synchronization: LDAP -> Dolibarr
Contacts' synchronization: No
Type: OpenLdap
Version: Version 3
Primary server: ldap://example.com
Secondary server: Empty
Server port: port 389
Server DN: dc=example,dc=com
Use TLS: No
Administrator DN: cn=admin,ou=people,dc=example,dc=com
Administrator password: secret
Users and groups synchronization: `LDAP -> Dolibarr`
Contacts' synchronization: `No`
Type: `OpenLdap`
Version: `Version 3`
Primary server: `ldap://example.com`
Secondary server: `Empty`
Server port: port `3890`
Server DN: `dc=example,dc=com`
Use TLS: `No`
Administrator DN: `cn=admin,ou=people,dc=example,dc=com`
Administrator password: `secret`
Click on modify then "TEST LDAP CONNECTION".
You should get this result on the bottom:
@ -35,30 +35,31 @@ We will use only Users in this example to get the users we want to import.
The tab Groups would be to import groups.
Click on the Users tab and fill it like this:
Users' DN: ou=people,dc=example,dc=com
List of objectClass: person
Users' DN: `ou=people,dc=example,dc=com`
List of objectClass: `person`
Search filter: memberOf=cn=yournamegroup,ou=groups,dc=example,dc=com
or if you don't have a group for your users, leave the search filter empty.
Full name: cn
Name: sn
First name: givenname
Login uid
Email address mail
Full name: `cn`
Name: `sn`
First name: `givenname`
Login `uid`
Email address `mail`
Click on MODIFY and then on TEST A LDAP SEARCH
Click on "MODIFY" and then on "TEST A LDAP SEARCH"
You should get the number of users in the group.
You should get the number of users in the group or all users if you didn't use a filter.
##To import ldap users into the dolibarr database (needed to login with those users):
## To import ldap users into the dolibarr database (needed to login with those users):
Navigate to Users & Groups -> New Users
Navigate to Users & Groups -> New Users
Click on the blank form "Users in LDAP database", you will get the list of the users in the group filled above. With the "GET" button, you will import the selected user.
##To enable LDAP login:
## To enable LDAP login:
Modify your conf.php in your dolibarr folder in htdocs/conf
Modify your `conf.php` in your dolibarr folder in `htdocs/conf`
Replace
```
// Authentication settings
@ -70,8 +71,8 @@ with:
// Authentication settings
// Only add "ldap" to only login using the ldap server, or/and "dolibar" to compare with local users. In any case, you need to have the user existing in dolibarr.
$dolibarr_main_authentication='ldap,dolibarr';
$dolibarr_main_auth_ldap_host='ldap://127.0.0.1:389';
$dolibarr_main_auth_ldap_port='389';
$dolibarr_main_auth_ldap_host='ldap://127.0.0.1:3890';
$dolibarr_main_auth_ldap_port='3890';
$dolibarr_main_auth_ldap_version='3';
$dolibarr_main_auth_ldap_servertype='openldap';
$dolibarr_main_auth_ldap_login_attribute='cn';