Getting correct port number from process id


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Getting correct port number from process id
# 1  
Old 01-08-2020
Getting correct port number from process id

Hi All,


i am trying to find the Jobss port number(either default port number or any other port number assigned) from the running process id.


But it's giving me multiple port numbers when searching with netstat command. Can someone help me in finding the correct port number from the process id.


Below is the process id for Jboss :


Code:
# ps -ef |grep jboss
root      2045  2001 18 15:49 pts/0    00:00:07 /opt/jdk1.8.0_161/bin/java -D[Standalone] -server -Xms64m -Xmx512m -XX:MetaspaceSize=96M -XX:MaxMetaspaceSize=256m -Djava.net.preferIPv4Stack=true -Djboss.modules.system.pkgs=org.jboss.byteman -Djava.awt.headless=true -Dorg.jboss.boot.log.file=/opt/wildfly/standalone/log/server.log -Dlogging.configuration=file:/opt/wildfly/standalone/configuration/logging.properties -jar /opt/wildfly/jboss-modules.jar -mp /opt/wildfly/modules org.jboss.as.standalone -Djboss.home.dir=/opt/wildfly -Djboss.server.base.dir=/opt/wildfly/standalone



Code:
# netstat -anlp |grep 2045
tcp        0      0 0.0.0.0:9990            0.0.0.0:*               LISTEN      2045/java
tcp        0      0 0.0.0.0:8080            0.0.0.0:*               LISTEN      2045/java
unix  2      [ ]         STREAM     CONNECTED     43013    2045/java
unix  2      [ ]         STREAM     CONNECTED     43029    2045/java




can someone help in finding the correct port number from the process id.
Moderator's Comments:
Mod Comment
Please use code tags.

Last edited by Peasant; 01-08-2020 at 12:23 PM.. Reason: Added tags.
# 2  
Old 01-08-2020
Not clear what exactly you want. How far would this get you?
Code:
netstat -anlp | awk -v"PID=$(pgrep jboss)" '$NF !~ PID {next} $(NF-1) == "LISTEN" {n=split ($4, T, "[.:]"); print T[n]} $(NF-2) == "CONNECTED" {print $(NF-1)}'
9990
8080
43013
43029

# 3  
Old 01-08-2020
Hi Rudi,


i need to find exact/correct port number from the process id.
# 4  
Old 01-08-2020
Both are exact ports.

Currenty jboss is running in standalone mode, with 9990 being management port (jboss cli and HTTP access for deploying restarting etc...)
And 8080 being application served.
In future you can configure it to serve additional JVM with application on port 8180, for instance, then 3 ports would be 'exact' so to say.

Also, on systems configured with IPv6, you might get even more additional exact ports Smilie

Perhaps using lsof ?
Code:
lsof -aPp $(pgrep jboss) -iTCP -sTCP:LISTEN -i4


Hope that helps
Regards
Peasant.

Last edited by Peasant; 01-08-2020 at 12:56 PM.. Reason: Added lsof example
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

How to find port number wwn of particular port on dual port HBA,?

please find the below o/p for your reference bash-3.00# fcinfo hba-port HBA Port WWN: 21000024ff295a34 OS Device Name: /dev/cfg/c2 Manufacturer: QLogic Corp. Model: 375-3356-02 Firmware Version: 05.03.02 FCode/BIOS Version: BIOS: 2.02; fcode: 2.01;... (3 Replies)
Discussion started by: sb200
3 Replies

2. IP Networking

Tcp ip port open but no such process (merged: Release A Port)

i want to kill a tcp connection by killing its pid with netstat -an i got the tcp ip connection on port 5914 but when i type ps -a or ps-e there is not such process running on port 5914 is it possible that because i do not log on with proper user account i can not see that process running? (30 Replies)
Discussion started by: alinamadchian
30 Replies

3. Solaris

To get process id for port number

Hi All, How to get the list of port numbers and it is correspoding proceses id that are currently running on. Please suggest and it is urgent Thanks. (7 Replies)
Discussion started by: rbalaj16
7 Replies

4. Shell Programming and Scripting

What is the correct way to process files

Is there a general way I can use so as to process paths/files from your terminal without the need to backslash things? Till recently I used to use touch "file_here" but it does not work if file_here contains any of the characters ` and ", I still need to backslash them if I want to make the... (1 Reply)
Discussion started by: hakermania
1 Replies

5. Shell Programming and Scripting

Shell Script to Kill Process(number of process) Unix/Solaris

Hi Experts, we do have a shell script for Unix Solaris, which will kill all the process manullay, it used to work in my previous env, but now it is throwing this error.. could some one please help me to resolve it This is how we execute the script (and this is the requirement) ... (2 Replies)
Discussion started by: jonnyvic
2 Replies

6. Programming

Problem in getting the correct number from the string.

I have string named texts which consist of section label “BOOK-SEC-“. Section starts from 1 to n, where n is a number. For this example conside the value of n is 9. That is, the string variable looks like “BOOK-SEC-1... (2 Replies)
Discussion started by: SamRoj
2 Replies

7. Shell Programming and Scripting

Find port number being used by a given process id

Unix gurus, I have a requirement wherein I want to find the port number for a given process id. Is it possible? If so how? TIA, Regards, Praveen (3 Replies)
Discussion started by: sunpraveen
3 Replies

8. UNIX for Dummies Questions & Answers

Find what process on port number

Hi, I am on a Sun Solaris and I want to find out which process is allocated on a certain port. How can I do that? BR Andreas (4 Replies)
Discussion started by: mr_andrew
4 Replies

9. UNIX for Dummies Questions & Answers

How to find the port number of the oracle process

Hi Unix Gurus, Can we find out the port number used by the oracle process is running.I tried to search the forum but coudnt find. Can anyone help me out with the command (2 Replies)
Discussion started by: thana
2 Replies

10. Shell Programming and Scripting

checking invoice number not correct

hello, I have the following script to check the invoice number is in order or not. However, it cannot show out the correct information. My expect output show below and I would like to only list out the NOT IN SEQUENCE inovice number (not included "ok") #!/bin/sh start=1 for file_number in... (8 Replies)
Discussion started by: happyv
8 Replies
Login or Register to Ask a Question