Home
TCP/IP default port
By default, for TCP/IP, WebSphere MQ assumes that the channel will be connected to port 1414. We can change this by:
- Adding the port number in brackets as the last part of the ConnectionName:
- For Windows:
SET MQSERVER=ChannelName/TransportType/ConnectionName(PortNumber)- For UNIX systems:
export MQSERVER=ChannelName/TransportType/ConnectionName(PortNumber)
- Changing the
qm.ini file by adding the port number to the protocol name, for example:
TCP: port=2001- Adding WebSphere MQ to the services file as described in Defining a TCP/IP connection.
Home