Crashplan on Windows has a taskbar icon that lets you put the backup daemon to sleep, but the Mac OS X port doesn’t seem to have this functionality.

You can’t just kill the backup daemon process. The OS X “launchd” superviser daemon will see the process go away, and immediately respawn the process. You have to tell launchd to stop the backup daemon by using the launchctl command:

sudo launchctl unload /Library/LaunchDaemons/com.crashplan.engine.plist

The crashplan daemon will start again after you reboot, or you manually restart it:

sudo launchctl load /Library/LaunchDaemons/com.crashplan.engine.plist

Related posts:

  1. Apache2, PHP, and MySQL on Mac OS X using MacPorts
    1. Install MacPorts Follow the instructions here: http://www.macports.org/install.php. 2. Install apache2 sudo port install apache2 Note that the macports instructions suggest installing the launchctl script now, but we’ll do that......
  2. Installing CrashPlan on Ubuntu 9.04 Server Edition
    Although rsnapshot is super for linux-to-linux backups, I’ve found CrashPlan to work very well as a backup solution for my family’s windows and mac boxes. The CrashPlan installation works pretty......