Packstack Basic Install

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

2

Do a minimal installation for RHEL 7 on a physical system. See getting started for Red Hat Enterprise
Linux 7 for more details.
Subscribe the system via Red Hat Subscription Management, and confirm that an OpenStack
subscription is attached:
# subscription-manager register
# subscription-manager subscribe --auto
# subscription-manager list --consumed

If an OpenStack subscription is not attached immediately, see the documentation for manually attaching
subscriptions.
Clear initially setup repositories, and enable the appropriate ones:
# subscription-manager repos --disable=*
# subscription-manager repos --enable=rhel-7-server-rpms
# subscription-manager repos --enable=rhel-7-server-openstack-6.0-installer-rpms
# subscription-manager repos --enable=rhel-server-rhscl-7-rpms

Install the necessary yum packages, adjust the repository priority, and update:
# yum install -y yum-plugin-priorities yum-utils
# yum-config-manager --setopt="rhel-7-server-openstack-6.0-rpms.priority=1" --enable rhel-7-serveropenstack-6.0-rpms
# yum update -y

Disable NetworkManager then reboot:


# systemctl disable NetworkManager
# reboot

Install and run the rhel-osp-installer:


# yum install -y rhel-osp-installer
# rhel-osp-installer

Note the passwords for the 'admin' and 'demo' users created during installation for upcoming steps.
Login to the OpenStack administration interface to launch a test instance:

You might also like