Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable Jenkins autostart on OS X

Tags:

macos

jenkins

I have a prototyping instance of Jenkins (most recent version) on my local machine (OS X 10.10). It starts every time I boot my machine.

How can I disable this autostart?

I want to start it manually only when I need it.

like image 998
automatictester Avatar asked Jul 10 '15 12:07

automatictester


People also ask

How do I stop Jenkins from running on my Mac?

To stop Jenkins, you can go to the terminal window where you started the Docker container and hit Command + C. This will stop the process running the Docker container thus stopping Jenkins.

How do I know if Jenkins is running on my Mac?

Click the Terminal icon to open the app. By default, Jenkins runs on port 8080. 2. Check if the server was started properly by browsing to http://localhost:8080/.


1 Answers

All right, have it sorted now. launchctl unload -w /Library/LaunchDaemons/org.jenkins-ci.plist did the trick. Jenkins is no longer running after reboot. -w option was the key.

like image 133
automatictester Avatar answered Oct 11 '22 02:10

automatictester