Skip to main content
Version: v2.16.x LTS

Addressing network requirements

Addressing network requirements

Review the following table during installation of Zowe server-side components to determine which TCP ports are required. Values presented in the table are default values. You can change the values by updating variable values in the zowe.yaml file.

Required roles: network administrator, system programmer

For more information about variable names in the following table, see the Zowe YAML configuration file reference in the References section.

Component Ports

Most Components of Zowe are HTTPS servers. The ports of each and their default jobnames are listed below. The ports can be customized for each component by editing the value of components.<component-name>.port within the Zowe YAML file. Each Jobname has a default prefix of ZWE1, but that can be customized via the zowe.job.prefix value in the Zowe YAML file.

Port numberCategoryComponentDefault JobnameLog SuffixPurpose
7552API Mediation Layerapi-catalogZWE1ACAACUsed to view API swagger / openAPI specifications for registered API services in the API Catalog.
7553API Mediation LayerdiscoveryZWE1ADADSDiscovery server port which dynamic API services can issue APIs to register or unregister themselves.
7554API Mediation LayergatewayZWE1AGAGWThe northbound edge of the API Gateway used to accept client requests before routing them to registered API services. This port must be exposed outside the z/OS network so clients (web browsers, VS Code, processes running the Zowe CLI) can reach the gateway.
7555API Mediation Layercaching-serviceZWE1CSACSPort of the caching service that is used to share state between different Zowe instances in a high availability topology.
7556App Frameworkapp-serverZWE1DSDThe Zowe Desktop (also known as ZLUX) port used to log in through web browsers.
7557App FrameworkzssZWE1SZSZZ Secure Services (ZSS) provides REST API services to ZLUX, used by the File Editor application and other ZLUX applications in the Zowe Desktop.
7558jobs-apiZWE1EJEJDisabled by default, as it duplicates APIs found in zOSMF, and is only retained if needed by extensions.
7559files-apiZWE1EFEFDisabled by default, as it duplicates APIs found in zOSMF, and is only retained if needed by extensions.

Caching Service Infinispan ports

The Caching Service will use these additional ports if enabled (zowe.components.caching-service.enabled: true) and set to use infinispan (the default, zowe.components.caching-service.storage.mode: infinispan).

Port numberzowe.yaml variable namePurpose
7118zowe.components.caching-service.storage.infinispan.jgroups.keyExchange.portThe port at which the key server in Infinispan is listening. If the port is not available, the next port is probed, up to port+5. Used by the key server (server) to create an SSLServerSocket and by clients to connect to the key server.
7600zowe.components.caching-service.storage.infinispan.jgroups.portBind port for the socket that is used to form an Infinispan cluster.

IP Addresses

Zowe's servers by default use the TCP IP address 0.0.0.0 which assigns the servers to be available on all network interfaces available to the jobs.

If this default is not desired, it is recommended to use TCPIP port assignment statements to restrict the IP & ports of each server by their jobnames. The jobnames of each Zowe component is derived from the property zowe.job.prefix and <component-suffix> as shown in the table prior.

When zowe.job.prefix is "ZWE1", An example of port reservations with a fixed IP of "10.11.12.13" could be:

   7552 TCP ZWE1AC BIND 10.11.12.13 ; Zowe API Catalog
7553 TCP ZWE1AD BIND 10.11.12.13 ; Zowe Discovery
7554 TCP ZWE1AG BIND 10.11.12.13 ; Zowe Gateway
7555 TCP ZWE1CS BIND 10.11.12.13 ; Zowe Caching Service
7556 TCP ZWE1DS BIND 10.11.12.13 ; Zowe App Server
7557 TCP ZWE1SZ BIND 10.11.12.13 ; Zowe ZSS