David A. Lareo

Results 19 comments of David A. Lareo

Requires node.js installed. a) Install dependencies with npm install b) run node server.js c) open browser http://localhost:4000 I have forked the repository and updated it in order to work with...

Hi! I am also dealing with OpenLDAP connection and get: ``` I20170803-13:21:26.501(2)? LDAP authentication for: david I20170803-13:21:26.505(2)? Trying to bind david... I20170803-13:21:26.626(2)? Callback from binding LDAP: I20170803-13:21:26.628(2)? {"dn":"","code":34,"name":"InvalidDnSyntaxError","message":"invalid DN"} I20170803-13:21:26.629(2)?...

Could you provide a working (with this package) LDAP directory to test against and debug the errors I am getting?

I do have already an OpenLDAP directory working, and connecting to other clients (Nextcloud, Gogs, Wordpress...). I guess the problem is the type of connection we are establishing with LDAP...

I solved it adding also: ``` LDAP.filter = function (isEmailAddress, usernameOrEmail, FQDN) { return '(&(' + ((isEmailAddress) ? 'mail' : 'cn') + '=' + usernameOrEmail + ')(objectClass=inetOrgPerson))'; } ``` because...

Solved using: ``` LDAP.generateSettings = function (request) { return { 'serverDn': 'CN=' + request.username + ',CN=users,OU=groups,DC=domain,DC=tld', '...', '...', }; } ```

I have the same error! Any help??

But no edxops/precise-common:test image is available!!, e.g

I am trying to deploy Edx with Docker and I need to build and package images first, ad lobg as there is no available versions for all the services at...