Default port numbers

Some parts of Open Liberty use default TCP/IP port numbers. You can override the default port numbers by specifying a different port number in your server configuration.

Runtime environment port numbers

For the command port, the Open Liberty server acquires a temporary port to be used by the command listener. You can configure this port in the bootstrap.properties file. For more information, see Server Configuration overview.

The following table defines the default port numbers of Open Liberty features and provides examples of how you can override default ports in your server configuration.

FeatureDefault port and configuration example
  • IIOP port: 2809

  • IIOP/SSL port: 9402

<iiopEndpoint id="defaultIiopEndpoint" iiopPort="2809">
   <iiopsOptions iiopsPort="9402" sslRef="defaultSSLConfig"/>
</iiopEndpoint>
  • HTTP port: 9080

  • HTTPS port: 9443

<httpEndpoint id="defaultHttpEndpoint"
    httpPort="9082"
    httpsPort="9445" />

For more information about HTTP endpoints, see HTTP Endpoint.

  • TCP port: 5060

  • TLS port: 5061

  • UDP port: 5060

<sipEndpoint id="defaultSipEndpoint"
   sipTCPPort="5062"
   sipUDPPort="5062"
   sipTLSPort="5063" />
  • Incoming unsecure port: 7276

  • Incoming secure port: 7286

<wasJmsEndpoint id="InboundJmsEndpoint"
   wasJmsPort="7278"
   wasJmsSSLPort="7288">
</wasJmsEndpoint>

For more information about WAS JMS endpoints, WAS JMS Endpoint.