How do I quit / exit / stop Xcode Server?
Solution 1:
Open "Activity Monitor" App and Just kill "XCode Server Builder" and also has a server you can kill it.
Solution 2:
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/
Solution 3:
i was killing the process but it was restarting automatically after it, so I opened xcode > preferences > Server and Bots and switched to off:
Solution 4:
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.