IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
Expand all | Collapse all

IS users not being created in composite template

  • 1.  IS users not being created in composite template

    Posted Wed July 25, 2018 07:42 PM

    Hi,

    I’m working on developing a template that will provision an IS, MWS, UM instance.
    I have the template working but some of the configuation items such as the IS users aren’t being created when I run the template.

    Here’s a snippet of the yaml from the template where I’m trying to set the user:

                integrationServer-${is.instance.name}:
    COMMON-LOCAL-USERS:
    COMMON-LOCAL-USERS-wmDeployerUserIS:
    '@id': wmDeployerUserIS
    Enabled: 'true'
    ExtendedProperties:
    Property:
    - '@name': AllowDigestAuthentication
    $: 'false'
    COMMON-LOCAL-USERS-wmRemoteServerUser:
    '@id': wmRemoteServerUser
    Enabled: 'true'
    ExtendedProperties:
    Property:
    - '@name': AllowDigestAuthentication
    $: 'false'
    COMMON-LOCAL-USERS-wmTaskEngineUser:
    '@id': wmTaskEngineUser
    Enabled: 'true'
    ExtendedProperties:
    Property:
    - '@name': AllowDigestAuthentication
    $: 'false'

    I looked through some of the templates on the softwareag github site but I don’t see any with an example of creating an IS user as part of the template.

    Thoughts?

    Regards,
    Mike


    #webMethods-General
    #Integration-Server-and-ESB
    #Command-Central
    #webMethods


  • 2.  RE: IS users not being created in composite template

    Posted Thu July 26, 2018 12:47 PM

    I found an example of and MWS template that was setting a user account and changed my template to this:

    
    COMMON-LOCAL-USERS:
    COMMON-LOCAL-USERS-wmDeployerUserIS:
    "@id": wmDeployerUserIS
    Password: ${is.password}
    Enabled: true
    AllowDigestAuthentication: false
    COMMON-LOCAL-USERS-wmRemoteServerUser:
    "@id": wmRemoteServerUser
    Password: ${is.password}
    Enabled: true
    AllowDigestAuthentication: false
    COMMON-LOCAL-USERS-wmTaskEngineUser:
    "@id": wmTaskEngineUser
    Password: ${is.password}
    Enabled: true
    AllowDigestAuthentication: false

    Once I ran it this way the users were created on the IS with the template execution.

    Mike


    #webMethods
    #Integration-Server-and-ESB
    #webMethods-General
    #Command-Central