Updating the Authentication Type to Native OS Authentication

If the cluster authentication type in Event Stream Processor has changed to Native OS, update the authentication type in the ProductModule.xml file to Native OS.

  1. Open the ProductModule.xml file in the <SCC_DIR>\plugins\ESPMAP directory.
  2. Uncomment out the <scc:ap_definition> block under Native OS to enable Native OS. For example:
     <!--  Begin profile for Native OS Username/password authentication -->
                <scc:ap_definition name="ESP_Node_NativeOS_Authentication" description="Authenticate with the ESP Node using Native OS security">
                    <scc:ap_value_defn key="nativeos_username" required="yes" default="">
                        <scc:prompt reskey="RESKEY_AP_PROMPT_USERNAME" default="Native OS Username"/>
                        <scc:tooltip reskey="RESKEY_AP_TT_USERNAME" default="Enter the username"/>
                    </scc:ap_value_defn>
                    <scc:ap_value_defn key="nativeos_password" required="no" obscure="true" default="">
                        <scc:prompt reskey="RESKEY_AP_PROMPT_PASSWORD" default="Password"/>
                        <scc:tooltip reskey="RESKEY_AP_TT_PASSWORD" default="Enter your password"/>
                    </scc:ap_value_defn>
                </scc:ap_definition>            <!-- End profile for Native OS username/password authentication --> 
    Note: Only one scc:ap_definitions block can take effect at a time so comment out blocks for all other authentication types.