X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e0ab53eaacc78f74e3f446f2cd5f58b8add29898..f7e00eb55fbcc41b8cd1f416344ad4abdb020bc0:/doc/install/install-shell-server.html.textile.liquid?ds=sidebyside diff --git a/doc/install/install-shell-server.html.textile.liquid b/doc/install/install-shell-server.html.textile.liquid index c760e7d764..5383ad44ec 100644 --- a/doc/install/install-shell-server.html.textile.liquid +++ b/doc/install/install-shell-server.html.textile.liquid @@ -8,14 +8,14 @@ There is nothing inherently special about an Arvados shell server. It is just a h2. Install API tokens -Please follow the "API token guide":{{site.baseurl}}/user/reference/api-tokens.html to get API tokens for your user and install them on your shell server. We will use those tokens to test the SDKs as we install them. +Please follow the "API token guide":../user/reference/api-tokens.html to get API tokens for your Arvados account and install them on your shell server. We will use those tokens to test the SDKs as we install them. h2. Install the Ruby SDK and utilities If you're using RVM: -
~$ sudo rvm-exec gem install arvados-cli
+
~$ sudo /usr/local/rvm/bin/rvm-exec default gem install arvados-cli
 
@@ -46,13 +46,11 @@ On Red Hat-based systems: h2. Update Git Config -Configure git to use the ARVADOS_API_TOKEN environment variable to authenticate to gitolite. - -Execute the following commands to setup the needed configuration. +Configure git to use the ARVADOS_API_TOKEN environment variable to authenticate to arv-git-httpd. We use the @--system@ flag so it takes effect for all current and future user accounts. It does not affect git's behavior when connecting to other git servers.
-~$ git config 'credential.https://git.{{ site.arvados_api_host }}/.username' none
-~$ git config 'credential.https://git.{{ site.arvados_api_host }}/.helper' '!cred(){ cat >/dev/null; if [ "$1" = get ]; then echo password=$ARVADOS_API_TOKEN; fi; };cred'
+~$ sudo git config --system 'credential.https://git.uuid_prefix.your.domain/.username' none
+~$ sudo git config --system 'credential.https://git.uuid_prefix.your.domain/.helper' '!cred(){ cat >/dev/null; if [ "$1" = get ]; then echo password=$ARVADOS_API_TOKEN; fi; };cred'