Unlock the power of OpenStack with our comprehensive Beginners Guide Episode 2! Dive into the world of cloud computing as we walk you through the step-by-step process of installing OpenStack and launching your first instance.
👍 If you find this video helpful, please like, share, and subscribe for more OpenStack insights. Have questions or want to suggest a topic? Drop a comment below!
🔔 SUBSCRIBE: / @techtute
🔗 Relevant Links:
[Previous Episode] - • Installing VirtualBox and Ubuntu Serv...
[Next Episode] - • Configure Basic Networking for SSH & ...
📚List of commands executed in the video:
Create user "stack" and user's home directory
sudo useradd -s /bin/bash -d /opt/stack -m stack
Set executable permission for all on "stack" directory
sudo chmod +x /opt/stack
Give user "stack" sudo permissions and switch current user
echo "stack ALL=(ALL) NOPASSWD: ALL" | sudo tee /etc/sudoers.d/stack
sudo -u stack -i
Clone "devstack" repository
git clone https://opendev.org/openstack/devstack
cd devstack
Create file "nano local.conf" and add the lines below to the file
[[local|localrc]]
ADMIN_PASSWORD=secret
DATABASE_PASSWORD=$ADMIN_PASSWORD
RABBIT_PASSWORD=$ADMIN_PASSWORD
SERVICE_PASSWORD=$ADMIN_PASSWORD
-Install Openstack
./stack.sh