You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@metron.apache.org by ni...@apache.org on 2016/05/10 21:32:35 UTC

incubator-metron git commit: METRON-129 Fixes for CodeLab README (apsaltis via nickwallen) closes apache/incubator-metron#114

Repository: incubator-metron
Updated Branches:
  refs/heads/master f851554e0 -> d344e2779


METRON-129 Fixes for CodeLab README (apsaltis via nickwallen) closes apache/incubator-metron#114


Project: http://git-wip-us.apache.org/repos/asf/incubator-metron/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-metron/commit/d344e277
Tree: http://git-wip-us.apache.org/repos/asf/incubator-metron/tree/d344e277
Diff: http://git-wip-us.apache.org/repos/asf/incubator-metron/diff/d344e277

Branch: refs/heads/master
Commit: d344e277955fc64a25d29b66d4413761bb52d080
Parents: f851554
Author: apsaltis <ps...@gmail.com>
Authored: Tue May 10 17:31:59 2016 -0400
Committer: Nick Allen <ni...@nickallen.org>
Committed: Tue May 10 17:31:59 2016 -0400

----------------------------------------------------------------------
 .../vagrant/codelab-platform/README.md          | 26 +++++++++++++++++---
 1 file changed, 22 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-metron/blob/d344e277/metron-deployment/vagrant/codelab-platform/README.md
----------------------------------------------------------------------
diff --git a/metron-deployment/vagrant/codelab-platform/README.md b/metron-deployment/vagrant/codelab-platform/README.md
index afc6ab7..288649d 100644
--- a/metron-deployment/vagrant/codelab-platform/README.md
+++ b/metron-deployment/vagrant/codelab-platform/README.md
@@ -16,6 +16,24 @@ As with the Singlenode Full Image, the computer used to deploy Apache Metron wil
  - Python 2.7.11
  - Maven 3.3.9
 
+### Ensure vagrant hostmanager is installed
+
+To check and make sure you have the plugin installed execute the following:
+
+ ```
+ vagrant plugin list
+ ```
+
+If you have it installed you should see the following listed in the output:
+
+  ```
+  vagrant-hostmanager (1.8.1)
+  ```
+If it is not installed, you can install it with the following command:
+
+  ```
+  vagrant plugin install vagrant-hostmanager
+  ```
 
 ### Launch the Metron Development Image
 
@@ -23,7 +41,7 @@ Start the image with the following commands:
 
   ```
   cd metron-deployment/vagrant/codelab-platform
-  ./launch_dev_image.sh
+  ./launch_image.sh
   ```
 
 ### Work with Metron
@@ -36,11 +54,11 @@ As you build out new capabilities for Metron, you will need to re-deploy the Sto
 
 Remember Navigate to the following resources to explore your newly minted Apache Metron environment.
 
- - [Metron](http://node1:8080)
- - [Ambari](http://node1:5000)
+ - [Metron](http://node1:5000)
+ - [Ambari](http://node1:8080)
 
 Connecting to the host through SSH is as simple as running the following command.
 
    ```
    vagrant ssh
-   ```
\ No newline at end of file
+   ```