openstack RuntimeError: Unable to create a new session key. It is likely that the cache
[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的更多相关文章
- 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 ,输入域名,用户名,密 ...
- Dashboard登录成功后 RuntimeError: Unable to create a new session key.
openstack按照官网docs部署horizon后,使用admin账号密码登录,但网页提示未知错误. 查看/var/log/httpd/error_log 提示这个:RuntimeError: U ...
- 排错: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页面, ...
- 使用selenium启动火狐浏览器,解决Unable to create new remote session问题
今天用火狐浏览器来做自动化,才启动就报错,提示不能创建新的session,不能启动浏览器 问题原因: 火狐driver与火狐浏览器与selenium版本的不兼容 我使用的火狐driver是0.21.0 ...
- 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 ...
- java.lang.OutOfMemoryError: unable to create new native thread 居然是MQ问题
问题: 开发环境,之前一直正常,某天突然用tomcat启动项目后时不时报如下错误: java.lang.OutOfMemoryError: unable to create new native th ...
- 记一次tomcat线程创建异常调优:unable to create new native thread
测试在进行一次性能测试的时候发现并发300个请求时出现了下面的异常: HTTP Status 500 - Handler processing failed; nested exception is ...
- 解决Unable to create new native thread
两种类型的Out of Memory java.lang.OutOfMemoryError: Java heap space error 当JVM尝试在堆中分配对象,堆中空间不足时抛出.一般通过设定J ...
- ArcEngine编辑保存错误:Unable to create logfile system tables
通过ArcEngine对多个SDE中多个图层进行批量编辑处理,其中有部分图层在结束编辑的时候出现错误提示(部分图层可以,只有两个数据较多的图层保存失败). 错误信息:Unable to create ...
随机推荐
- uboot——详解各目录下的文件作用
uboot下载地址:http://ftp.denx.de/pub/u-boot/ 1.目录分布 2.目录结构变化: u-boot-2010.03及以前版本 ├── api ...
- Oracle 11g 、 Oracle 11g select 、 PLSQL 、 Sql Server迁移助手(SSMA)6.0/7.1 网盘下载地址
- - - - - - - - 链接: https://pan.baidu.com/s/1q-uwAfeLOPxzBBx6V1pYLg 提取码: hei9
- python之02数据类型学习
参考链接:http://www.cnblogs.com/yuanchenqi/articles/5782764.html python的数据类型有:Number.Boolean.String .Lis ...
- Activity有四种加载模式:standard(默认), singleTop, singleTask和 singleInstance
standard:Activity的默认加载方法,即使某个Activity在Task栈中已经存在,另一个activity通过Intent跳转到该activity,同样会新创建一个实例压入栈中.例如:现 ...
- django的models字段介绍
#增加数据库数据方法#方法1CalcData.objects.create(var1 ='21',var2='22')#方法2obj =CalcData(var1 ='21',var2='22')jo ...
- 洛谷P3384【模板】树链剖分
题目描述 如题,已知一棵包含\(N\)个结点的树(连通且无环),每个节点上包含一个数值,需要支持以下操作: 操作\(1\): 格式: \(1\) \(x\) \(y\) \(z\) 表示将树从\(x\ ...
- UDP可靠传输简易设计
UDP,鉴于其丢包和乱序(后发先至)问题,为保证其可靠性设计如下报头协议,供大家参考 数据包设计 数据包总大小按照MTU设计设置,小于1500字节 数据包示意图 包头类型说明 1.类型(1字节) 数值 ...
- 华东交通大学2017年ACM“双基”程序设计竞赛 1002
Problem Description 一天YZW参加了学校组织交际舞活动,活动的开始活动方分别给男生和女生从1-n进行编号,按照从小到大顺时针的方式进行男女搭档分配,相同编号的男女组合成一对,例如一 ...
- 四则运算 calc()
它的出现还真的蛮令人惊喜的,很适用于百分比宽度.之前我们有box-sizng,而今又多了一个它,并且,calc的实用性更高.我们可以在border.margin.pading.font-size和wi ...
- 如何让nginx支持ThinkPHP框架(重点参考)
公司有一款即将上线的应用服务端是基于ThinkPHP写的,本地测试无异常,上传到外网服务器后无法连接.这可把我和我的小伙伴们吓死了,怎么回事儿,本地测试都是对的呀! 我和我的小伙伴们开始找原因,换了一 ...