ranger/doc/source/install/common_prerequisites.rst
hosingh000 3de38762aa initial commit
Change-Id: Ie417df96258c2daa852d14e588de4ad2d54bb819
2017-07-27 09:14:42 -05:00

1.9 KiB

Prerequisites

Before you install and configure the ranger service, you must create a database, service credentials, and API endpoints.

  1. To create the database, complete these steps:

    • Use the database access client to connect to the database server as the root user:

      $ mysql -u root -p
    • Create the ranger database:

      CREATE DATABASE ranger;
    • Grant proper access to the ranger database:

      GRANT ALL PRIVILEGES ON ranger.* TO 'ranger'@'localhost' \
        IDENTIFIED BY 'RANGER_DBPASS';
      GRANT ALL PRIVILEGES ON ranger.* TO 'ranger'@'%' \
        IDENTIFIED BY 'RANGER_DBPASS';

      Replace RANGER_DBPASS with a suitable password.

    • Exit the database access client.

      exit;
  2. Source the admin credentials to gain access to admin-only CLI commands:

    $ . admin-openrc
  3. To create the service credentials, complete these steps:

    • Create the ranger user:

      $ openstack user create --domain default --password-prompt ranger
    • Add the admin role to the ranger user:

      $ openstack role add --project service --user ranger admin
    • Create the ranger service entities:

      $ openstack service create --name ranger --description "ranger" ranger
  4. Create the ranger service API endpoints:

    $ openstack endpoint create --region RegionOne \
      ranger public http://controller:XXXX/vY/%\(tenant_id\)s
    $ openstack endpoint create --region RegionOne \
      ranger internal http://controller:XXXX/vY/%\(tenant_id\)s
    $ openstack endpoint create --region RegionOne \
      ranger admin http://controller:XXXX/vY/%\(tenant_id\)s