Find port by following way
lsof -w -n -i tcp:8080
fuser -n tcp 8080
Now you have some integer value which is the process of the port
Now kill it by
kill -9 XXXX
lsof -w -n -i tcp:8080
fuser -n tcp 8080
Now you have some integer value which is the process of the port
Now kill it by
kill -9 XXXX
No comments:
Post a Comment