Check the ports assigned by the BlackBerry UEM setup application
BlackBerry UEM
setup applicationWhen you install the first instance of
BlackBerry UEM
, the setup application assigns the listening ports and stores them in the BlackBerry UEM
database. You can run the following script on the BlackBerry UEM
database to check the minimum ports that must be open between each BlackBerry 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. See BlackBerry UEM listening ports for the database name associated with each listening 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', 'ec.gme.affinityManager.notification.port', '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;