0% found this document useful (0 votes)
40 views1 page

Install OpenStack on Ubuntu Server

This document provides instructions for installing OpenStack on Ubuntu Server using DevStack. It outlines preparing the server with updates and upgrades, creating a user account for DevStack, installing Git, navigating to the DevStack directory, editing the local.conf file to set passwords and the host IP address, and running the stack.sh script to deploy OpenStack services.

Uploaded by

wokesa5822
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
40 views1 page

Install OpenStack on Ubuntu Server

This document provides instructions for installing OpenStack on Ubuntu Server using DevStack. It outlines preparing the server with updates and upgrades, creating a user account for DevStack, installing Git, navigating to the DevStack directory, editing the local.conf file to set passwords and the host IP address, and running the stack.sh script to deploy OpenStack services.

Uploaded by

wokesa5822
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

Install OpenStack on Ubuntu Server :

[Link]

*sudo apt update


*sudo apt -y upgrade
*sudo apt -y dist-upgrade
*sudo reboot
*sudo useradd -s /bin/bash -d /opt/stack -m stack
*echo "stack ALL=(ALL) NOPASSWD: ALL" | sudo tee /etc/sudoers.d/stack
*sudo su - stack
*CLEAR
*clear
*sudo apt -y install git
*sudo
*cd devstack

*nano [Link]
[[local|localrc]]
# Password for KeyStone, Database, RabbitMQ and Service
ADMIN_PASSWORD=your_password
DATABASE_PASSWORD=$ADMIN_PASSWORD
RABBIT_PASSWORD=$ADMIN_PASSWORD
SERVICE_PASSWORD=$ADMIN_PASSWORD
# Host IP - get your Server/VM IP address from ip addr command
HOST_IP=your_ip

*./[Link]

You might also like