...
Resolution
Identify the ports used uses , and look for other processes that are using the same port with netstat
Code Block |
---|
sudo netstat -plten | grep 8080 |
(the sudo may or may not be required depending on whether your ID can run netstat)
This will return results like
...
You can find out which process is using the same port by searching the running processes via ps
Code Block |
---|
ps -ef | grep 1396 |
...