Clicking Edit in a User directory configuration causes System Error in Confluence

Still need help?

The Atlassian Community is here for you.

Ask the community

 

Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.

Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Problem

While trying to configure user repository from the user directory, any changes resulted in 500 error page

The following appears in the atlassian-confluence.log

Caused by: org.springframework.beans.FatalBeanException: Could not copy properties from source to target; nested exception is java.lang.reflect.InvocationTargetException
	at org.springframework.beans.BeanUtils.copyProperties(BeanUtils.java:591)
...
Caused by: java.lang.reflect.InvocationTargetException
...
Caused by: java.lang.NumberFormatException: For input string: "636/"

Diagnosis

Diagnostic Steps

  • The string For input string: "636/" looks like  a port number
  • Check what is the URL of the LDAP if it contains a backlash:

    ldap.url: ldaps://mycompanyLDAP.com:636/

Cause

The backlash in the URL caused this problem.

Workaround

In your database, run the following query:

select d.id, d.directory_name, m.list_index from cwd_directory d join cwd_app_dir_mapping m on d.id=m.directory_id;

Take note of the id of the problematic directory, and insert it to the following code and run it in your database:

UPDATE cwd_directory_attribute
SET attribute_value = 'ldap://10.60.2.50:10390' <without the backlash>
WHERE directory_id = <directory ID obtained form the previous query>
AND attribute_name = 'ldap.url'

Always back up your data before performing any modifications to the database. If possible, test any alter, insert, update, or delete SQL commands on a staging server first.

Check if the codes above was run successfully by running the following code:

SELECT * FROM cwd_directory_attribute WHERE directory_id = <directory id> AND attribute_name = 'ldap.url';

flush your cache (By going to Confluence Admin > Cache Management > Flush All) and see if this setting works

Last modified on Mar 30, 2016

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.