Node install failure
-
perl: warning: Falling back to the standard locale ("C").
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
Selecting previously unselected package docker-engine.
(Reading database ... 35737 files and directories currently installed.)
Preparing to unpack .../docker-engine_1.11.1-0~wily_amd64.deb ...
Unpacking docker-engine (1.11.1-0~wily) ...
Processing triggers for man-db (2.7.4-1) ...
Processing triggers for systemd (225-1ubuntu9) ...
Setting up docker-engine (1.11.1-0~wily) ...
Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details.
invoke-rc.d: initscript docker, action "start" failed.
dpkg: error processing package docker-engine (--configure):
subprocess installed post-installation script returned error exit status 1
Processing triggers for systemd (225-1ubuntu9) ...
Errors were encountered while processing:
docker-engine
E: Sub-process /usr/bin/dpkg returned an error code (1)
An error occured while installing, halting...
root@superdimensions:~#
-
looks like your trying to use docker on an unsupported machine. please try installing without docker.
-
This is actually an error in the docker install script. The Scales auto-deploy uses the official docker install method, (https://get.docker.com), and it looks like the install is failing because you do not have a locale set.
First make sure you have the locales package:sudo apt-get install locales
If you did not have locales installed then it should prompt you during the install to choose a locale, if it does not or you had locales installed already you can do:
sudo dpkg-reconfigure locales
Hope this helps.