How to check the application listening ports

Post Reply
User avatar
isscbta
Team Member
Posts: 130
Joined: Mon Jul 19, 2021 1:41 am
Has thanked: 15 times
Been thanked: 3 times

In your SSH, as root, run:

Code: Select all

root@server:~# netstat -tuapen | grep ':303'
For example, that command could show you this output:

Code: Select all

tcp6       0      0 :::3030                 :::*                    LISTEN      1000       210265935  24353/node          
tcp6       0      0 :::3031                 :::*                    LISTEN      1000       201603093  4088/node           
tcp6       0      0 :::3032                 :::*                    LISTEN      1000       163332652  1982/node           
tcp6       0      0 :::3033                 :::*                    LISTEN      1000       203533825  31023/node          
tcp6       0      0 :::3034                 :::*                    LISTEN      1000       203533908  31068/node          
tcp6       0      0 :::3035                 :::*                    LISTEN      1000       211159030  13598/node   

Tags:
Post Reply