I'm stuck on setting up LDAP authentication.
I have a LDAP, which I can bind with
require "net-ldap" ldap = Net::LDAP.new( :host => "ldap.university.ru", :port => 389 ) ldap.auth "email=mye...@university.ru,ou=students,dc=university,dc=ru", "myPassword" if ldap.bind puts "authentication succeeded" else puts "authentication failed" end
from my production server.
I made a canvas account with:
mye...@university.rumyPasswordAnd trying to set up LDAP authentification in Canvas dialog with:
ldap.university.ruou=students,dc=university,dc=ruemail={{login}}emailmye...@university.rumyPasswordand can't pass the "Testing LDAP bind..." section, with no such object error:
What do I do wrong?