InfluxDB: Unterschied zwischen den Versionen

Aus
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „== Webseite == https://www.influxdata.com/ == Installation == https://portal.influxdata.com/downloads/ Ubuntu & Debian SHA256: ad4058db83f424dad21337f3d71…“)
 
 
(6 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
 
== Webseite ==
 
== Webseite ==
https://www.influxdata.com/
+
https://www.influxdata.com/
 +
 
 +
== Spickzettel ==
 +
https://www.symablog.de/blog/influxdb-instalieren/
  
 
== Installation ==
 
== Installation ==
  
  https://portal.influxdata.com/downloads/
+
  For Debian users, add the InfluxData repository:
  Ubuntu & Debian
+
wget -qO- https://repos.influxdata.com/influxdb.key | sudo apt-key add -
  SHA256: ad4058db83f424dad21337f3d7135de921498b652d67e2fcd2e2e070d2997a2d
+
source /etc/os-release
 +
  echo "deb https://repos.influxdata.com/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
 +
 
 +
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
 +
source /etc/os-release
 +
echo "deb https://repos.influxdata.com/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
 +
 
 +
Then, install and start the InfluxDB service:
 +
sudo apt-get update && sudo apt-get install influxdb
 +
sudo service influxdb start
 +
 
 +
  https://docs.influxdata.com/influxdb/v1.8/
  
  wget https://dl.influxdata.com/influxdb/releases/influxdb_1.8.4_amd64.deb
+
  https://josefliedl.de/influxdb-auf-raspberry-installieren/
sudo dpkg -i influxdb_1.8.4_amd64.deb
 
  
https://docs.influxdata.com/influxdb/v1.8/
+
== DOCKER ==
 +
docker run -p 8086:8086      -v influxdb:/var/lib/influxdb       influxdb:1.8
  
  
 
== Configuration ==
 
== Configuration ==
 +
 +
nano /etc/influxdb/influxdb.conf
 +
 +
[http]
 +
  # Determines whether HTTP endpoint is enabled.
 +
  enabled = true
 +
  # The bind address used by the HTTP service.
 +
  bind-address = ":8085"
 +
 +
 +
== Server ==
 +
192.168.0.91:8086
 +
92.60.39.68:8085

Aktuelle Version vom 3. Mai 2022, 00:37 Uhr

Webseite

https://www.influxdata.com/

Spickzettel

https://www.symablog.de/blog/influxdb-instalieren/

Installation

For Debian users, add the InfluxData repository:
wget -qO- https://repos.influxdata.com/influxdb.key | sudo apt-key add -
source /etc/os-release
echo "deb https://repos.influxdata.com/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
source /etc/os-release
echo "deb https://repos.influxdata.com/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
Then, install and start the InfluxDB service:
sudo apt-get update && sudo apt-get install influxdb
sudo service influxdb start
https://docs.influxdata.com/influxdb/v1.8/
https://josefliedl.de/influxdb-auf-raspberry-installieren/

DOCKER

docker run -p 8086:8086       -v influxdb:/var/lib/influxdb       influxdb:1.8


Configuration

nano /etc/influxdb/influxdb.conf

[http]

 # Determines whether HTTP endpoint is enabled.
  enabled = true
 # The bind address used by the HTTP service.
  bind-address = ":8085"


Server

192.168.0.91:8086
92.60.39.68:8085