Search
Influxdb on Linux
Contents
Install Miniconda3
How To Install Anaconda / Miniconda / Conda on Linux (Ubuntu, CentOS, Fedora)
- Download Miniconda from here: https://docs.conda.io/en/latest/miniconda.html
- Install in folder
/opt
:
sudo bash Miniconda3-latest-Linux-x86_64.sh
Install InfluxDB as a service with systemd
https://docs.influxdata.com/influxdb/v2.0/get-started/?t=Linux
Install Influxdb
https://docs.influxdata.com/influxdb/v2.0/get-started/?t=Linux
Download influxdb:
wget https://dl.influxdata.com/influxdb/releases/influxdb2-2.0.6-linux-amd64.tar.gz
Verify the authenticity of downloaded binary:
curl -s https://repos.influxdata.com/influxdb2.key | gpg --import -
wget https://dl.influxdata.com/influxdb/releases/influxdb2-2.0.6-linux-amd64.tar.gz.asc
gpg --verify influxdb2-2.0.6-linux-amd64.tar.gz.asc influxdb2-2.0.6-linux-amd64.tar.gzUnpackage contents to the current working directory:
tar xvzf influxdb2-2.0.6-linux-amd64.tar.gz
Copy unpacked folder to/opt
:
sudo cp influxdb2-2.0.6-linux-amd64.tar.gz /opt
Rename influxdb folder in/opt
:
mv /influxdb2-2.0.6-linux-amd64 /influxdb2
Place the executables in your $PATH:
sudo cp influxdb2/{influx,influxd} /usr/local/bin/
Install Service
https://portal.influxdata.com/downloads/
Download and install (for CentOS)
wget https://dl.influxdata.com/influxdb/releases/influxdb2-2.0.6.x86_64.rpm
sudo yum localinstall influxdb2-2.0.6.x86_64.rpm
to be continued …