interrobeng‽

ad astra per alas porci

Resolving Docker Port 4243 Conflict With CrashPlan

| Comments

Hit a little snag while initializing boot2docker:

1
2
$ boot2docker init
[2014-02-18 12:34:56] DOCKER_PORT=4243 on localhost is used by an other process! Change the port to a free port.

lsof shows it’s CrashPlan conflicting:

1
2
3
$ sudo lsof -i :4243
COMMAND     PID USER   FD   TYPE             DEVICE SIZE/OFF NODE NAME
CrashPlan 20270 root   79u  IPv4 0x3c409a82447e9111      0t0  TCP localhost:4243 (LISTEN)

Seems like Docker will be changing their default port soon. In the meantime, here’s how to change CrashPlan backup service’s port on OS X:

Comments