Install and configure for Ubuntu¶
This section describes how to install and configure the pbrx service for Ubuntu 14.04 (LTS).
Prerequisites¶
Before you install and configure the pbrx 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
pbrxdatabase:CREATE DATABASE pbrx;
Grant proper access to the
pbrxdatabase:GRANT ALL PRIVILEGES ON pbrx.* TO 'pbrx'@'localhost' \ IDENTIFIED BY 'PBRX_DBPASS'; GRANT ALL PRIVILEGES ON pbrx.* TO 'pbrx'@'%' \ IDENTIFIED BY 'PBRX_DBPASS';
Replace
PBRX_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
pbrxuser:$ openstack user create --domain default --password-prompt pbrxAdd the
adminrole to thepbrxuser:$ openstack role add --project service --user pbrx adminCreate the pbrx service entities:
$ openstack service create --name pbrx --description "pbrx" pbrx
Create the pbrx service API endpoints:
$ openstack endpoint create --region RegionOne \ pbrx public http://controller:XXXX/vY/%\(tenant_id\)s $ openstack endpoint create --region RegionOne \ pbrx internal http://controller:XXXX/vY/%\(tenant_id\)s $ openstack endpoint create --region RegionOne \ pbrx admin http://controller:XXXX/vY/%\(tenant_id\)s
Install and configure components¶
Install the packages:
# apt-get update # apt-get install
Edit the
/etc/pbrx/pbrx.conffile and complete the following actions:In the
[database]section, configure database access:[database] ... connection = mysql+pymysql://pbrx:PBRX_DBPASS@controller/pbrx