Install Guide: fix ssh command

* Identity file is not mykey, but ~/.ssh/id_rsa (the default).
* CirrOS demands login as user cirros, not user root.

backport: havana
Change-Id: Ie707a7a35c98bc85993668b6d7576e99380b2bc3
This commit is contained in:
Sheldon Hearn
2013-10-23 10:43:41 +02:00
parent 6f94fcfae8
commit b769913e5a

View File

@@ -169,8 +169,11 @@
</note>
</step>
<step><para>Once enough time has passed so that the instance is fully booted and initialized and your security groups are set,
you can <command>ssh</command> into the instance. You can obtain the IP address of the instance from the
output of <command>nova list</command>.</para>
<screen><prompt>$</prompt> ssh -i mykey root@10.0.0.3</screen></step>
you can <command>ssh</command> into the instance without a password, using the keypair given to <command>nova boot</command>.
You can obtain the IP address of the instance from the output of <command>nova list</command>.
You don't need to specify the private key to use, because the private key of the mykey keypair was stored in the
default location for the <command>ssh</command> client (~/.ssh/.id_rsa).
Note that CirrOS demands login as user cirros, not root.</para>
<screen><prompt>$</prompt> ssh cirros@10.0.0.3</screen></step>
</procedure>
</section>