1.9 KiB
1.9 KiB
Prerequisites
Before you install and configure the ranger service, you must create a database, service credentials, and API endpoints.
To create the database, complete these steps:
Use the database access client to connect to the database server as the
rootuser:$ mysql -u root -pCreate the
rangerdatabase:CREATE DATABASE ranger;Grant proper access to the
rangerdatabase: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_DBPASSwith a suitable password.Exit the database access client.
exit;
Source the
admincredentials to gain access to admin-only CLI commands:$ . admin-openrcTo create the service credentials, complete these steps:
Create the
rangeruser:$ openstack user create --domain default --password-prompt rangerAdd the
adminrole to therangeruser:$ openstack role add --project service --user ranger adminCreate the ranger service entities:
$ openstack service create --name ranger --description "ranger" ranger
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