OpenStack Kilo : Configure Horizon2015/06/08 |
Configure OpenStack Dashboard Service (Horizon).
It's possible to control OpenStack on Web GUI to set Dashboard. |
|
[1] | Install Horizon. |
[root@dlp ~(keystone)]# yum --enablerepo=openstack-kilo,epel -y install openstack-dashboard openstack-nova-novncproxy
|
[2] | Configure nova.conf to get virtual machines' console on Dashboard. |
[root@dlp ~(keystone)]#
vi /etc/nova/nova.conf # add follows in [DEFAULT] section (replace the hostname/IP below to your own one) vnc_enabled=true novncproxy_host=0.0.0.0 novncproxy_port=6080 novncproxy_base_url=http://dlp.srv.world:6080/vnc_auto.html vncserver_listen=0.0.0.0 vncserver_proxyclient_address=10.0.0.30
[root@dlp ~(keystone)]#
vi /etc/openstack-dashboard/local_settings # line 28: change to own hostname or IP address ALLOWED_HOSTS = [' dlp.srv.world ', 'localhost']
# line 151: change to Keystone server's auth URI OPENSTACK_KEYSTONE_URL = " http://10.0.0.30:5000/v2.0 "
chown -R apache. /usr/share/openstack-dashboard/static [root@dlp ~(keystone)]# systemctl start openstack-nova-novncproxy httpd [root@dlp ~(keystone)]# systemctl enable openstack-nova-novncproxy httpd [root@dlp ~(keystone)]# systemctl restart openstack-nova-compute |
[3] | Access to the URL below with web browser. ⇒ http://(server's hostname)/dashboard/ After accessing, following screen is displayed, then login with the admin user which you added in Keystone. |
[4] | If it's OK to login normally, following screen is displayed. You can control Openstack on this Dashboard. |
[5] | To access an instance, Click "Instances" on the left menu. Then, instances' list is shown on the right, next Click the name of instance you'd like to access. |
[6] | The description of instance is shown, next, Click "Console" tab. |
[7] | The console of instance is shown. You can operate a n instance on here. |
Sponsored Link |