Install and configure for Ubuntu

Install and configure for Ubuntu

This section describes how to install and configure the fenix service for Ubuntu 14.04 (LTS).

Prerequisites

Before you install and configure the fenix 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 fenix database:

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

      GRANT ALL PRIVILEGES ON fenix.* TO 'fenix'@'localhost' \
        IDENTIFIED BY 'FENIX_DBPASS';
      GRANT ALL PRIVILEGES ON fenix.* TO 'fenix'@'%' \
        IDENTIFIED BY 'FENIX_DBPASS';
      

      Replace FENIX_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 fenix user:

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

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

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

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

Install and configure components

  1. Install the packages:

    # apt-get update
    
    # apt-get install
    
  1. Edit the /etc/fenix/fenix.conf file and complete the following actions:

    • In the [database] section, configure database access:

      [database]
      ...
      connection = mysql+pymysql://fenix:FENIX_DBPASS@controller/fenix
      

Finalize installation

Restart the fenix services:

# service openstack-fenix-api restart
Creative Commons Attribution 3.0 License

Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.