How to Install OpenStack Kilo on Ubuntu 14.04 Using DevStack
Step 1: Install git and clone stable/kilo branch of devstack$sudo apt-get install git $ git clone https://github.com/openstack-dev/devstack.git -b stable/kilo
Step 2: go to cloned folder
$cd devstack
Step 3: Install Openstack by running "stack.sh" script.
$ ./stack.sh
Step 4: Open browser and access horizon dashbord
http://ip-address
After enter the ip address in the browser you can see the bellow admin login page:
After login
2nd way :
Installing devstack (Openstack for developers) on Ubuntu 14.04
Step 1: Install git
1 | sudo apt-get install git |
For Icehouse
git clone -b stable/grizzly https://github.com/openstack-dev/devstack.git |
Step 3: Change directory to the devstack directory
cd /devstack |
./stack.sh |
After these dialogs, the script will run and download stuff from the internet to install (Make sure your internet connection is working). The script runs for at least 20min, if it goes through the entire procedure and works.
At the end of the installation script (which may take at least 20min, so get a coffee, or do something else) you will be presented with the URL where the Openstack dashboard (horizon) can be found, as well as the username and password to log into the dashboard. The default usernames are “admin” and “demo”. The password will be what you set among the dialogs at the beginning, or if you just pressed enter to skip the dialogs, then devstack will choose a random long password for you (which it will show you at this point)
Generally if something went wrong and you want to stop the devstack platform as a whole, i.e. stopping all the services running you can use:
./unstack.sh |
./clean.sh |

No comments:
Post a Comment