skip to Main Content

I would like to setup an Openstack Swift cluster on Centos 7 with TempAuth authentication method.

In the prerequisite section of the official tutorial it is requested to source the admin-openrc script but I am not able to find in any of the official repositories. Any tip?

Thank you

2

Answers


  1. you can download the admin-openrc file from horizon, under:

    Compute => API Access => Download Openstack RC file

    Login or Signup to reply.
  2. These are what you need:

    export OS_USERNAME=admin
    export OS_PASSWORD=yourPassword
    export OS_PROJECT_NAME=admin
    export OS_USER_DOMAIN_NAME=Default
    export OS_PROJECT_DOMAIN_NAME=Default
    export OS_AUTH_URL=http://KeystoneNodeAddress:5000/v3/
    export OS_IDENTITY_API_VERSION=3
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search