Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. In the  <APPM_HOME>/repository/conf/carbon.xml file, update the following with the new host name:

    Code Block
    languagexml
    <HostName>localhost</HostName>
    <MgtHostName>localhost</MgtHostName>
  2. In the <APPM_HOME>/repository/conf/identity/sso-idp-config.xml file, update the following with the host name you entered above:

    Code Block
    languagexml
    <AssertionConsumerService>https://localhost:9443/store/acs</AssertionConsumerService>
    Code Block
    languagexml
    <AssertionConsumerService>https://localhost:9443/social/acs</AssertionConsumerService>
    Code Block
    languagexml
    <AssertionConsumerService>https://localhost:9443/publisher/acs</AssertionConsumerService>
  3. In the <APPM_HOME>/repository/conf/app-manager.xml file, update the following URLs with the new host name:

    Code Block
    languagexml
    <AuthManager>
      <ServerURL>https://${carbon.local.ip}:${mgt.transport.https.port}/services/</ServerURL>
    </AuthManager>
    Code Block
    languagexml
    <APIGateway>
      <Environments>  
         <Environment type="hybrid">
              ....
            <ServerURL>https://${carbon.local.ip}:${mgt.transport.https.port}/services/</ServerURL>
              ....
            <GatewayEndpoint>http://${carbon.local.ip}:${http.nio.port},https://${carbon.local.ip}:${https.nio.port}</GatewayEndpoint>
         </Environment>
      </Environments>
    </APIGateway>
    Code Block
    languagexml
    <APIKeyManager>
      <ServerURL>https://${carbon.local.ip}:${mgt.transport.https.port}/services/</ServerURL>
    </APIKeyManager>
    Code Block
    languagexml
    <SSOConfiguration>
      <IdentityProviderUrl>https://localhost:9443/samlsso</IdentityProviderUrl>
      <Configurators>
        <Configurator>
          ....
          <providerURL>https://localhost:9443</providerURL>
          ....
        </Configurator>
        ....
      </Configurators>
    </SSOConfiguration>
    Code Block
    languagexml
    <EntitlementServiceConfiguration>
    	<ServerUrl>https://localhost:9443</ServerUrl>
    </EntitlementServiceConfiguration>

...