321ed 发表于 2016-1-13 09:01:44

CentOS 7部署OpenStack(9)—部署dashboard

安装dashboard# yum install -y openstack-dashboard配置dashboard# vim /etc/openstack-dashboard/local_settings29 ALLOWED_HOSTS = ['*']108 CACHES = {109   'default': {110         'BACKEND':'django.core.cache.backends.memcached.MemcachedCache',111         'LOCATION':'192.168.1.11:11211',112   }113 }138 OPENSTACK_HOST = "192.168.1.11"140 OPENSTACK_KEYSTONE_DEFAULT_ROLE = "user"320 TIME_ZONE = "Asia/Shanghai"重启http# systemctl restart httpd激动人心的时刻到来了,在浏览器中输入192.168.1.11/dashboard就可以进入登录界面了。账户密码按照编者来的话账户和密码有两对,一对是普通租户,账户和密码均为kevin,一对是管理账户,账户是admin,密码是123456。

登录后界面如下:

页: [1]
查看完整版本: CentOS 7部署OpenStack(9)—部署dashboard