-
Language:
English
-
Language:
English
Red Hat Training
A Red Hat training course is available for Red Hat OpenStack Platform
Chapter 3. Installing the all-in-one OpenStack environment
Before you can begin configuring, deploying, and testing your all-in-one OpenStack environment, you must install the necessary packages and dependencies, and share the public key from your user account on your physical machine to the virtual machine hosting the OpenStack environment.
Perform the following steps as the user that requires access to the OpenStack host machine, which is likely to be your regular, non-root user account.
Log in as a non-root user to the bare metal or virtual machine where you want to install the standalone services:
$ ssh <non-root-user>@<host-machine>
Register the machine with Red Hat Subscription Manager. Enter your Red Hat subscription credentials at the prompt:
$ sudo subscription-manager register
Attach your Red Hat subscription to the entitlement server:
$ sudo subscription-manager attach --auto
Run the following commands to enable the necessary repositories:
$ sudo yum install -y yum-utils $ sudo yum-config-manager --enable rhel-7-server-rpms $ sudo yum-config-manager --enable rhel-7-server-optional-rpms $ sudo yum-config-manager --enable rhel-7-server-extras-rpms $ sudo yum-config-manager --enable rhel-ha-for-rhel-7-server-rpms $ sudo yum-config-manager --enable rhel-7-server-openstack-<VERSION>-rpms
Replace
<VERSION>with the version of your OpenStack installation.Version Name 14
rocky
NoteThe all-in-one OpenStack installation is a Technology Preview feature in Red Hat OpenStack Platform 14.
Install the TripleO command line interface (CLI):
$ sudo yum install -y python-tripleoclient
Copy your public SSH key to the all-in-one host machine:
$ sudo ssh-copy-id <non-root-user>@<host-machine>