Operating System - HP-UX
1822497 Members
2740 Online
109642 Solutions
New Discussion юеВ

port 102 busy - which process is responsible?

 
serohZeven
New Member

port 102 busy - which process is responsible?

Hi,

we have to maintain a HP9000 server system with installed HP-UX 10.22.

An application stops starting because port 102 is busy after boot up. We want to kill that process blocking port 102. But there seem to be not a tool at all to push the requested output to screen. We tried out ps -ef and netstat -aA. HP support says, lfos should work.

Has everyone yet another idea how to resolve the relation between process an use port number?

Thanx
Ulrich
6 REPLIES 6
Wim Rombauts
Honored Contributor

Re: port 102 busy - which process is responsible?

Yes we have.

We once got an "unsupported" program from HP-support to list all processes, their open files and sockets.

I will try to attach it to this entry.

gunzip it first before using of course.
Wim Rombauts
Honored Contributor

Re: port 102 busy - which process is responsible?

It seems the compressed exe is not attached.

I try again. If it fails again, maybe I can FTP or mail it to you ?
RAC_1
Honored Contributor

Re: port 102 busy - which process is responsible?

Get lsof tool for 10.20.

http://the-other.wiretapped.net/security/host-security/

lsof -p tcp:102

or netstat -a|grep -i 102


Anil
There is no substitute to HARDWORK
Jeff Schussele
Honored Contributor

Re: port 102 busy - which process is responsible?

Hi Ulrich,

Port 102/tcp is used by ISO - specifically the TSAP portion os ISODE. This is part of the OSI Transport Services - OTS/9000 which can by used by X.400, FTAM, FDDI or even X.25 custom apps.

Here's a doc on OTS/9000:

http://www.docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/32070-90026/32070-90026_top.html&con=/hpux/onlinedocs/32070-90026/00/00/59-con.html&toc=/hpux/onlinedocs/32070-90026/00/00/59-toc.html&searchterms=tsap&queryid=20040504-082131

HTH,
Jeff
PERSEVERANCE -- Remember, whatever does not kill you only makes you stronger!
Jeff Schussele
Honored Contributor

Re: port 102 busy - which process is responsible?

Sorry - the process responsible will probably start with "osi" or "ots"

You might want to check if it's installed

swlist | grep -i ots

HTH,
Jeff
PERSEVERANCE -- Remember, whatever does not kill you only makes you stronger!
G. Vrijhoeven
Honored Contributor

Re: port 102 busy - which process is responsible?