You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi There,
I was looking at ways to get crowd to connect to 2 ldap servers and i tried to put both ips of my ldap servers into the connector part of directory. It accepted the 2 ips and continues to work, but when i click on connecter in the specific directory, i get a stack trace with the following error:
java.lang.RuntimeException: java.net.URISyntaxException: Illegal character in authority at index 7: ldap://10.224.0.5 10.224.0.15:389
as you can see, it's the 2 ips that i entered with a space. how can i reset that configuration so that it only uses the first ip? Not sure which xml file contains the configuration so that i can fix the issue?
It's in the database, but you should be able to change it by editing the connector.
You'll need to put in a valid address for a single ldap server, without a protocol named.
Thanks Nic,
Where can i change it? if on the webpage i click on the connector, it immediately gives me a stack trace:-
java.lang.RuntimeException: java.net.URISyntaxException: Illegal character in authority at index 7: ldap://10.224.0.5 10.224.0.15:389
So i cannot edit the connector as i cannot get to it. Or am i missing something?
thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
NP worked it out, The hint that this configuration is in the database was useful!
Found a table in the database that had the info i needed. cwd_directory_attribute
found the line that was bad and updated it using the following:
update cwd_directory_attribute
Set attribute_value = 'ldap://10.224.0.5:389'
where directory_id= 557057 and attribute_name = 'ldap.url'
the directory_id is unique to the specific directory, and each directory has a 'ldap.url', so set this back and it worked.
thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.