Solaris Ports


 
Thread Tools Search this Thread
Operating Systems Solaris Solaris Ports
# 1  
Old 06-13-2011
Solaris Ports

Hi can someone Explain me about Solaris Ports orientation, Like which all ports OS uses and which all is left for applications?
# 2  
Old 06-13-2011
You mean TCP/IP ports? Maybe 'netstat -a -i' ?
This User Gave Thanks to neutronscott For This Post:
# 3  
Old 06-14-2011
The ephemeral port range on Solaris is 32768 through 65535
This User Gave Thanks to fpmurphy For This Post:
# 4  
Old 06-14-2011
This User Gave Thanks to itkamaraj For This Post:
# 5  
Old 06-14-2011
Thanks a lot to itkamaraj ,the link is really useful...
but in case if a port is overlaped by 2 applications in a Solaris 10 box , like app A works on port 7397 -8045 and app B requires specific port 8031 . How to make port 8031 free for App B from solaris Point . Is there any command in solaris 10 to do so ?
# 6  
Old 06-15-2011
need to find out which application and process is using that port

Code:
 
lsof | grep 8031

in the above command you can easily get the process id. From that you can find out the process which is using that port.

if you want that port.. you can kill the application which currently using that port.
# 7  
Old 06-18-2011
its not possible to kill an application to get the port..as it may lead other abnormalies..any other way so tat App A wont use that port (8031) alone and let it free for App B.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Processes listening on Ports(Solaris)

Howdy Experts, This is my first post here and I am posting because I have not been able to find an answer for this question. How do you find out what process is listening on a given port? I do not have "lsof" available and how do we find this out without logging in as Root. I know that this... (5 Replies)
Discussion started by: KingaKoopa
5 Replies

2. Solaris

Blocking outgoing connection to ports/host in solaris

Hi, I want to block all outgoing connection ( the IMAP ) to my exchnage . I have to do it in my solaris server; from solaris host no outgoing connection can be made to the imap server. Please help me to configure that. I am new in solaris. Kind regards, Akhtar (2 Replies)
Discussion started by: akhtarbd
2 Replies

3. Solaris

Open ports in solaris 10

hi guys, may i know the exact steps to open a port in solaris.i have some rough idea - which is adding the port number in /etc/services. but i am not sure the correct conventions, steps or any other steps. kindly advise.thanks guys ! (1 Reply)
Discussion started by: cromohawk
1 Replies

4. Cybersecurity

Ports open on solaris/linux

Hi, I am trying to close all possible ports on my solaris and linux servers. I am stuck on the following ports on both Solaris 10 (local zone) and Linux (Suse) servers. Here is nmap output : PORT STATE SERVICE 22/tcp open ssh 80/tcp open http 1720/tcp open H.323/Q.931... (6 Replies)
Discussion started by: manifesto
6 Replies

5. Solaris

Ports on Solaris

please provide info. @ how to open ports in solaris? and how to check that which port assigns with which process. (5 Replies)
Discussion started by: ajitkraj
5 Replies

6. Solaris

open ports solaris 8

Hello, I have a number of Solaris 8 Sun servers that have open ports that I cannot identify. I see some with 1013-1023 (which are reserved ports according to the IANA. Lsof does not identify these. I rebooted the server and they went off, but this morning I saw they were all back on again. Any... (1 Reply)
Discussion started by: csgonan
1 Replies

7. UNIX for Dummies Questions & Answers

open ports solaris 8

Hello, I have a number of Solaris 8 Sun servers that have open ports that I cannot identify. I see some with 1012-1020 (which are reserved ports according to the IANA. Lsof does not identify these. One server has all these on and one server just has 1017. *.1023 ... (3 Replies)
Discussion started by: csross
3 Replies

8. UNIX for Dummies Questions & Answers

Nonprivileged ports on solaris

Is there a way to change a privileged TCP port (say 80) to a nonprivileged one.. (9 Replies)
Discussion started by: sssow
9 Replies

9. UNIX for Dummies Questions & Answers

aggregate ethernet ports under Solaris

I have been looking for info on how to aggregate 2 ore 3 NIC's into into one big pipe. Any advice would be appreciated. -Chuck (4 Replies)
Discussion started by: 98_1LE
4 Replies
Login or Register to Ask a Question