TSM DB: netstat -ap | grep db2sysc don't listen TCP/IP port

danielecnaf

ADSM.ORG Member
Joined
Nov 23, 2007
Messages
12
Reaction score
0
Points
0
Hi all,
I install a new TSM server v6.1.2.0, I need to connect the db server by remote machine but the db dont' listen TCP/IP port.
In another server I have:
[root@tsm-server-3 ~]# netstat -ap | grep db2sysc
tcp 0 0 *:db2c_db2inst1 *:* LISTEN 19599/db2sysc 0

In the new server:
[root@tsm-server-1 ~]# netstat -ap | grep db2sysc
[root@tsm-server-1 ~]#

but the process run:
[root@tsm-server-1 ~]# ps -ef|grep db2sysc
admin 16688 16686 0 11:59 pts/2 00:00:00 db2sysc 0

To make db2 on listening I try with:

db2 update dbm cfg using SVCENAME 50000

and db2stop/db2start but nothing.
Any idea how to make db2 listening?

Thanks

Daniele
 
I found the solution:
from db2:
update database manager configuration using svcename 3700
db2stop
db2start
quit

then by console:
db2set DB2COMM=tcpip
db2stop
db2start

and now:

[root@tsm-server-1 ~]# netstat -ap | grep db2sysc
tcp 0 0 *:lrs-paging *:* LISTEN 21934/db2sysc 0


bye

D.
 
Back
Top