To resolve this issue on mac there are 3 steps
- First need to find
PIDusing below command linesudo lsof -i :portNumber// put your using portNumber here - Now it will ask you password. After enter password you will get
PID. - Then run below command
kill -9 PID// put the PID you get above
Thanks

Top comments (0)