Skip Navigation

Check the ports assigned by the
BlackBerry UEM
setup application

When you install the first instance of
BlackBerry UEM
, the setup application assigns the listening ports and stores them in the
UEM
database. You can run the following script on the database to check the minimum ports that must be open between each
UEM
instance.
You can change the "WHERE name in" portion of this script to retrieve the port value for any listening port by adding the database name of the port.
SELECT vgcs.name, vgcs.value FROM v_global_cfg_setting vgcs WHERE name in ('ec.gme.common.rcp.internal.port', 'ui.port.ssp', 'ui.port.admin', 'tomcat.udui.http.port', 'tomcat.dynamics.apps.https.port', 'ui.port.internal-api', 'tomcat.ipc.https.port', 'good.proxy.appservers.http.listening.port', 'good.control.container.management.listening.port', 'good.proxy.appservers.ssl.listening.port', 'good.proxy.container.ssl.listening.port') ORDER BY name;