码迷,mamicode.com
首页 > 其他好文 > 详细

queens版本openstack部署nova报错解决

时间:2018-06-04 19:22:11      阅读:514      评论:0      收藏:0      [点我收藏+]

标签:queens nova nova-api

根据官方文档:https://docs.openstack.org/nova/queens/install/controller-install-rdo.html,部署nova服务。

  到最后的几步时,也就是同步api数据库“Populate the nova-api database”时,出现报错。

[root@linux-node1 ~]# su -s /bin/sh -c "nova-manage api_db sync" nova
/usr/lib/python2.7/site-packages/oslo_db/sqlalchemy/enginefacade.py:332: NotSupportedWarning: Configuration option(s) ['use_tpool'] not supported
  exception.NotSupportedWarning

  根据报错信息找到对应的文件,注释第325、329、330、331、332和333行的配置。

[root@linux-node1 ~]# sed -n '325,333p' /usr/lib/python2.7/site-packages/oslo_db/sqlalchemy/enginefacade.py
#        if not_supported:
            # would like to raise ValueError here, but there are just
            # too many unrecognized (obsolete?) configuration options
            # coming in from projects
#            warnings.warn(
#                "Configuration option(s) %r not supported" %
#                sorted(not_supported),
#                exception.NotSupportedWarning
#            )

  再次执行同步数据库的命令:

[root@linux-node1 ~]# su -s /bin/sh -c "nova-manage api_db sync" nova

  没有再返回任何信息,说明这部分没有问题。


  这种报错,想在百度上搜索出东西感觉不太现实。既然报错是说不支持,那索性就把不支持的语句注释掉。

  目前看,是没有问题的。

queens版本openstack部署nova报错解决

标签:queens nova nova-api

原文地址:http://blog.51cto.com/gagarin/2124735

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!