Author |
Message
|
cots |
Posted: Wed Jan 14, 2004 10:38 am Post subject: How to create listener port on AIX |
|
|
Centurion
Joined: 16 Jun 2003 Posts: 105
|
Hi everyone,
I am very new in AIX environment. could someone pls help. after create queue manager how do I set the port number on the listener the queue manager that I just created. pls provide command line for AIX environment
Thanks in advance |
|
Back to top |
|
 |
vennela |
Posted: Wed Jan 14, 2004 10:42 am Post subject: |
|
|
 Jedi Knight
Joined: 11 Aug 2002 Posts: 4055 Location: Hyderabad, India
|
runmqlsr -m <QMGR Name> -t tcp -p <port number> &
For example
Code: |
runmqlsr -m QM1 -t tcp -p 1414 |
You may also want to nohup it to keep the lsitener running after you close the telnet session |
|
Back to top |
|
 |
cots |
Posted: Wed Jan 14, 2004 11:14 am Post subject: |
|
|
Centurion
Joined: 16 Jun 2003 Posts: 105
|
Thanks for the quick response.
pls show me how to get to the nohup environment?
Thanks |
|
Back to top |
|
 |
csmith28 |
Posted: Wed Jan 14, 2004 11:49 am Post subject: |
|
|
 Grand Master
Joined: 15 Jul 2003 Posts: 1196 Location: Arizona
|
You can also put an entry in /etc/services binding your ports to mqseries.
This will eliminate the need for a manually started listener process. _________________ Yes, I am an agent of Satan but my duties are largely ceremonial. |
|
Back to top |
|
 |
cots |
Posted: Wed Jan 14, 2004 12:34 pm Post subject: |
|
|
Centurion
Joined: 16 Jun 2003 Posts: 105
|
thank you all for your responses |
|
Back to top |
|
 |
vennela |
Posted: Wed Jan 14, 2004 12:41 pm Post subject: |
|
|
 Jedi Knight
Joined: 11 Aug 2002 Posts: 4055 Location: Hyderabad, India
|
Code: |
nohup runmqlsr -m QM1 -t tcp -p 1414 & |
|
|
Back to top |
|
 |
|