X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8c1005ef92cffff5a4a9321f3b62da715b141c3d..0bcf6869ed21baf852ed9278413a93df6b002b43:/doc/install/install-shell-server.html.textile.liquid diff --git a/doc/install/install-shell-server.html.textile.liquid b/doc/install/install-shell-server.html.textile.liquid index 1b1a4d9969..ea6df87553 100644 --- a/doc/install/install-shell-server.html.textile.liquid +++ b/doc/install/install-shell-server.html.textile.liquid @@ -12,7 +12,21 @@ Please follow the "API token guide":../user/reference/api-tokens.html to get API h2. Install the Ruby SDK and utilities -If you're using RVM: +First, install the curl development libraries necessary to build the Arvados Ruby SDK. On Debian-based systems: + + +
~$ sudo apt-get install libcurl4-openssl-dev
+
+
+ +On Red Hat-based systems: + + +
~$ sudo yum install libcurl-devel
+
+
+ +Next, install the arvados-cli Ruby gem. If you're using RVM:
~$ sudo /usr/local/rvm/bin/rvm-exec default gem install arvados-cli
@@ -22,27 +36,36 @@ If you're using RVM:
 If you're not using RVM:
 
 
-
~$ sudo gem install arvados-cli
+
~$ sudo -i gem install arvados-cli
 
h2. Install the Python SDK and utilities -On Debian-based systems: +{% assign rh_version = "6" %} +{% include 'note_python_sc' %} + +On CentOS 6 and RHEL 6: -
~$ sudo apt-get install python-arvados-python-client python-arvados-fuse
+
~$ sudo yum install python27-python-arvados-python-client python27-python-arvados-fuse crunchrunner
 
-On Red Hat-based systems: +On other Red Hat-based systems: -
~$ sudo yum install python27-python-arvados-python-client python27-python-arvados-fuse
+
~$ echo 'exclude=python2-llfuse' | sudo tee -a /etc/yum.conf
+~$ sudo yum install python-arvados-python-client python-arvados-fuse crunchrunner
 
-{% include 'note_python27_sc' %} +On Debian-based systems: + + +
~$ sudo apt-get install python-arvados-python-client python-arvados-fuse crunchrunner
+
+
h2. Install Git and curl @@ -76,7 +99,7 @@ Create a token that is allowed to read login information for this VM.
-apiserver:~$ arv api_client_authorization create --api-client-authorization '{"scopes":["GET /arvados/v1/virtual_machines/zzzzz-2x53u-zzzzzzzzzzzzzzz/"]}'
+apiserver:~$ arv api_client_authorization create --api-client-authorization '{"scopes":["GET /arvados/v1/virtual_machines/zzzzz-2x53u-zzzzzzzzzzzzzzz/logins"]}'
 {
  ...
  "api_token":"zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz",
@@ -107,17 +130,28 @@ If you're not using RVM:
 
 Install cron.
 
-On Debian-based systems:
+On CentOS 6 and RHEL 6:
 
 
-
~$ sudo apt-get install cron
+
~$ sudo yum install cronie
+~$ sudo chkconfig crond on
+~$ sudo service crond start
 
-On Red Hat-based systems: +On other Red Hat-based distributions: -
~$ sudo yum install cron
+
~$ sudo yum install cronie
+~$ sudo systemctl enable crond
+~$ sudo systemctl start crond
+
+ + +On Debian-based systems: + + +
~$ sudo apt-get install cron