Administrators, MozillaWiki team
918
edits
(Created page with "= Initial setup for labs = == Machine Setup == 3 machines setup: * vcap-controller1 (controls and runs the whole thing) * vcap-router1 (public request router) * vcap-dea1 ...") |
No edit summary |
||
| Line 1: | Line 1: | ||
= Initial setup for labs = | = Initial setup for labs = | ||
== Machine | == Machine Roles == | ||
3 machines setup: | 3 machines setup: | ||
| Line 9: | Line 9: | ||
Fronted by Zeus on *.vcap.mozillalabs.com | Fronted by Zeus on *.vcap.mozillalabs.com | ||
== Machine Setup == | |||
All servers are Ubuntu 10.04.3 LTS installs | |||
Initial setup: | |||
# Create dedicated vcap user | |||
$> useradd -m vcap | |||
$> su - vcap | |||
$> mkdir $HOME/cloudfoundry | |||
$> cd $HOME/cloudfoundry | |||
# Get the current development code | |||
$> git clone git://github.com/cloudfoundry/vcap.git | |||
$> cd vcap | |||
$> git submodule init | |||
$> git submodule update --recursive | |||