I am using Ubuntu 20.04 along with JDK-8.
I have installed Tomcat9 for making Web Application in net-beans but when ever i start tomcat9 it shows port 8080 is busy.
I ran following command
# netstat -tulpn | grep 8080
and killed the process using
# kill -9 <process_id>
but after that when I start tomcat9 it shows the server port 8080 is already in use. and I again killed the process but another process again starts on port 8080 immediately and I can't start the Tomcat9.
I tried by changing port number but still error is same.
Can anyone tell me where's problem occurring and what should i do now?