InfluxDB: Unterschied zwischen den Versionen

Aus
Wechseln zu: Navigation, Suche
Zeile 4: Zeile 4:
 
== 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
  
  wget https://dl.influxdata.com/influxdb/releases/influxdb_1.8.4_amd64.deb
+
  curl -s https://repos.influxdata.com/influxdb.key | sudo apt-key add -
  sudo dpkg -i influxdb_1.8.4_amd64.deb
+
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://docs.influxdata.com/influxdb/v1.8/
Zeile 15: Zeile 21:
  
 
== 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"

Version vom 1. März 2021, 13:22 Uhr

Webseite

https://www.influxdata.com/

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/


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"