Change xFlow ports after installation
search cancel

Change xFlow ports after installation

book

Article ID: 145425

calendar_today

Updated On:

Products

CA Service Management - Asset Portfolio Management CA Service Management - Service Desk Manager

Issue/Introduction

How to change the UI port on xFlow. Installed with the default,but need to change it to.

Environment

Release : 17.2 and up

Component : SERVICE DESK MANAGER

Resolution

  1. In the C:\Program Files\CA\xFlow\APPS (update to your path) make a backup and then edit the ServiceConfig.xml. You'll see a list of all the ports that are used for different aspects of communication. The end users will need access to all of these ports, so adjust them however you'd like, but just make sure they are all unique.

  2. C:\Program Files\CA\xFlow\APPS\Services\incidentmicroservice-<latest version>\public\conf make a backup and then update the casm.conf.js and modify the ports there that you changed in step 1.

  3. In the database you will also need to ensure that the records are updated in the al_cdb_configurationparameters table, otherwise you could potentially run into issues during a future patch or update.

    1. First make a backup of your database before making any change.

    2. Run a query like this to confirm the information:
      select * from al_cdb_configurationparameters where configvalue = '***'
    3. Replace *** with the current port value, confirm the values are present, then to update use
      update al_cdb_configurationparameters
      set configvalue = 'NEWVALUE'
      Where configvalue = 'OLDVALUE' AND configkey LIKE 'xflow%'

You'll need to do this for each port you update.

After updating the configuration, please restart the xFlow and SearchServer services.