~ubuntu-branches/ubuntu/trusty/horizon/trusty-proposed

« back to all changes in this revision

Viewing changes to openstack_dashboard/dashboards/project/access_and_security/templates/access_and_security/keypairs/_import.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2013-12-05 14:39:15 UTC
  • mto: This revision was merged to the branch mainline in revision 61.
  • Revision ID: package-import@ubuntu.com-20131205143915-5u8q3kdxdw8e7maz
Tags: upstream-2014.1~b1
ImportĀ upstreamĀ versionĀ 2014.1~b1

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
</div>
16
16
<div class="right">
17
17
    <h3>{% trans "Description" %}:</h3>
18
 
    <p>{% trans "Keypairs are ssh credentials which are injected into images when they are launched. Creating a new key pair registers the public key and downloads the private key (a .pem file)." %}</p>
19
 
    <p>{% trans "Protect and use the key as you would any normal ssh private key." %}</p>
 
18
    <p>{% trans "Keypairs are how you login to your instance after it is launched." %}</p>
 
19
    <p>{% trans "Choose a keypair name you will recognise and paste your SSH public key into the space provided." %}</p>
 
20
    <p>{% trans "SSH keypairs can be generated with the ssh-keygen command:" %}</p>
 
21
    <p><pre>ssh-keygen -t rsa -f cloud.key</pre></p>
 
22
    <p>{% trans "This generates a pair of keys: a key you keep private (cloud.key) and a public key (cloud.key.pub). Paste the contents of the public key file here." %}</p>
 
23
    <p>{% trans "After launching an instance, you login using the private key (the username might be different depending on the image you launched):" %}</p>
 
24
    <p><pre>ssh -i cloud.key ubuntu@&lt;instance_ip&gt;</pre></p>
 
25
    <p>{% trans "or:" %}</p>
 
26
    <p><pre>ssh -i cloud.key ec2_user@&lt;instance_ip&gt;</pre></p>
20
27
</div>
21
28
{% endblock %}
22
29