Kill a process which is listening on port 8080
In windows you can use taskkill /pid 1896
See the reference at http://technet.microsoft.com/en-us/library/bb491009.aspx
If you are using Git BASH then you can try with below command
taskkill //pid 1896
Not the extra back slash here, otherwise it will throw error of invalid argument.
I hope it helps!!