How to Modify Port Numbers after Installing IBM Manta Data Lineage

Here is a description of how to modify the assigned port numbers after installing the Manta Data Lineage application.

Instructions

  1. Make the necessary modifications in Manta Server and Manta Service Utility.

    1. Manta Server (mantaflow/server/conf/server.xml)
      Note: The default port number for manta-dataflow-server is 8080.

      config.properties

      # Base URL of the internal metadata repository server
      manta.repository.url=http://localhost:8080/manta-dataflow-server
      

      server.xml

      <Connector port="8080" protocol="HTTP/1.1"
      connectionTimeout="20000"
      redirectPort="8443"
      relaxedQueryChars="[ ]" />
      
    2. Manta Service Utility mantaflow/serviceutility/manta-admin-ui-dir/conf/application.properties

    **application.properties**

    ``` bash
    manta.admin-ui.port=8181
    ```
  1. If changing the port associated with Manta Server, also modify config.properties in <MANTA_HOME>/cli/scenarios/manta-dataflow-cli/conf/.

  2. If you would like to modify the log file viewer port, the definition is found in the artemis.properties files <MANTA_HOME>/serviceutility/manta-admin-ui-dir/conf/

    **artemis.properties**
    
    ``` bash
    artemis.server.port=61616
    artemis.host=localhost
    ```
    
  3. After making all the modifications, restart the Manta services ( MantaFlowServer and MantaUtilityTool).