Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Couldn't register with the bootstrap Server

I just changed some code in my program and got this error:

Couldn't register com.yourcompany.XXX with the bootstrap server. Error: unknown error code.

This generally means that another instance of this process was already running or is hung in the debugger.Program received signal: “SIGABRT”.

I tried restoring my program to a version that worked, rebooted, restarted, empty caches and rebuild on versions that even worked before.

Any help would be appreciated.

like image 218
MadProfit Avatar asked Jul 30 '10 21:07

MadProfit


3 Answers

I was able to recover from this by unplugging the iPad, powering it down and back up, clearing all XCode caches and targets, and doing a clean build. I'm running XCode 3.5.4 and iOS 4.2.1 Hope this helps someone. -Mike

UPDATE: Same problem running Xcode 4.3 and iOS5 - just power-cycle the device.

like image 64
Rayfleck Avatar answered Nov 11 '22 21:11

Rayfleck


You might wish to kill all Simulator processes, that can cause this error as well.

Here's a one-liner to kill 'em all:

kill -9 `ps ax | grep Simulator | grep -v grep | awk '{print $1}'` 

Or more concise, like @brianegge mentions as a comment:

killall -9 Simulator
like image 25
Pål Brattberg Avatar answered Nov 11 '22 19:11

Pål Brattberg


My solution was to restart the ipad, wait a while and try again.

like image 15
theprof Avatar answered Nov 11 '22 21:11

theprof



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!