Kumar
Kumar

Reputation: 51

Command to Replace Connection Name in IBM MQ

Can someone please provide the commands to replace the MQ channel IP and port and using command line in IBM MQ.

Below Command is not working

ALTER CHANNEL('TEC1APP.TO.OCMT') CHLTYPE (SDR) CONNAME('192.168.0.1(1415)') REPLACE

Upvotes: 1

Views: 521

Answers (1)

Jaya Gabhane
Jaya Gabhane

Reputation: 46

To change IP to 192.168.0.2 and port number to 1416, below command can be used

ALTER CHANNEL('TEC1APP.TO.OCMT') CHLTYPE (SDR) CONNAME('192.168.0.2(1416)')

Upvotes: 3

Related Questions