在控制节点安装Dashboard
一 安装Dashboard包
[root@controller0 ~]# yum install memcached python-memcached mod_wsgi openstack-dashboard
二 配置local_settings文件,修改下面4个地方
[root@controller0 ~]# cat /etc/openstack-dashboard/local_settings
DEBUG = True //第1个地方
ALLOWED_HOSTS = ['localhost'] //第2个地方
//第3个地方
CACHES = {
'default': {
'BACKEND' : 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION' : '127.0.0.1:11211',
}
}
OPENSTACK_HOST = "controller0" //第4个地方
三 启动Dashboard相关服务
[root@controller0 ~]# service httpd start
Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using 10.20.0.10 for ServerName

最低0.47元/天 解锁文章
242

被折叠的 条评论
为什么被折叠?



