|
|
abukta
super admin
profile |
|
Join Date: 29 Mar 2005 21:03
Posts: |
|
|
DB2 Instance is not Listening on Dedicated Port |
Problem:
DB2 instance is not listening on the dedicated port.
Solution:
In this case, the service name was defined incorrectly.
| Code: |
db2 get dbm cfg
change
TCP/IP Service name (SVCENAME) = db2c_db2udb8
to
TCP/IP Service name (SVCENAME) = 50004
db2 update dbm cfg using SVCENAME 50004
Now
netstat -an |grep 50004
tcp4 0 0 *.50004 *.* LISTEN |
message edited by abukta (20 Jan 2006 14:48)
|