You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2016/02/01 18:44:37 UTC

[48/50] brooklyn-docs git commit: Improved SSH instructions. Changed brooklyn version. (Update Script Miss.)

Improved SSH instructions. Changed brooklyn version. (Update Script Miss.)


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/commit/d696a2ee
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/tree/d696a2ee
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/diff/d696a2ee

Branch: refs/heads/0.5.0
Commit: d696a2ee3542e0f5959c3325eae6c7efe0e98dfb
Parents: eddd955
Author: David Toy <d...@vidtoy.co.uk>
Authored: Mon May 13 16:39:03 2013 +0100
Committer: David Toy <d...@vidtoy.co.uk>
Committed: Mon May 13 16:39:03 2013 +0100

----------------------------------------------------------------------
 docs/use/guide/quickstart/index.md | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/d696a2ee/docs/use/guide/quickstart/index.md
----------------------------------------------------------------------
diff --git a/docs/use/guide/quickstart/index.md b/docs/use/guide/quickstart/index.md
index 8f377e0..4d25430 100644
--- a/docs/use/guide/quickstart/index.md
+++ b/docs/use/guide/quickstart/index.md
@@ -21,7 +21,7 @@ Untar the tgz. Each Distro is timestamped, so your filename will be different.
 
 	$ tar -zxf brooklyn-dist-<version>-<timestamp>-dist.tar.tar.gz
 
-This will create a brooklyn-\<version\> folder. At the time of writing this was `brooklyn-0.5.0-SNAPSHOT`.
+This will create a brooklyn-\<version\> folder. At the time of writing this was `brooklyn-0.5.0`.  
 
 Let's setup some paths for easy commands.
 
@@ -65,14 +65,15 @@ Download the template [catalog.xml](catalog.xml) (to `~/.brooklyn`).
 
 catalog.xml is catalog of application or service blueprints. The example file contains two demos which will be automatically downloaded from the web if you run them.
 
-Edit this file (text editor) and check that the links to the demo applications' .jars are valid. At the time of writing these were for version `0.5.0-SNAPSHOT`, but if this has changed you may need to update the links.
+Edit this file (text editor) and check that the links to the demo applications' .jars are valid. At the time of writing these were for version `0.5.0`, but if this has changed you may need to update the links.
 
 ### SSH Key
-If this is a new machine, or you haven't used SSH before, you will need to create keys for Brooklyn to use. (Accept all default options, as this will setup password-less keys in the default location and Brooklyn will find them.)
+If this is a new machine, or you haven't used SSH before, you will need to create keys for Brooklyn to use, and add them your list of authorized_keys (for deployment to localhost). 
 
-	$ ssh-keygen -t rsa
+	$ ssh-keygen -t rsa -N "" -f ~/.ssh/id_rsa
+	$ cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
 
-It is advisable *not* to set a password for this key. If you are using an existing key that already has a password please add it to your `brooklyn.properties` file.
+(If you are using an existing key SSH that has a password, or is not located at `~/.ssh/id_rsa`, please supply the `brooklyn.localhost.private-key-file` and `brooklyn.localhost.private-key-passphrase` in your `brooklyn.properties` file.)
 
 ### 3-2-1 Go!