Unable to deploy project even though port is not used by other project

0
  Hi, Even though the port is not used by other project still it is showing error message that port is used by other project. even if I have changed the server port number still it showing the same error message. How to resolve this issue?
asked
2 answers
1

Hi Sayali,
Go to project Setting → go to configuration window → double click a pop up window opens
→ go to server tab → you will be able to see run time port and admin port → change your admin port
eg:9090  and change your runtime port eg:8087 

hope it helps!
 

answered
1

Rebooting your computer will solve it, but if you are looking for a better way open a command-prompt and try these commands:

netstat -ano | find ":8080"
TASKKILL /PID <processid> -f

 

answered