Thursday, October 29, 2015

OpenStack RDO.. Get the taste..

As Openstack making a lot of buzz in the cloud industry, tried to taste this flavor by installing it in a virtual machine.
Below are the basic steps of Openstack RDO installation on Redhat linux.

  1. Install RHEL7.1 Minimal
    Register at redhat site and download a copy of the RHEL7 server
    https://access.redhat.com Install with minimal option or higher.

  1. Configure network
systemctl stop NetworkManager
systemctl disable NetworkManager
systemctl enable network
ip addr add 192.168.1.131/24 dev ens32
vi /etc/sysconfig/network-scripts/ifcfg-ens32
IPADDR=192.168.1.131
GATEWAY=192.168.1.1

vi /etc/resolv.conf
nameserver 4.2.2.2

vi /etc/hosts
192.168.1.131 solar1

  1. Subscription and Yum
subscription-manager register --auto-attach
subscription-manager repos --enable rhel-7-server-optional-rpms
subscription-manager repos --enable rhel-7-server-extras-rpms
yum install yum-utils
yum update –y
yum install -y https://rdoproject.org/repos/rdo-release.rpm
yum install -y openstack-packstack
  1. Install Openstack
packstack –allinone
  1. Open Web Dashboard
http://192.168.1.131/dashboard

Enjoy !!

1 comment: