0

我目前在一个 Openstack 项目中,我正在尝试使用 Ceilometer 和 Gnocchi。我已经安装了 DevStack,文件中包含以下几行local.conf来安装和配置 Ceilometer 和 Gnocchi:

enable_plugin gnocchi https://github.com/gnocchixyz/gnocchi master
enable_plugin ceilometer https://git.openstack.org/openstack/ceilometer
enable_service gnocchi-grafana

安装成功,Metric 服务已与 ceilometer 和 gnocchi 用户一起创建。[keystone_authtoken]Ceilometer 和 Gnocchi 配置文件的部分显然设置正确,我在 Ceilometer 配置文件中将 Gnocchi 设置为仪表调度程序。

但是使用与metric参数相关的命令,例如openstack metric status我收到 403 错误,尽管我admin-openrc.sh之前获取了该文件。我尝试使用 2.0 和 3 API 版本。

我认为service在 OpenStack 中将管理员用户添加为项目的成员和管理员可以解决问题,但我仍然收到错误消息。

我查看了涉及 Gnocchi 的 Apache 日志:-/var/log/apache2/gnocchi.log存在“客户端被服务器配置拒绝:/usr/local/bin/gnocchi-api”错误,-var/log/apache2/gnocchi-acces.log存在如下 403 个错误:

10.0.3.29 - - [28/Jul/2017:16:24:34 +0300] "POST /v1/batch/resources/metrics/measures?create_metrics=True HTTP/1.1" 403 501 "-" "ceilometer-agent-notification keystoneauth1/3.1.0 python-requests/2.18.2 CPython/2.7.12"
10.0.3.29 - - [28/Jul/2017:16:24:34 +0300] "PATCH /v1/resource/image/bc130fad-36f6-48a5-852b-b78e41863d09 HTTP/1.1" 403 520 "-" "ceilometer-agent-notification keystoneauth1/3.1.0 python-requests/2.18.2 CPython/2.7.12"

是我没有注意到的任何错误配置吗?

如果您想了解更多信息,请问我。

谢谢你的帮助。

4

1 回答 1

0

基于此处OpenStack 问答的回答:

目前以下配置/etc/apache2/sites-available/gnocchi.conf工作正常:

Listen 8041

<VirtualHost *:8041>
    WSGIDaemonProcess gnocchi lang='en_US.UTF-8' locale='en_US.UTF-8' user=stack display-name=%{GROUP} processes=2 threads=32
    WSGIProcessGroup gnocchi
    WSGIScriptAlias / /usr/local/bin/gnocchi-api
    WSGIApplicationGroup %{GLOBAL}

    <IfVersion >= 2.4>
        ErrorLogFormat "%{cu}t %M"
    </IfVersion>


    <Directory />
        Options FollowSymLinks
        AllowOverride None
        <IfVersion >= 2.4>
            Require all granted
        </IfVersion>
        <IfVersion < 2.4>
            Order allow,deny
            Allow from all
        </IfVersion>
    </Directory>

    ErrorLog /var/log/apache2/gnocchi.log
    CustomLog /var/log/apache2/gnocchi-access.log combined
</VirtualHost>

WSGISocketPrefix /var/run/apache2

service apache2 restart命令输出后gnocchi status如下:

$ gnocchi status
+-----------------------------------------------------+-------+
| Field                                               | Value |
+-----------------------------------------------------+-------+
| storage/number of metric having measures to process | 0     |
| storage/total number of measures to process         | 0     |
+-----------------------------------------------------+-------+

不像以前:

$ gnocchi status
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>403 Forbidden</title>
</head><body>
<h1>Forbidden</h1>
<p>You don't have permission to access /v1/status
on this server.<br />
</p>
<hr>
<address>Apache/2.4.18 (Ubuntu) Server at 10.92.76.44 Port 8041</address>
</body></html>
 (HTTP 403)
于 2017-09-21T07:07:18.680 回答