Check if port 8080 is occupied in Linux
Run this command:
netstat -tulpn | grep :8080
if you see a process with id
kill the process by running this command:
sudo kill -9 <process id>
Run this command:
netstat -tulpn | grep :8080
if you see a process with id
kill the process by running this command:
sudo kill -9 <process id>
Comments
Post a Comment