Difference between revisions of "OpenStack:Horizon"

From Define Wiki
Jump to navigation Jump to search
(Created page with "== Horizon Dashboard == Horizon is the dashboard for Openstack. It provides a web based interface to manage other Open Stack services. == Installation == Install the pre-r...")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
== Horizon Dashboard ==
 
== Horizon Dashboard ==
  
Horizon is the dashboard for Openstack.  It provides a web based interface to manage other Open Stack services.
+
Horizon is the web front end to the other openstack components.  It allows you to control most operations and function of you cloud, including launch instances, assinging IP address and setting access controls.
  
== Installation ==
+
Horizon is not the only way to access and control the cloud, it is just a simple and easy way to do so. Everything that can be done through the dash board can also be done through the command lines tools.
  
Install the pre-requisite packages:
+
In addition the APIs allow these control.s to be integrated into with other tools
 
 
<syntaxhighlight>
 
sudo yum install gcc git-core python-devel python-virtualenv openssl-devel libffi-devel
 
</syntaxhighlight>
 
 
 
Clone the git repoistory to get the latest version of horizon and hten run the 'run_tests.sh' script.  The script will set up the environment and check to make sure everything is working.
 
 
 
<syntaxhighlight>
 
git clone https://github.com/openstack/horizon.git
 
cd horizon
 
./run_tests.sh
 
</syntaxhighlight>
 
 
 
To set up the deffault settings you will need to copy the example file.  The file can then be edited to added any additional settings.
 
 
 
<syntaxhighlight>
 
cp openstack_dashboard/local/local_settings.py.example openstack_dashboard/local/local_settings.py
 
</syntaxhighlight>
 

Latest revision as of 10:41, 12 January 2015

Horizon Dashboard

Horizon is the web front end to the other openstack components. It allows you to control most operations and function of you cloud, including launch instances, assinging IP address and setting access controls.

Horizon is not the only way to access and control the cloud, it is just a simple and easy way to do so. Everything that can be done through the dash board can also be done through the command lines tools.

In addition the APIs allow these control.s to be integrated into with other tools