I have the Jenkins server running on my machine.
I did lsof -i :8080
, I took the PID and then I ran sudo kill -9 PID
.
However, when I go to localhost:8080
Jenkins is still up and lsof -i :8080
shows a different PID.
I think some other process might be starting Jenkins all the time.
Can I find out the parent process and kill it?
Or is there a better way to get rid of the process?