cainiaoit

安装仪表板

  安装仪表板组件

yum install -y openstack-dashboard httpd mod_wsgi memcached python-memcached

 

编辑/etc/openstack-dashboard/local_settings

vim /etc/openstack-dashboard/local_settings
OPENSTACK_HOST = "controller"

ALLOWED_HOSTS = [\'*\']

CACHES = {

\'default\': {

\'BACKEND\': \'django.core.cache.backends.memcached.MemcachedCache\',

\'LOCATION\': \'127.0.0.1:11211\',

}

}

TIME_ZONE = " Asia/Shanghai"

 

完成安装

setsebool -P httpd_can_network_connect on
chown -R apache:apache /usr/share/openstack-dashboard/static
systemctl enable httpd.service memcached.service
systemctl restart httpd.service memcached.service

验证

http://192.168.116.8/dashboard

 

 

 

 

 

分类:

技术点:

相关文章:

  • 2022-01-28
  • 2021-08-31
  • 2021-04-16
  • 2022-12-23
  • 2021-06-26
  • 2021-11-30
  • 2022-12-23
  • 2021-08-25
猜你喜欢
  • 2021-10-22
  • 2021-07-01
  • 2022-12-23
  • 2021-09-13
  • 2021-04-14
  • 2022-02-12
  • 2021-11-19
相关资源
相似解决方案