cancel
Showing results for 
Search instead for 
Did you mean: 

Data hub username / password

Former Member
0 Kudos

The snippet of sample xml file for data hub at https://wiki.hybris.com/display/release5/Sample+XML+Extension+File+for+Data+Hub has following contents


 <targetSystems>
         <targetSystem>
             <name>HybrisB2BCoreInstallation</name>
             <type>HybrisCore</type>
             <exportURL>${datahub.extension.exportURL}</exportURL>
             <userName>${datahub.extension.userName}</userName>
             <password>${datahub.extension.password}</password>


Where do we get this username and password and what should be the URL if my hybris is running at http://localhost:9001

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Take a look here : https://wiki.hybris.com/display/release5/Configuration+of+a+Data+Hub+Installation

You can add additional config like so :

 datahub.extension.exportURL=http://localhost:9001/datahubadapter
 datahub.extension.userName=admin
 datahub.extension.password=nimda



The account will need to be a user account setup inside your Commerce Suite installation.

Answers (1)

Answers (1)

Former Member
0 Kudos

Thank you