[Mon Apr 15 01:02:31.654247 2019] [:error] [pid 19433:tid 139790082479872] Login successful for user "admin".
[Mon Apr 15 01:02:33.645839 2019] [:error] [pid 19433:tid 139790082479872] Internal Server Error: /horizon/auth/login/
[Mon Apr 15 01:02:33.645878 2019] [:error] [pid 19433:tid 139790082479872] Traceback (most recent call last):
[Mon Apr 15 01:02:33.645887 2019] [:error] [pid 19433:tid 139790082479872]   File "/usr/lib/python2.7/dist-packages/django/core/handlers/base.py", line $
[Mon Apr 15 01:02:33.645894 2019] [:error] [pid 19433:tid 139790082479872]     response = wrapped_callback(request, *callback_args, **callback_kwargs)
[Mon Apr 15 01:02:33.645901 2019] [:error] [pid 19433:tid 139790082479872]   File "/usr/lib/python2.7/dist-packages/django/views/decorators/debug.py", l$
[Mon Apr 15 01:02:33.645909 2019] [:error] [pid 19433:tid 139790082479872]     return view(request, *args, **kwargs)
[Mon Apr 15 01:02:33.645916 2019] [:error] [pid 19433:tid 139790082479872]   File "/usr/lib/python2.7/dist-packages/django/utils/decorators.py", line 11$
[Mon Apr 15 01:02:33.645923 2019] [:error] [pid 19433:tid 139790082479872]     response = view_func(request, *args, **kwargs)
[Mon Apr 15 01:02:33.645930 2019] [:error] [pid 19433:tid 139790082479872]   File "/usr/lib/python2.7/dist-packages/django/views/decorators/cache.py", l$
[Mon Apr 15 01:02:33.645937 2019] [:error] [pid 19433:tid 139790082479872]     response = view_func(request, *args, **kwargs)
[Mon Apr 15 01:02:33.645943 2019] [:error] [pid 19433:tid 139790082479872]   File "/usr/lib/python2.7/dist-packages/openstack_auth/views.py", line 111, $
[Mon Apr 15 01:02:33.645950 2019] [:error] [pid 19433:tid 139790082479872]     **kwargs)
[Mon Apr 15 01:02:33.645956 2019] [:error] [pid 19433:tid 139790082479872]   File "/usr/lib/python2.7/dist-packages/django/views/decorators/debug.py", l$
[Mon Apr 15 01:02:33.645964 2019] [:error] [pid 19433:tid 139790082479872]     return view(request, *args, **kwargs)
[Mon Apr 15 01:02:33.645970 2019] [:error] [pid 19433:tid 139790082479872]   File "/usr/lib/python2.7/dist-packages/django/utils/decorators.py", line 11$
[Mon Apr 15 01:02:33.645977 2019] [:error] [pid 19433:tid 139790082479872]     response = view_func(request, *args, **kwargs)
[Mon Apr 15 01:02:33.645984 2019] [:error] [pid 19433:tid 139790082479872]   File "/usr/lib/python2.7/dist-packages/django/views/decorators/cache.py", l$
[Mon Apr 15 01:02:33.645990 2019] [:error] [pid 19433:tid 139790082479872]     response = view_func(request, *args, **kwargs)
[Mon Apr 15 01:02:33.645997 2019] [:error] [pid 19433:tid 139790082479872]   File "/usr/lib/python2.7/dist-packages/django/contrib/auth/views.py", line $
[Mon Apr 15 01:02:33.646004 2019] [:error] [pid 19433:tid 139790082479872]     auth_login(request, form.get_user())
[Mon Apr 15 01:02:33.646010 2019] [:error] [pid 19433:tid 139790082479872]   File "/usr/lib/python2.7/dist-packages/django/contrib/auth/__init__.py", li$

[Mon Apr 15 01:02:33.646024 2019] [:error] [pid 19433:tid 139790082479872]   File "/usr/lib/python2.7/dist-packages/django/contrib/sessions/backends/bas$
[Mon Apr 15 01:02:33.646031 2019] [:error] [pid 19433:tid 139790082479872]     self.create()
[Mon Apr 15 01:02:33.646037 2019] [:error] [pid 19433:tid 139790082479872]   File "/usr/lib/python2.7/dist-packages/django/contrib/sessions/backends/cac$
[Mon Apr 15 01:02:33.646044 2019] [:error] [pid 19433:tid 139790082479872]     "Unable to create a new session key. "
[Mon Apr 15 01:02:33.646050 2019] [:error] [pid 19433:tid 139790082479872] RuntimeError: Unable to create a new session key. It is likely that the cache

再安装过程中,我的系统是ubuntu 14.04 ,报出会话过期的问题,因此,在配置dashboard中文件修改为:

之前的是以controller为访问,在hosts文件中也配置了域名解析,但是无法完成访问,因此设置控制节点的IP地址

SESSION_ENGINE = 'django.contrib.sessions.backends.cache'

CACHES = {
    'default': {
         'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
         'LOCATION': '192.168.1.3:11211',
    }
}

openstack RuntimeError: Unable to create a new session key. It is likely that the cache的更多相关文章

  1. openstack中dashboard页面RuntimeError: Unable to create a new session key. It is likely that the cache is unavailable.

    环境是centos7,直接跑在服务器上. 按照官网一步步安装openstack,到验证dashborad时出错. 登录http://192.168.1.73/dashboard ,输入域名,用户名,密 ...

  2. Dashboard登录成功后 RuntimeError: Unable to create a new session key.

    openstack按照官网docs部署horizon后,使用admin账号密码登录,但网页提示未知错误. 查看/var/log/httpd/error_log 提示这个:RuntimeError: U ...

  3. 排错:Unable to create a new session key. It is likely that the cache is unavailable.

    排错:Unable to create a new session key. It is likely that the cache is unavailable. 问题 登录openstack页面, ...

  4. 使用selenium启动火狐浏览器,解决Unable to create new remote session问题

    今天用火狐浏览器来做自动化,才启动就报错,提示不能创建新的session,不能启动浏览器 问题原因: 火狐driver与火狐浏览器与selenium版本的不兼容 我使用的火狐driver是0.21.0 ...

  5. ORA-09925: Unable to create audit trail file带来的sqlplus / as sysdba无法连接

    SQL> show parameter pfile; /picclife/app/oracle/product/11.2.0/dbhome_1/dbs/spfilehukou.ora SQL&g ...

  6. java.lang.OutOfMemoryError: unable to create new native thread 居然是MQ问题

    问题: 开发环境,之前一直正常,某天突然用tomcat启动项目后时不时报如下错误: java.lang.OutOfMemoryError: unable to create new native th ...

  7. 记一次tomcat线程创建异常调优:unable to create new native thread

    测试在进行一次性能测试的时候发现并发300个请求时出现了下面的异常: HTTP Status 500 - Handler processing failed; nested exception is ...

  8. 解决Unable to create new native thread

    两种类型的Out of Memory java.lang.OutOfMemoryError: Java heap space error 当JVM尝试在堆中分配对象,堆中空间不足时抛出.一般通过设定J ...

  9. ArcEngine编辑保存错误:Unable to create logfile system tables

    通过ArcEngine对多个SDE中多个图层进行批量编辑处理,其中有部分图层在结束编辑的时候出现错误提示(部分图层可以,只有两个数据较多的图层保存失败). 错误信息:Unable to create ...

随机推荐

  1. C# 中的EventHandler实例详解-转

    //这里定义了一个水箱类 public class 水箱 {   //这是水箱的放水操作   public void 放水() { }   //这是水箱的属性   public double 体积; ...

  2. Jmeter如何提取响应头部的JSESSIONID【转】

    一.测试前准备 1.测试地址: 登录:http://XXXX:8080/futureloan/mvc/api/member/login 充值:http://XXXX:8080/futureloan/m ...

  3. Python使用Zero-Copy和Buffer Protocol实现高性能编程

    无论你程序是做什么的,它经常都需要处理大量的数据.这些数据大部分表现形式为strings(字符串).然而,当你对字符串大批量的拷贝,切片和修改操作时是相当低效的.为什么? 让我们假设一个读取二进制数据 ...

  4. 关系型数据库基础概念:MySQL系列之开篇

    一.基础概念 数据(Data)是描述事物的符号记录,是指利用物理符号记录下来的.可以鉴别的信息. 1.数据库(Database,DB)是指长期储存在计算机中的有组织的.可共享的数据集合.数据要按照一定 ...

  5. AT2348 HonestOrUnkind

    传送门 显然\(a>b\)的情况下才有解 考虑先找出一个诚实的人,然后剩下的都可以在\(n\)次以内问出来了 发现如果一个人说另一个人是说谎的那么这两个人必有一个是说谎的,由于诚实的人严格多于不 ...

  6. centos6.6上安装beef

    https://rvm.io/https://rvm.io/rvm/securityhttps://www.runoob.com/ruby/ruby-installation-unix.htmlhtt ...

  7. Mac/Homebrew brew update慢的方法

    Homebrew是Mac的软件包管理器,我们可以通过它安装大多数开源软件.但是在使用brew update更新的时候竟然要等待很久.猜测可能是因为brew的官方源被墙或或者响应慢.于是想到的切换Hom ...

  8. MQ 重复消费如何解决?

    1. 使用幂等操作 乐观锁:每个数据有一个版本号,和当前版本号相同的时候进行更新 去重表(缓存): 唯一性索引,如果已经存在值了就不行更新 2. 算法 两个链表是否相交? 3.redis  集合相交的 ...

  9. JMeter - 实时结果 - InfluxDB和Grafana - 第2部分 - 添加自定义字段

    我已经使用InfluxDB + Grafana来获取我的JMeter测试的实时结果.您可以在此处找到有关基本设置的更多详细信息.在本文中,让我们看看我们如何在InfluxDB测量中添加一些自定义字段, ...

  10. 解决eclipse双击类名、选中类名出现假死或者非常慢的问题(取消Eclipse鼠标悬停和自定义快捷键)

    eclipse(MyEclipse)关闭鼠标移动提示代码功能和自定义快捷键代码提示设置的方法 eclipse(MyEclipse)关闭鼠标移动提示代码功能: eclipse(MyEclipse)--& ...