How do I quit / exit / stop Xcode Server?

21

2

I have this little hammer up next to volume, power, time, etc. How do I make it go away? The options menu is grayed-out. No menu item to shut it down that I can find.

jeffamaphone

Posted 2017-06-15T04:15:25.543

Reputation: 389

How the heck did this thing start to begin with? I don't recall having started up XCode Server. And why the heck doesn't it have a quit option?? >:C – user124384 – 2019-01-09T21:56:30.797

Answers

27

Open "Activity Monitor" App and Just kill "XCode Server Builder" and also has a server you can kill it.

Activity Monitor Screenshot

hkulekci

Posted 2017-06-15T04:15:25.543

Reputation: 371

7

Just had this problem, I ran the following command in the terminal to fixed it

kill $(ps aux | grep 'Xcode' | awk '{print $2}')

which kills all processes with Xcode in their name.

Commmand from: https://agilewarrior.wordpress.com/2012/06/28/how-to-kill-xcode-from-the-command-line/

tetratuna

Posted 2017-06-15T04:15:25.543

Reputation: 71

1I don't want to kill the IDE though. – jeffamaphone – 2017-06-19T01:52:43.690

1

You can use Activity Monitor app to visualize all your running processes, the select the "Xcode Server" one, and click on the cross icon on the top left. That will kill the process.

Ben G

Posted 2017-06-15T04:15:25.543

Reputation: 111

1

i was killing the process but it was restarting automatically after it, so I opened xcode > preferences > Server and Bots and switched to off:

server and bots preferences

juhlila

Posted 2017-06-15T04:15:25.543

Reputation: 131