Pivotal/BOSH
From r00tedvw.com wiki
(Difference between revisions)
Line 2: | Line 2: | ||
=Installing on Ubuntu= | =Installing on Ubuntu= | ||
I'm installing BOSH on an Ubuntu 16.04 LTS server vm running on top an ESXi 6.0u2 host.<br> | I'm installing BOSH on an Ubuntu 16.04 LTS server vm running on top an ESXi 6.0u2 host.<br> | ||
+ | ==BOSH v3 CLI== | ||
Start by updating your ubuntu vm. | Start by updating your ubuntu vm. | ||
<nowiki>~$ sudo apt update && sudo apt upgrade -y</nowiki> | <nowiki>~$ sudo apt update && sudo apt upgrade -y</nowiki> |
Revision as of 14:35, 25 May 2018
BOSH
Installing on Ubuntu
I'm installing BOSH on an Ubuntu 16.04 LTS server vm running on top an ESXi 6.0u2 host.
BOSH v3 CLI
Start by updating your ubuntu vm.
~$ sudo apt update && sudo apt upgrade -y
Next lets install a few dependencies.
~$ sudo apt install -y build-essential zlibc zlib1g-dev ruby ruby-dev openssl libxslt-dev libxml2-dev libssl-dev libreadline6 libreadline6-dev libyaml-dev libsqlite3-dev sqlite3 git gnupg2
Download the binary, make it executable, and move it to your path. Verify you have it installed.
~$ curl -Lo ./bosh https://s3.amazonaws.com/bosh-cli-artifacts/bosh-cli-3.0.1-linux-amd64 ~$ chmod +x ./bosh ~$ sudo mv ./bosh /usr/local/bin/bosh ~$ bosh -v version 3.0.1-712bfd7-2018-03-13T23:26:43Z Succeeded