Changeset 105289 in vbox for trunk/doc/manual/en_US/dita/topics/cloud-create-api-keypair.dita
- Timestamp:
- Jul 12, 2024 9:07:43 AM (9 months ago)
- svn:sync-xref-src-repo-rev:
- 163941
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/dita/topics/cloud-create-api-keypair.dita
r99797 r105289 5 5 6 6 <body> 7 <p/> 8 <p> 9 To use the cloud integration features of <ph conkeyref="vbox-conkeyref-phrases/product-name"/>, you 10 must generate an API signing key pair that is used for API 11 requests to <ph conkeyref="vbox-conkeyref-phrases/oci"/>. 12 </p> 13 <p> 14 Your API requests are signed with your private key, and <ph conkeyref="vbox-conkeyref-phrases/oci"/> 15 uses the public key to verify the authenticity of the request. 16 You must upload the public key to the <ph conkeyref="vbox-conkeyref-phrases/oci"/> Console. 17 </p> 7 <p>To use the cloud integration features of <ph conkeyref="vbox-conkeyref-phrases/product-name"/>, you must generate 8 an API signing key pair that is used for API requests to <ph conkeyref="vbox-conkeyref-phrases/oci"/>. </p> 9 <p>Your API requests are signed with your private key, and <ph conkeyref="vbox-conkeyref-phrases/oci"/> uses the 10 public key to verify the authenticity of the request. You must upload the public key to the <ph 11 conkeyref="vbox-conkeyref-phrases/oci"/> Console. </p> 18 12 <note> 19 13 <p> … … 24 18 <ol> 25 19 <li> 26 <p> 27 (Optional) Create a <filepath>.oci</filepath> directory to 28 store the key pair. 29 </p> 20 <p>(Optional) Create a <filepath>.oci</filepath> directory to store the key pair. </p> 30 21 <pre xml:space="preserve">$ mkdir ~/.oci</pre> 31 <p> 32 The key pair is usually installed in the 33 <filepath>.oci</filepath> folder in your home directory. For 34 example, <filepath>~/.oci</filepath> on a Linux system. 35 </p> 22 <p>The key pair is usually installed in the <filepath>.oci</filepath> folder in your home directory. For 23 example, <filepath>~/.oci</filepath> on a Linux system. </p> 36 24 </li> 37 25 <li> 38 <p> 39 Generate the private key. 40 </p> 41 <p> 42 Use the <codeph>openssl</codeph> command. 43 </p> 26 <p>Generate the private key. </p> 27 <p>Use the <codeph>openssl</codeph> command. </p> 44 28 <ul> 45 29 <li> … … 58 42 </li> 59 43 <li> 60 <p> 61 Change permissions for the private key. 62 </p> 44 <p>Change permissions for the private key. </p> 63 45 <pre xml:space="preserve">$ chmod 600 ~/.oci/oci_api_key.pem</pre> 64 <p> 65 Generate the public key. 66 </p> 46 <p>Generate the public key. </p> 67 47 <pre xml:space="preserve">$ openssl rsa -pubout -in ~/.oci/oci_api_key.pem -out ~/.oci/oci_api_key_public.pem</pre> 68 48 </li>
Note:
See TracChangeset
for help on using the changeset viewer.