Hallo zusammen,
leider musste ich meinen RaspberryPi komplett neu aufsetzten....
Habe dazu Raspberry Pi OS Lite Release date: March 4th 2021 Kernel version: 5.10 installiert und mit apt-get update und apt-get full-upgrade aktualisiert.
Das funktioniert auch alles tadellos!
Im nächsten Schritt möchte ich Influxdb installieren.
Ich habe das Repository aktualisiert mit:
wget -qO- https://repos.influxdata.com/influxdb.key | sudo apt-key add -
echo "deb https://repos.influxdata.com/debian buster stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
Dies wird auch mit ok
und
deb https://repos.influxdata.com/debian buster stable
bestätigt.
Dann:
sudo apt-get update
Hier kommt dann eine Fehlermeldung:
Err:3 https://repos.influxdata.com/debian buster InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 684A14CF2582E0C5
Danach kann ich zwar die Influxdb Installation fortsetzen und auch den Dienst starten
sudo apt install -y influxdb
sudo systemctl enable --now influxdb
und bekomme folgenden Status:
systemctl status influxdb
influxdb.service - InfluxDB is an open-source, distributed, time series database
Loaded: loaded (/lib/systemd/system/influxdb.service; enabled; vendor preset: enabled)
Active: active (running) since Tue 2021-05-04 16:34:12 CEST; 1min 12s ago
Docs: man:influxd(1)
Main PID: 1343 (influxd)
Tasks: 13 (limit: 4915)
CGroup: /system.slice/influxdb.service
└─1343 /usr/bin/influxd -config /etc/influxdb/influxdb.conf
May 04 16:34:12 raspberrypi influxd[1343]: ts=2021-05-04T14:34:12.743524Z lvl=info msg="Registered
May 04 16:34:12 raspberrypi influxd[1343]: ts=2021-05-04T14:34:12.743592Z lvl=info msg="Starting pr
May 04 16:34:12 raspberrypi influxd[1343]: ts=2021-05-04T14:34:12.743632Z lvl=info msg="Starting sn
May 04 16:34:12 raspberrypi influxd[1343]: ts=2021-05-04T14:34:12.743654Z lvl=info msg="Starting co
May 04 16:34:12 raspberrypi influxd[1343]: ts=2021-05-04T14:34:12.743691Z lvl=info msg="Starting HT
May 04 16:34:12 raspberrypi influxd[1343]: ts=2021-05-04T14:34:12.743713Z lvl=info msg="opened HTTP
May 04 16:34:12 raspberrypi influxd[1343]: ts=2021-05-04T14:34:12.743989Z lvl=info msg="Listening o
May 04 16:34:12 raspberrypi influxd[1343]: ts=2021-05-04T14:34:12.744064Z lvl=info msg="Starting re
May 04 16:34:12 raspberrypi influxd[1343]: ts=2021-05-04T14:34:12.744209Z lvl=info msg="Listening f
May 04 16:34:12 raspberrypi influxd[1343]: ts=2021-05-04T14:34:12.744686Z lvl=info msg="Storing sta
Wenn ich aber jetzt versuche die Influxdb Konsole zu starten, um eine DB anzulegen, erhalte ich folgende Fehlermeldung:
influx
-bash: influx: command not found
Ich habe so ziemlich alles versucht, was ich zu diesem Problem im Web, Youtube und Foren finden konnte, ich lande aber immer beim gleichen Ergebnis!
Ich würde mich sehr freuen, wenn jemand Rat weiß.
Vielen Dank
Andreas