First of all, we need to find out the process id also known as PID of the running process on a specific port. For example, a process is running on port 3000. To find its process id, execute:
lsof -t -i:4200
63562
Now you have the PID '63562' of the process...
Read More ⟶