Install with DevStack
Last updated
Last updated
https://www.digitalocean.com/community/tutorials/install-openstack-ubuntu-devstack
Openstack is a free and opensource IaaS cloud platform that handles cloud compute, storage and network resources. It comes with an intuitive dashboard that enables systems administrators to provide and monitor these resources. You can seamlessly install OpenStack locally on your Ubuntu 18.04 instance for learning and testing purposes using Devstack. Devstack is a set of extensible scripts that facilitate OpenStack deployment. In this guide, you will learn how to deploy OpenStack on Ubuntu 18.04 with devstack.
Before we begin, ensure you have the following minimum prerequisites
A fresh Ubuntu 18.04 installation
User with sudo privileges
4 GB RAM
2 vCPUs
Hard disk capacity of 10 GB
Internet connection
With the minimum requirements satisfied, we can now proceed.
To start off, log into your Ubuntu 18.04 system using SSH protocol and update & upgrade system repositories using the following command.
Sample Output
Next reboot the system using the command.
OR
Best practice demands that devstack should be run as a regular user with sudo privileges. With that in mind, we are going to add a new user called “stack” and assign sudo privileges. To create stack user execute
Next, run the command below to assign sudo privileges to the user
Sample Output
Once you have successfully created the user ‘stack’ and assigned sudo privileges, switch to the user using the command.
In most Ubuntu 18.04 systems, git comes already installed. If by any chance git is missing, install it by running the following command.
Sample output
Using git, clone devstack’s git repository as shown.
Sample output
In this step, navigate to the devstack directory.
Then create a local.conf
configuration file.
Paste the following content
Save and exit the text editor. NOTE:
The ADMIN_PASSWORD
is the password that you will use to log in to the OpenStack login page. The default username is admin.
The HOST_IP
is your system’s IP address that is obtained by running ifconfig
or ip addr
commands.
To commence the installation of OpenStack on Ubuntu 18.04, run the script below contained in devstack directory.
The following features will be installed:
Horizon – OpenStack Dashboard
Nova – Compute Service
Glance – Image Service
Neutron – Network Service
Keystone – Identity Service
Cinder – Block Storage Service
Placement – Placement API
The deployment takes about 10 to 15 minutes depending on the speed of your system and internet connection. In our case, it took roughly 12 minutes. At the very end, you should see output similar to what we have below.
This confirms that all went well and that we can proceed to access OpenStack via a web browser.
To access OpenStack via a web browser browse your Ubuntu’s IP address as shown. https://server-ip/dashboard
This directs you to a login page as shown.
Enter the credentials and hit “Sign In” You should be able to see the Management console dashboard as shown below.
For more on Devstack’s customization, check out their system configuration guide. Additionally, check out the Openstack documentation for administration guide.