Back to Apps
InfluxDb2

Deploy InfluxDb2 on Your Own Server

InfluxDB2 is a time series database. It stores large amounts of timestamped data, including DevOps monitoring, application metrics, IoT sensor data, and real-time analytics.

πŸ—„οΈ DatabasesπŸ“Š AnalyticsπŸ“ˆ Monitoring

Want to deploy InfluxDb2 on your server faster? Try Senate with one-command setup, automatic HTTPS and monitoring.

Get Started

What is InfluxDb2?

Influxdb2 is a time series database, and part of the tickstack. After installation on Senate, it will be available as <service_name> to other Senate apps. Enter your Influxdb configuration parameters and click on next. The default configuration has no users or authentication and is only accessible to other Senate apps. It will take about a minute for the process to finish.

Self-Host InfluxDb2

Follow these steps to deploy on your own server.

1

Install Docker

Skip this step if Docker is already installed on your server.

curl -fsSL https://get.docker.com | sh
2

Configure

Customize the settings below. Defaults work for most cases.

General
3

Deploy

Copy the configuration and run it on your server.

services:
  influxdb2:
    image: influxdb:2.0
    environment:
      DOCKER_INFLUXDB_INIT_ADMIN_TOKEN: a022fa4ecb55d2911bd29334
      DOCKER_INFLUXDB_INIT_BUCKET: my-bucket
      DOCKER_INFLUXDB_INIT_MODE: setup
      DOCKER_INFLUXDB_INIT_ORG: my-org
      DOCKER_INFLUXDB_INIT_PASSWORD: 723973a4f957
      DOCKER_INFLUXDB_INIT_RETENTION: 52w
      DOCKER_INFLUXDB_INIT_USERNAME: username
    volumes:
      - influxdb2-data:/var/lib/influxdb2
      - influxdb2-configs:/etc/influxdb2
volumes:
  influxdb2-data: {}
  influxdb2-configs: {}

Then run:

docker compose up -d
4

Access

Once started, access your app at http://localhost:8086

Why Self-Host InfluxDb2?

Full Data Ownership

Your data stays on your servers. No third-party access.

No Monthly Fees

Pay only for your server. No per-seat or usage charges.

Complete Control

Customize, backup, and scale on your own terms.

Privacy & Compliance

Meet GDPR, HIPAA, or internal security requirements.

Technical Details

Docker Image

influxdb:${influx_version}

Want to go faster?

Try Senate! Senate handles Docker, HTTPS, updates, and monitoring for you. Deploy any of our 300+ apps with a single command.

Install on any Linux server:

sh -c "$(curl -sSL https://get.senate.sh)"