Difference between revisions of "OpenStack:Horizon"

From Define Wiki
Jump to navigation Jump to search
Line 2: Line 2:
  
 
Horizon is the dashboard for Openstack.  It provides a web based interface to manage other Open Stack services.
 
Horizon is the dashboard for Openstack.  It provides a web based interface to manage other Open Stack services.
 
== Installation ==
 
 
Install the pre-requisite packages:
 
 
<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. By default Horizon defaults to using the localhost IP>  To change this edit the 'OPENSTACK_HOST' setting to the correct IP.
 
 
<syntaxhighlight>
 
cp openstack_dashboard/local/local_settings.py.example openstack_dashboard/local/local_settings.py
 
</syntaxhighlight>
 
 
  
 
== Starting Horizon ==
 
== Starting Horizon ==

Revision as of 10:37, 12 January 2015

Horizon Dashboard

Horizon is the dashboard for Openstack. It provides a web based interface to manage other Open Stack services.

Starting Horizon

Start the serive with the manage.py script, beofre pointing your browser at the IP of the system.

tools/with_venv.sh ./manage.py runserver