Blocking/starting a Port in AIX 6.1

Hello Team,

We are having weblogic which running on AIX 6.1 Lpar machine. We not enabled any firewall(IPSEC) in AIX level.

Our weblogic is running on cluster.Whenever we stop/restart the cluster we would like to stop/start the port(by using command) which used by the weblogic. Please guide me how to do this ?

Regards,
Gowtham.G

For stopping :

lsof -i : portnumber

or

netstat -apn |grep port

find the corresponding PID for the port and kill it

Personally, I would not assume that killing a process that is linked to a port is going to stop it.

Have you already read the relevant Oracle links:
Shutdown servers in a cluster
and Starting and Stopping Servers

But I guess what you are looking for within the Oracle documentation is:

I would recommend you read Oracle's documentation and/or contacting your Weblogic support organization/supplier. This is an application issue, not AIX.