Results 1 to 6 of 6
hello.
how would i know if a certain port is already in use?
and how can i stop it?
i need to know if my port 8084 is already used ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 06-29-2005 #1Just Joined!
- Join Date
- Jun 2005
- Posts
- 9
Port already in use?
hello.
how would i know if a certain port is already in use?
and how can i stop it?
i need to know if my port 8084 is already used by my tomcat server...
and if so i need to kill the process... pls help..
- 06-29-2005 #2Just Joined!
- Join Date
- Apr 2005
- Location
- Atlanta
- Posts
- 55
Re:
You can use an online port scanner, or just use a downloadable port scanner and scan your loopback address.
- 06-30-2005 #3Just Joined!
- Join Date
- Jun 2005
- Posts
- 9
hello. i was looking for something like this :
but thanks anyway for your tym..Code:netstat -nap | grep 8084
- 07-05-2005 #4Just Joined!
- Join Date
- Dec 2004
- Posts
- 9
1. u can use
to test if a port is opening.telnet 127.0.0.1 8084
2. use kill to kill a proccess
kill -9 the pid
- 07-05-2005 #5
Use
to lock it.Code:/sbin/iptables -I FORWARD -p tcp --dport 8084 -j DROP
- 07-06-2005 #6Just Joined!
- Join Date
- Jun 2005
- Posts
- 9
hi. thanks for the replies..really helpful.. thanks a lot.


Reply With Quote
