这里我记录一下在配置ceilometer中可能遇见的问题(当然都是我遇见过的问题)
- oslo_config.cfg: Option “coordination_url” from group “storage” is deprecated. Use option “coordination_url” from group “DEFAULT”.
这个问题一般是配置问题(如果看不懂翻译一下就明白了):
oslo_config.cfg:不推荐使用“storage”组中的选项“coordination_url”。 使用“DEFAULT”组中的“coordination_url”选项。这是google翻译,一看就明白了
2.ERROR gnocchi.cli.api: Unable to find `uwsgi’.
这里是要安装uwsgi,一般在openstack 是有wsgi 的,至于原因,知道底层就明白了,在这里安装uwsgi需要c环境
yum install python-devel(这是centos下,ubantu是python-dev)
pip install uwsgi
3.2019-07-05 06:53:15,188 [108914] WARNING keystonemiddleware._common.config: The option “file” in conf is not known to auth_token
2019-07-05 06:53:15,189 [108914] WARNING keystonemiddleware._common.config: The option “configkey” in conf is not known to auth_token
2019-07-05 06:53:15,189 [108914] WARNING keystonemiddleware.common.config: The option “here” in conf is not known to auth_token
这里的__file、here 等解决办法: