From 75b9e231740b86990117eb381b28a7d6dbb88fde Mon Sep 17 00:00:00 2001 From: frbattid Date: Tue, 4 Oct 2016 11:14:41 +0200 Subject: [PATCH] Remove annexes --- .../annex_a_create_and_install_keypair.md | 11 ----------- .../annex_b_get_keystone_auth_token.md | 11 ----------- mkdocs.yml | 2 -- 3 files changed, 24 deletions(-) delete mode 100644 doc/manuals/installation_and_administration_manual/annex_a_create_and_install_keypair.md delete mode 100644 doc/manuals/installation_and_administration_manual/annex_b_get_keystone_auth_token.md diff --git a/doc/manuals/installation_and_administration_manual/annex_a_create_and_install_keypair.md b/doc/manuals/installation_and_administration_manual/annex_a_create_and_install_keypair.md deleted file mode 100644 index 28fe3b7..0000000 --- a/doc/manuals/installation_and_administration_manual/annex_a_create_and_install_keypair.md +++ /dev/null @@ -1,11 +0,0 @@ -#Annex A: creating a public-private key pair and installing the public key - -In order to get a public-private key pair, just run the following command: - - $ ssh-keygen -t rsa - -You will be prompted for a file path containing the private key and a passphrase. Once created, you will have the private key file within the specified file and another `.pub` sufixed file containing the public key. - -In order to install this key pair for remote authenticated accesses into a certain host, just copy the public key in the ssh authorized keys file owned by the user we want to be authenticated in the host: - - $ cat .pub >> /home//.ssh/authorized_keys diff --git a/doc/manuals/installation_and_administration_manual/annex_b_get_keystone_auth_token.md b/doc/manuals/installation_and_administration_manual/annex_b_get_keystone_auth_token.md deleted file mode 100644 index ac0d87e..0000000 --- a/doc/manuals/installation_and_administration_manual/annex_b_get_keystone_auth_token.md +++ /dev/null @@ -1,11 +0,0 @@ -#Annex B: get a Keystone auth token - - $ curl -i -H "Content-Type: application/json" -d '{ "auth": { "identity": { "methods": ["password"], "password": { "user": { "name": "admin", "domain": { "id": "default" }, "password": "xxxxxxxx" } } } } }' http://localhost:5000/v3/auth/tokens) ; echo - - HTTP/1.1 201 Created Date: Wed, 29 Jul 2015 12:11:24 GMT Server: - Apache/2.4.7 (Ubuntu) X-Subject-Token: bd122eff39084b3698f8bce8e0bva816 - Vary: X-Auth-Token x-openstack-request-id: - req-1ae65420-0d84-4e4f-b3d4-144c6fb54e23 Content-Length: 297 - Content-Type: application/json - - {"token": {"methods": ["password"], "expires_at": "2015-07-29T13:11:24.754603Z", "extras": {}, "user": {"domain": {"id": "default", "name": "Default"}, "id": "c6e65f07a79941f481adfe25bcf95919", "name": "admin"}, "audit_ids": ["zmYq_7EuS4CCR8GLxqCDka"], "issued_at": "2015-07-29T12:11:24.754626Z"}} diff --git a/mkdocs.yml b/mkdocs.yml index 39b0a92..e0bf130 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -24,8 +24,6 @@ pages: - 'OAuth2 proxy': 'installation_and_administration_manual/oauth2_proxy.md' - 'Sanity Check Procedures': 'installation_and_administration_manual/sanity_check_procedures.md' - 'Diagnosis Procedures': 'installation_and_administration_manual/diagnosis_procedures.md' - - 'Annex A: Creating a public-private key pair and installing the public key': 'installation_and_administration_manual/annex_a_create_and_install_keypair.md' - - 'Annex B: Get a keystone auth token': 'installation_and_administration_manual/annex_b_get_keystone_auth_token.md' - 'User and Programmer manual': - 'Introduction': 'user_and_programmer_manual/introduction.md' - 'Using the GUI': 'user_and_programmer_manual/using_gui.md'