On 26-Jun-2009, at 06:18, Xia Guowen wrote:
Those three ports actually belong to the same process.
# netstat -lnutp |grep 80
tcp 0 0 127.0.0.1:8005
0.0.0.0:* LISTEN 29907/java
tcp 0 0 0.0.0.0:8009
0.0.0.0:* LISTEN 29907/java
tcp 0 0 0.0.0.0:8080
0.0.0.0:* LISTEN 29907/java
ipv6 is disable.
This is not the same as what you were showing in the previous posting.
In the previous posting you
showed:
tcp 0 0 :::
8080 :::* LISTEN
which is I believe is indication that it bound to IPv6. Maybe you
disactivated IPv6 and this caused
the port to be unbound?
BTW Another tool that I find useful is lsof (list open files):
lsof -p<process id> | grep TCP
or for the port:
lsof -i:<port>
André-John
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org