Skip to content

Latest commit

 

History

History
66 lines (40 loc) · 1.62 KB

gettingstarted.rst

File metadata and controls

66 lines (40 loc) · 1.62 KB

Quick Guide to Getting Started with Keystone

Dependencies

First, you will need to install keystone, if you haven't done so already.

installing

Creating your first global admin

Change driectory to your install path

Creating your first tenant admin

Change directory to your install path.

  1. Run the following to create the first tennant:

    $>  bin/keystone-manage tenant add "MyTenant"
  2. Run the following to create the first tenant admin:

    $>  bin/keystone-manage user add MyAdmin P@ssw0rd MyTenant

Note

Some reserved roles are defined (and can be modified) through the keystone.conf in the /etc folder.

  1. Associate your tenant admin with the Admin role:

    $> bin/keystone-manage role grant Admin MyAdmin

Curl examples

adminAPI_curl_examples serviceAPI_curl_examples