Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
_AnonymousUser
Specialist III
Specialist III

Is it possible to create new users in MDM CE?

Hi,
I've been playing around with MDM 5.0.2 and it seems that the only users that can log in to the Wweb UI are "user" and "administrator". Is this a limitation of the Community Edition? Is there a way to populate the provisioning container to add new users using the studio?
Thanks,
C
Labels (2)
2 Replies
shawnling
Contributor
Contributor

This is my question, too.
Anonymous
Not applicable

Hi,
Actually, there's no "provisioning" container in Talend Open Studio for MDM. There's only a simple login check.
You can customize <MDM_HOME>/jboss-4.2.2.GA/server/default/conf/login-config.xml to add a simple login.
<!-- Policy for talend MDM -->
<application-policy name="xtentisSecurity">
<authentication>
<login-module code="org.talend.mdm.jaas.jboss.open.SimpleLoginModule"
flag="required">
<module-option name="unauthenticatedIdentity">anonymous</module-option>
<module-option name="logins">admin,administrator,user,foo</module-option>
<module-option name="passwords">talend,administrator,user,bar</module-option>
</login-module>

Provisioning and role-based security are Enterprise features, and enable you to administer users directly from the Web UI.
Hope that helps,
Cyril.