红联Linux门户
Linux帮助

ubuntu14.04中安装openstack-I版本成功后dashboard无法登陆问题

发布时间:2017-02-23 15:04:09来源:linux网站作者:歪歪的酒壶
只有OpenStack-I版本的安装这里不再过多的描述,这里只是说明一下,当一切都安装完毕之后, dashboard出现无法登陆的情况。系统是centos7或者ubuntu14.04。
 
在以上两个版本中进行openstack版本的安装,可以安装成功,但是登录dashboard的时候出现错误:
mportError at /
No module named utils
Request Method: GET
Request URL: http://10.0.1.218/
Django Version: 1.6.11
Exception Type: ImportError
Exception Value:
No module named utils
Exception Location: /usr/lib/python2.7/site-packages/compressor/conf.py in <module>, line 5
Python Executable: /usr/bin/python
Python Version: 2.7.5
 
这个问题出现的原因就是当时openstack-I版本使用时,centos7或者ubuntu14.04并没有大规模的应用,所以I版本并没有在这两个版本上进行测试。导致出现不兼容的问题。
 
解决方法:
openstack/requirements / global-requirements.txt
django_compressor>=1.3 修改为 django_compressor>=1.3,<2.0
https://review.openstack.org/#/c/265025/2/global-requirements.txt
openstack/horizon / requirements.txt
django_compressor>=1.3 修改为 django_compressor<2.0,>=1.3
https://review.openstack.org/#/c/266646/1/requirements.txt
将上述两次修改完毕之后,再次运行stack.sh脚本进行安装就可以了。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/28642.html