Difference between revisions of "Influx"

From UVOO Tech Wiki
Jump to navigation Jump to search
(Created page with "``` apt install influx influx -host myhost SHOW DATABASES USE foo SHOW MEASUREMENTS quit ```")
 
Line 1: Line 1:
 +
Add repo to Ubuntu 22.04/20.04:
 +
```
 +
echo "deb https://repos.influxdata.com/ubuntu focal stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
 +
sudo curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
 +
sudo apt install influxdb2
 +
```
 +
 
```
 
```
 
apt install influx
 
apt install influx

Revision as of 16:11, 3 June 2022

Add repo to Ubuntu 22.04/20.04:

echo "deb https://repos.influxdata.com/ubuntu focal stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
sudo curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
sudo apt install influxdb2
apt install influx
influx -host myhost
SHOW DATABASES
USE foo
SHOW MEASUREMENTS
quit