Step 1 : Install git on Ubuntu using the following command
1
sudo apt-get install git
Step 2 : Install DevStack by following 3 simple steps given here. You’ll be asked to enter some passwords for different components. It will take some time to complete stack.sh execution and you’ll see following printed on your console.
1
2
3
4
5
6
7
Horizon is now available at http://x.x.x.x/
Keystone is serving at http://x.x.x.x:5000/v2.0/
Examples on using novaclient command line is in exercise.sh
The default users are: admin and demo
The password: xxxx
This is your host ip: x.x.x.x
stack.sh completed in 168 seconds
Step 3 : Access the dashboard by using the Horizen (name of OpenStack dashboard) URL printed above. Log in as ‘admin’ using the printed password.
Step 4 : Before creating any instances on our cloud, we have to set up some security options. Go the the ‘Project’ tab on the left and click on the ‘Access & Security’ link as shown below.
You can either edit the existing “default” security group or add a new security group. Then click on “Edit Rules” on the relevant gropu and first add a rule to enable incoming SSH connections on port 22.
Then add another rule to enable incoming ping requests on ICMP protocol. Set -1 for ICMP type and code.
So the 2 rules added should look like this.
Then we have to generate a key pair which will be used to authenticate users into the VMs. Click on the “Keypairs” tab on “Access & Security” page and click on “Create Keypair”.
Then provide a name for the keypair and click on “Create Keypair”.
Download and save the key file. It will be used to log into the VMs from outside.
Step 5 : create an instance using the security group and the key pair we created. Click on “Instances” link under “Project” tab and click on “Launch Instance”.
shot5
In the UI popped up, you can configure the instance by providing a name, size etc. “Details” tab.
shot6
Next “Access & Security” tab we can select the key pair and the security group created .
After configuring the instance, click on “Launch”. Then wait till the instance comes into “Running” state.
Once the instance is up and running, you can check the log and the console.
Once you get the console, log into the instance by providing the default username and password printed on the console.
When you check the log, you’ll see something like this.
Now successfully created an instance on our DevStack cloud.
Step 6 : Finally if you want to SSH your instance from outside using the key file downloaded, use the following commands.
1
2
3
$ chmod 0600 MyKey.pem
$ ssh-add MyKey.pem
$ ssh -i MyKey.pem cirrois@10.0.0.2 ... Learn more visit => http://www.thinkittraining.in/open-stack