>

instant-thinking.de

just enough to get you started and leave you confused

Crashplan - Fix "Unable to connect to backup destination" error

| Kommentare

So, I am in the middle of ripping and encoding all my DVDs to h.264 files living in iTunes. 200 DVDs and some files which were lying around in various formats. This leads to around a Terabyte of additional data on my Mac mini.

Crashplan, my offsite backup solution of choice, did not cope too well with this1. It kept displaying Unable to connect to backup destination for days on end. Turns out, it needed a bit more RAM to keep up with the new piles of data.

To get things going again, first stop the crashplan daemon:

stop the crashplan daemon
1
sudo launchctl unload /Library/LaunchDaemons/com.crashplan.engine.plist

Next, take your favorite editor and point it with sudo to edit /Library/LaunchDaemons/com.crashplan.engine.plist. This XML-file is responsible for some parameters of the crashplan daemon. Look for the line:

512m
1
<string>Xmx512m</string>

and change it to:

1024m
1
<string>Xmx1024m</string>

You just doubled the ammount of RAM Crashplan can use.

Save and close the file and restart the crashplan daemon with:

start the crashplan daemon
1
sudo launchctl load /Library/LaunchDaemons/com.crashplan.engine.plist

Crashplan should now manage to pump your data to your safe offsite backup destination.

(via: After Hours Projects)

  1. Also, my 2 TB hard disk decided to die halfway through the rips. Good thing there are local backups, too…

Comments