How to install InfluxDB on Ubuntu 22.04

In this article, we will see How to install InfluxDB on Ubuntu 22.04 step by step.

InfluxDB is an open source time series database. It has everything you need from a time series platform in a single binary – a multi-tenanted time series database, UI and dashboarding tools, background processing and monitoring agent. All this makes deployment and setup a breeze and easier to secure.

Install InfluxDB on Ubuntu 22.04

1. Download .deb package using below command.

wget https://dl.influxdata.com/influxdb/releases/influxdb2-2.7.1-amd64.deb

How to install InfluxDB on Ubuntu 22.04

2. Install influxdb using .deb package.

sudo dpkg -i influxdb2-2.7.1-amd64.deb

3. Now enable influxdb service.

sudo systemctl enable influxdb

4. Now start influxdb service.

sudo systemctl start influxdb

5. Verify the status of influxdb on UBuntu Linux.

sudo systemctl status influxdb

6. Now update the firewall rules to allow tcp port 8086

sudo ufw allow 8086/tcp

7. Now open web browser and provide the url localhost:8086 and hit enter.

For remaining steps, please follow below video.

Leave a Reply

Your email address will not be published. Required fields are marked *