X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b1ef43a1dbb4a66e1646fc68ac88ff6d54026ac1..bb7d7bd789d2fb71bc383fd33c74d084f6a82120:/doc/install/install-compute-node.html.textile.liquid diff --git a/doc/install/install-compute-node.html.textile.liquid b/doc/install/install-compute-node.html.textile.liquid index aa4f37d639..b1e377aa8e 100644 --- a/doc/install/install-compute-node.html.textile.liquid +++ b/doc/install/install-compute-node.html.textile.liquid @@ -8,6 +8,8 @@ h2. Install dependencies First, "add the appropriate package repository for your distribution":{{ site.baseurl }}/install/install-manual-prerequisites.html#repos. +{% include 'note_python27_sc' %} + On Debian-based systems: @@ -22,8 +24,6 @@ On Red Hat-based systems: -{% include 'note_python27_sc' %} - h2. Install Docker Compute nodes must have Docker installed to run jobs inside containers. This requires a relatively recent version of Linux (at least upstream version 3.10, or a distribution version with the appropriate patches backported). Follow the "Docker Engine installation documentation":https://docs.docker.com/ for your distribution. @@ -152,8 +152,7 @@ if ! test -f /root/node.json ; then import arvados, json, socket fqdn = socket.getfqdn() hostname, _, domain = fqdn.partition('.') -ip_address = socket.gethostbyname(fqdn) -node = arvados.api('v1').nodes().create(body={'hostname': hostname, 'domain': domain, 'ip_address': ip_address}).execute() +node = arvados.api('v1').nodes().create(body={'hostname': hostname, 'domain': domain}).execute() with open('/root/node.json', 'w') as node_file: json.dump(node, node_file, indent=2) EOF