Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have successfully deployed the Configuration sharing model, similarly to the the official guide: http://wso2.org/project/esb/java/4.0.3/docs/deployment_guide.html So I have 2 ESB nodes that are pointing to one instance of WSO2 G-Reg which makes use of a MySql DB for user store, so that State Replication works great.

I am now adding UsernameToken security on a proxy Service, but I cannot authenticate with users defined inside the G-REG, it only authenticates users defined in the ESB.

How can I share Users and Roles configurations among all WSO2 nodes? i.e. I thought that would be possible to have a single user store shared for all Carbon products, or am I missing something?

Please help. Thanks

EDIT:

user-mgt.xml for the ESB

<Property name="url">jdbc:mysql://localhost:3306/reg_db</Property>
<Property name="userName">root</Property>
<Property name="password">1234</Property>
<Property name="driverName">com.mysql.jdbc.Driver</Property>
<Property name="maxActive">60</Property>
<Property name="maxWait">6000</Property>
<Property name="minIdle">5</Property>

and the registry.xml:

 <currentDBConfig>sharedRegistry</currentDBConfig>
    <readOnly>false</readOnly>
    <enableCache>true</enableCache>
    <registryRoot>/</registryRoot>

    <dbConfig name="sharedRegistry">
    <url>jdbc:mysql://localhost:3306/reg_db</url>
    <userName>root</userName>
    <password>1234</password>
    <driverName>com.mysql.jdbc.Driver</driverName>
    <maxActive>80</maxActive>
    <maxWait>6000</maxWait>
    <minIdle>5</minIdle>
    </dbConfig>

    <remoteInstance url="https://localhost:9446/registry">
    <id>sharedRegistryInstance</id>
    <dbConfig>sharedRegistry</dbConfig>
    <readOnly>false</readOnly>
    <enableCache>true</enableCache>
    <registryRoot>/</registryRoot>
    </remoteInstance>

    <!-- Governance data will be stored in /_system/governance collection of central registry instance --> 
    <mount overwrite="true" path="/_system/governance">
    <instanceId>sharedRegistryInstance</instanceId>
    <targetPath>/_system/governance</targetPath>
    </mount>

    <!-- Configuration data will be stored in /_system/esbnodes collection of central registry instance -->  
    <mount overwrite="true" path="/_system/config">
    <instanceId>sharedRegistryInstance</instanceId>
    <targetPath>/_system/esbnodes</targetPath>
    </mount>

and the configuration for G-Reg:

<currentDBConfig>wso2registry</currentDBConfig>
<readOnly>false</readOnly>
<enableCache>true</enableCache>
<registryRoot>/</registryRoot>

<dbConfig name="wso2registry">
<url>jdbc:mysql://localhost:3306/reg_db</url>
<userName>root</userName>
<password>1234</password>
<driverName>com.mysql.jdbc.Driver</driverName>
<maxActive>80</maxActive>
<maxWait>6000</maxWait>
<minIdle>5</minIdle>
</dbConfig>

<Property name="url">jdbc:mysql://localhost:3306/reg_db?autoReconnect=true</Property>
<Property name="userName">root</Property>
<Property name="password">1234</Property>
<Property name="driverName">com.mysql.jdbc.Driver</Property>
<Property name="maxActive">60</Property>
<Property name="maxWait">6000</Property>
<Property name="minIdle">5</Property>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.