Tagged Questions
2
votes
4answers
281 views
How do I know what service is running on a particular port in linux?
I am trying to run weblogic server on my linux machine and I am getting the following error :
ERROR: transport error 202: bind failed: Address already in use
ERROR: JDWP Transport dt_socket failed to ...
3
votes
3answers
565 views
What's the easiest way to find an unused local port?
What's the easiest way to find an unused local port?
Currently I'm using something similar to this:
port=$RANDOM
quit=0
while [ "$quit" -ne 1 ]; do
netstat -a | grep $port >> /dev/null
if ...
4
votes
3answers
287 views
How can I know the process name which is opening a tcp port?
I have two linux servers. Let's say they are C and S.
C is client of S
On my S machine, I type.
$ netstat -an | grep ESTABLISHED
tcp 0 0 192.168.1.220:3306 C:57010 ...
1
vote
0answers
73 views
Information about the 1630/master app
When I run
$ sudo netstat -a --programs | grep LISTENING | grep 1630
I will get this output. Do you know what good are processes running under this app name? Why they I running on my system and if ...
1
vote
3answers
180 views
How can I identify processes that use network facilities, and can they be killed?
In the output of
netstat -a | grep LISTEN
there are usually a lot of processes. How (where) can I find out information about them, what is their purpose in the system and if I can kill them? Which ...
2
votes
2answers
343 views
Per Socket network Buffer queues utilization
Is there a way to get a per-socket send and receive Queues utilization on Solaris similar to the way that Linux' netstat displays it?
Example on Linux:
Proto Recv-Q Send-Q Local Address ...
2
votes
3answers
2k views