zoukankan      html  css  js  c++  java
  • [原][openstack-pike][controller node][issue-3][horizon] dashboard show internal error 500 Cannot serve directory /var/www/html

    问题点:

        安装完pike后发现只能使用 ip:80 登录到http的主页面 不能使用 http://controller_ip:80/dashboard 登录openstack登录页面。如下图

     重启httpd 服务

    systemctl restart httpd

    查看日志 /var/log/httpd/error_log

     [core:error] [pid 3285] [client 192.168.70.1:49887] End of script output before headers: django.wsgi
     [autoindex:error] [pid 3481] [client 192.168.70.1:52306] 
    AH01276: Cannot serve directory /var/www/html/: No matching DirectoryIndex (index.html) found,
    and server-generated directory index forbidden by Options directive [core:error] [pid 3285] [client 192.168.70.1:52507] Script timed out before returning headers: django.wsgi

    查了一下   这个horizon的一个bug:

    https://bugs.launchpad.net/horizon/+bug/1737092

    具体解决方法:

    fix bug:
    Resolvent:
    
    ../httpd/conf.d/openstack-dashboard.conf
    
    add a line:
    -------------------------------------
    WSGIDaemonProcess dashboard
    WSGIProcessGroup dashboard
    WSGISocketPrefix run/wsgi
    WSGIApplicationGroup %{GLOBAL}                     <======== add a line
    
    WSGIScriptAlias /dashboard /usr/share/openstack-dashboard/openstack_dashboard/wsgi/django.wsgi
    Alias /dashboard/static /usr/share/openstack-dashboard/static
    
    <Directory /usr/share/openstack-dashboard/openstack_dashboard/wsgi>
      Options All
      AllowOverride All
      Require all granted
    </Directory>
    
    <Directory /usr/share/openstack-dashboard/static>
      Options All
      AllowOverride All
      Require all granted
    </Directory>
    -------------------------------------
    systemctl restart httpd
    
    Because there is no time to look at the code, give the solution for the time being

    vim /etc/httpd/conf.d/openstack-dashboard.conf

    重启httpd 服务

    systemctl restart httpd

  • 相关阅读:
    机器学习: t-Stochastic Neighbor Embedding 降维算法 (二)
    数学辨异 —— 泰勒展开与等比数列求和
    HDU 4705 Y
    C#实现的内存分页机制的一个实例
    java程序获得SqlServer数据表的表结构
    GLSL中的各种变量总结
    HTTP协议学习
    Jedis中的一致性hash
    C语言数据结构----双向链表
    ios7毛玻璃效果实现
  • 原文地址:https://www.cnblogs.com/horizonli/p/9593840.html
Copyright © 2011-2022 走看看