I have a local instance of Jenkins running on port 8080 on my mac machine. I want to kill this process and have tried doing so, like below :
lsof -i tcp:8080
kill -9 <the pid>
This closes my chrome instance. But when I open Chrome again and go to localhost:8080
, Jenkins is still running over there. Any ideas as to why these commands don't kill it? Also how to kill the process?
Thanks