Answers for "java address already in use"

3

address already in use

# To see ports in use
sudo lsof -i -P -n | grep LISTEN 
sudo netstat -tulpn | grep LISTEN
Posted by: Guest on January-27-2021
0

address already in use :::8081 windows

netstat -a -n -o 
//then find the pid which is running in this port and run 
taskkill /F /PID [pidnumber]
Posted by: Guest on October-10-2020

Code answers related to "java address already in use"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language