How to stop Jenkins installed on Mac Snow Leopard?

后端 未结 8 1718
感动是毒
感动是毒 2020-12-12 09:54

I have installed Jenkins executable on OSX, but now I want to stop it running. Whenever I kill it, no matter how, it just restarts immediately.

I\'ve tried using the

相关标签:
8条回答
  • 2020-12-12 10:13

    For 1.505 you can use web api

    http://localhost:8080/exit
    http://localhost:8080/restart
    http://localhost:8080/reload
    
    0 讨论(0)
  • 2020-12-12 10:14

    I had to unload/load the LaunchAgents:

    sudo launchctl unload /Library/LaunchAgents/org.jenkins-ci.plist

    sudo launchctl load /Library/LaunchAgents/org.jenkins-ci.plist

    I'm on Sierra (10.12.3).

    0 讨论(0)
提交回复
热议问题