Blocking/starting a Port in AIX 6.1


 
Thread Tools Search this Thread
Operating Systems AIX Blocking/starting a Port in AIX 6.1
# 1  
Old 12-20-2012
IBM 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
# 2  
Old 12-20-2012
For stopping :

Code:
lsof -i : portnumber

or

Code:
netstat -apn |grep port

find the corresponding PID for the port and kill it
# 3  
Old 12-20-2012
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:
Quote:
To stop an Administration Server, use the following script:
MW_HOME/user_projects/domains/domain_name/bin/stopWeblogic.sh username password [admin_url]
I would recommend you read Oracle's documentation and/or contacting your Weblogic support organization/supplier. This is an application issue, not AIX.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

How to release port on AIX?

Hello all, I need your help with any command to release a port on AIX. Thanks for all. (5 Replies)
Discussion started by: Mcipamo
5 Replies

2. Programming

Which are blocking and non-blocking api's in sockets in C ?

among the below socket programming api's, please let me know which are blocking and non-blocking. socket accept bind listen write read close (2 Replies)
Discussion started by: VSSajjan
2 Replies

3. UNIX for Advanced & Expert Users

Help with AIX port limit

Hi guys, I have a problem need to solve urgently, please help me, any suggestion will be great. When my workmates installed a control-m agent in an AIX 6.1 OS, they got an error below: Port exceeded maximum allowed value. No available port found in the specified range up to 65535. ... (2 Replies)
Discussion started by: Lucas_0418
2 Replies

4. IP Networking

blocking traffic to destination network by port

I am trying to block ALL traffic except when from ports 9100,22,23 to destination network 192.0.0.0 (my WAN): 2 networks 192.0.3.0 with static route to 192.0.0.0 Shouldn't this work?: iptables -A INPUT -p tcp -d 192.0.0.0/24 --dport 22 -j ACCEPT iptables -A INPUT -p tcp -d 192.0.0.0/24... (3 Replies)
Discussion started by: herot
3 Replies

5. AIX

Who's using my port in AIX

Hello Gurus, I was trying to find who's using my port and got below answer from a IBM website. But the problem with the below answer is I need a root to run the rmsock, is there any other alternative to find out who is using my port with out a root access?? 1. netstat -Aan | grep <port... (1 Reply)
Discussion started by: tenderfoot
1 Replies

6. Infrastructure Monitoring

Solaris 10 - starting snmpdx at boot time on a port other than 161

Hi All, Can we start the snmpdx on another port at boot time on solaris 10 instead of the default 161 port? What is the configuration file to set this? We can make it run in a different port after the system boots up by using snmpdx -p port_number This requirement is because i have an... (1 Reply)
Discussion started by: Mr. Zer0
1 Replies

7. AIX

How to open a port in AIX

Hi Guys, i am trying to open a port in AIX. but i am not able to get the command for this. AIX is not having the iptables file present. So please any body can tell me how to open a port in AIX... Thanks sanju (2 Replies)
Discussion started by: sanju_d1231
2 Replies

8. AIX

error while starting SSH on AIX

Hi all while giving command ssh start i am getting following error exec(): 0509-036 Cannot load program ssh because of the following errors: 0509-150 Dependent module /opt/freeware/lib/libcrypto.a(libcrypto.so.0.9.7) could not be loaded. 0509-152 Member... (4 Replies)
Discussion started by: kmalla
4 Replies

9. AIX

Problem starting sshd on AIX

I just installed SSH on an AIX machine: > lslpp -l openssh.base.server Fileset Level State Description ---------------------------------------------------------------------------- Path: /usr/lib/objrepos openssh.base.server 4.1.0.5301 COMMITTED Open... (1 Reply)
Discussion started by: outtacontrol
1 Replies

10. Cybersecurity

RedHat9:How to find what is blocking the port 1526/tcp

I'm trying to configure IDS9.40 on Ret Hat 9. The server has opened the port 1526/tcp nmap (nmap -sT -O linux) reports correctly that the port is open. However, portqry (portqry.exe -n 192.168.0.101 -e 1526 -p TCP) reports that the port is closed for connection: TCP port 1526 (turbo... (0 Replies)
Discussion started by: Juhasz Lajos
0 Replies
Login or Register to Ask a Question