
Deploy InfluxDb on Your Own Server
InfluxDB is a time series database. It stores large amounts of timestamped data, including DevOps monitoring, application metrics, IoT sensor data, and real-time analytics.
Want to deploy InfluxDb on your server faster? Try Senate with one-command setup, automatic HTTPS and monitoring.
What is InfluxDb?
Influxdb is a time series database, and part of the tickstack. After installation on Senate, it will be available as <service_name> at the port you choose (8086 by default) 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 InfluxDb
Follow these steps to deploy on your own server.
Install Docker
Skip this step if Docker is already installed on your server.
curl -fsSL https://get.docker.com | sh
Configure
Customize the settings below. Defaults work for most cases.
General
Deploy
Copy the configuration and run it on your server.
services:
influxdb-db:
image: influxdb:1.8
environment:
INFLUXDB_ADMIN_PASSWORD: ""
INFLUXDB_ADMIN_USER: ""
INFLUXDB_DB: ""
INFLUXDB_HTTP_AUTH_ENABLED: ""
INFLUXDB_READ_USER: ""
INFLUXDB_READ_USER_PASSWORD: ""
INFLUXDB_USER: ""
INFLUXDB_USER_PASSWORD: ""
INFLUXDB_WRITE_USER: ""
INFLUXDB_WRITE_USER_PASSWORD: ""
volumes:
- influxdb-db-data:/var/lib/influxdb
ports:
- $$cap_influxdb_port:8086
- $$cap_graphite_port:2003
volumes:
influxdb-db-data: {}
Then run:
docker compose up -d
Access
Once started, access your app at http://localhost:80
Why Self-Host InfluxDb?
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)"