Operating System - HP-UX
1828990 Members
2701 Online
109986 Solutions
New Discussion

how to kill a port in weblogic

 
sstan
Frequent Advisor

how to kill a port in weblogic

Hi guys,
any idea of how to kill the port opened by weblogic process, kill -9 seems not working.

rgds,
6 REPLIES 6
T G Manikandan
Honored Contributor

Re: how to kill a port in weblogic

what are u referring to.are u asking as how to free a weblogic server from its port and you are to restart the weblogic server.

Please revert
sstan
Frequent Advisor

Re: how to kill a port in weblogic

HI TG ,
u are right. I want to release the port and do a restart.
Ganesh Babu
Honored Contributor

Re: how to kill a port in weblogic

u have to stop the process or kill the process which is using that port..

Ganesh
twang
Honored Contributor

Re: how to kill a port in weblogic

to show what processes are runnign:
# netstat -an |grep LISTEN
to stop the port service, what you need to do is to stop the listener process.
Sridhar Bhaskarla
Honored Contributor

Re: how to kill a port in weblogic

Hi,

Use 'lsof' to find out the corresponding processes and stop them to release the port.

lsof -i tcp:

'lsof' is not available by default with HP. Search the forums and there are many threads on how to get it.

-Sri
You may be disappointed if you fail, but you are doomed if you don't try
sstan
Frequent Advisor

Re: how to kill a port in weblogic

many thanks for suggestion.