You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use carta-controller --verbose --user mparratest I have the next:
LdapAuth: LDAPError [ProtocolError]: unsupported extended operation
at messageCallback (/usr/local/lib/node_modules/carta-controller/node_modules/ldapjs/lib/client/client.js:1220:45)
at Parser.onMessage (/usr/local/lib/node_modules/carta-controller/node_modules/ldapjs/lib/client/client.js:888:14)
at Parser.emit (node:events:390:28)
at Parser.write (/usr/local/lib/node_modules/carta-controller/node_modules/ldapjs/lib/messages/parser.js:107:8)
at Socket.onData (/usr/local/lib/node_modules/carta-controller/node_modules/ldapjs/lib/client/client.js:875:22)
at Socket.emit (node:events:390:28)
at addChunk (node:internal/streams/readable:315:12)
at readableAddChunk (node:internal/streams/readable:289:9)
at Socket.Readable.push (node:internal/streams/readable:228:10)
at TCP.onStreamRead (node:internal/stream_base_commons:199:23) {
lde_message: 'unsupported extended operation',
lde_dn: null
}
LdapAuth: LDAPError [ProtocolError]: unsupported extended operation
at messageCallback (/usr/local/lib/node_modules/carta-controller/node_modules/ldapjs/lib/client/client.js:1220:45)
at Parser.onMessage (/usr/local/lib/node_modules/carta-controller/node_modules/ldapjs/lib/client/client.js:888:14)
at Parser.emit (node:events:390:28)
at Parser.write (/usr/local/lib/node_modules/carta-controller/node_modules/ldapjs/lib/messages/parser.js:107:8)
at Socket.onData (/usr/local/lib/node_modules/carta-controller/node_modules/ldapjs/lib/client/client.js:875:22)
at Socket.emit (node:events:390:28)
at addChunk (node:internal/streams/readable:315:12)
at readableAddChunk (node:internal/streams/readable:289:9)
at Socket.Readable.push (node:internal/streams/readable:228:10)
at TCP.onStreamRead (node:internal/stream_base_commons:199:23) {
lde_message: 'unsupported extended operation',
lde_dn: null
}
LDAPError [ProtocolError]: unsupported extended operation
at messageCallback (/usr/local/lib/node_modules/carta-controller/node_modules/ldapjs/lib/client/client.js:1220:45)
at Parser.onMessage (/usr/local/lib/node_modules/carta-controller/node_modules/ldapjs/lib/client/client.js:888:14)
at Parser.emit (node:events:390:28)
at Parser.write (/usr/local/lib/node_modules/carta-controller/node_modules/ldapjs/lib/messages/parser.js:107:8)
at Socket.onData (/usr/local/lib/node_modules/carta-controller/node_modules/ldapjs/lib/client/client.js:875:22)
at Socket.emit (node:events:390:28)
at addChunk (node:internal/streams/readable:315:12)
at readableAddChunk (node:internal/streams/readable:289:9)
at Socket.Readable.push (node:internal/streams/readable:228:10)
at TCP.onStreamRead (node:internal/stream_base_commons:199:23) {
lde_message: 'unsupported extended operation',
lde_dn: null
}
When I log with an user not in the LDAP directory or with a bad password I see:
no such user: "mparratest1"
But when I try to log with an user with a correct password, it is not showing logs, and the UI says "Invalid username/password combination".
Any ideas to test?
Thank you in advance.
The text was updated successfully, but these errors were encountered:
Poking around a little bit and looking at the config file excerpt, I suspect that this is due to TLS issues when trying to connect to the LDAP server in question (running on port 389, I'd guess it's trying to do starttls).
Seeing as you're addressing it by IP, I doubt that's configured on the server side either and this is the sort of info that I'd generally recommend not sending unencrypted over the network. @manuparra is TLS something you'd be able to get configured there? (Just Google for something like openldap setup starttls, or replace openldap with whatever other LDAP server you might be using. This does assume that you have admin rights to the LDAP server though).
Would have to dig a bit further to confirm that that's the specific issue, but at the moment, searching around it seems it's typically issues related to TLS that seem to result in that message getting displayed)
Hi!
I'm adding LDAP Auth to Carta Controller, and I have the next config.json:
When I use
carta-controller --verbose --user mparratest
I have the next:When I log with an user not in the LDAP directory or with a bad password I see:
But when I try to log with an user with a correct password, it is not showing logs, and the UI says "Invalid username/password combination".
Any ideas to test?
Thank you in advance.
The text was updated successfully, but these errors were encountered: