gpt4 book ai didi

python - influxdb python : 404 page not found

转载 作者:太空狗 更新时间:2023-10-30 00:06:02 30 4
gpt4 key购买 nike

我正在尝试使用我发现的 influxdb-python 库 here .但我什至无法让教程程序运行。

当我运行以下示例代码时:

$ python

>>> from influxdb import InfluxDBClient

>>> json_body = [
{
"measurement": "cpu_load_short",
"tags": {
"host": "server01",
"region": "us-west"
},
"time": "2009-11-10T23:00:00Z",
"fields": {
"value": 0.64
}
}
]

>>> client = InfluxDBClient('localhost', 8086, 'root', 'root', 'example')

>>> client.create_database('example')

我在最后一行收到此错误消息:

>>> client.create_database('example')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/dist-packages/influxdb/client.py", line 318, in create_database
status_code=201
File "/usr/lib/python2.7/dist-packages/influxdb/client.py", line 124, in request
raise InfluxDBClientError(response.content, response.status_code)
influxdb.client.InfluxDBClientError: 404: 404 page not found

我安装的版本:

pi@raspberrypi:~ $ influx
Visit https://enterprise.influxdata.com to register for updates, InfluxDB server management, and monitoring.
Connected to http://localhost:8086 version 0.9.6.1
InfluxDB shell 0.9.6.1

如果有人能指出我的问题,那就太好了。

更新

也许这是有帮助的。我和 Jessie 在 Raspberry Pi 3 上,并用这个教程安装了 influxdb link

更新 2

如果我运行 curl http://localhost:8086 我也会收到 404 页面未找到。在端口 8083 上,我得到了响应。

最佳答案

我无法发表评论,因为我没有声誉。

我在 raspberry PI 和 v0.12.2 上发现了同样的问题。如果你去 https://docs.influxdata.com/influxdb/v0.12/guides/writing_data/有这个命令

curl -G http://localhost:8086/query --data-urlencode "q=CREATE DATABASE mydb"

它对我有用。

更新 1

我认为您没有正确安装 Python InfluxDB 驱动程序。按照 InfluxDB-Python 上的步骤操作页。特别要确保以 sudo 身份运行以下命令。

pip 安装 influxdb

pip 安装 --upgrade influxdb

关于python - influxdb python : 404 page not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36846975/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com