InfluxDB
de ATH Infosystems
Version 3.8.0 + Free Support on Ubuntu 24.04
InfluxDB is a high-performance, open-source time-series database optimized for storing and analyzing metrics, events, and real-time data. Designed for modern monitoring, IoT, DevOps, and analytics workloads, InfluxDB provides fast ingestion, powerful query capabilities, and an intuitive user interface for exploring time-series data.
Features of InfluxDB:
- Provides high-speed read and write performance for real-time metrics, logs, and sensor data.
- Supports powerful query capabilities for time-series analysis.
- Includes a web-based Explorer UI for data visualization and management.
- Integrates with tools such as Grafana, Telegraf, Kubernetes, and IoT platforms.
- Offers secure access, data storage management, and API support.
InfluxDB Installation and Usage:
$ sudo su $ cd /opt/ # Pull InfluxDB Core image $ docker pull influxdb:3-core # Pull InfluxDB Explorer UI image $ docker pull influxdata/influxdb3-ui:latest # Run Explorer UI container $ docker run -d \ --name influxdb3-explorer \ -p 8888:80 \ influxdata/influxdb3-ui:latest # Remove old container if exists $ docker rm influxdb3 # Run InfluxDB Core container with required configuration $ docker run -d \ --name influxdb3 \ -p 8181:8181 \ -v influxdb3-data:/var/lib/influxdb3 \ influxdb:3-core \ influxdb3 serve \ --node-id node0 \ --object-store file \ --data-dir /var/lib/influxdb3 # start the Containers $ docker start influxdb3 $ docker start influxdb3-explorer # Verify running containers $ docker ps | grep influx # Verify InfluxDB version $ docker exec influxdb3 influxdb3 --version
Access the InfluxDB Explorer UI in your browser:
http://YOUR_SERVER_IP:8888
Disclaimer: InfluxDB® is an open-source time-series database distributed under the MIT License. It is not affiliated with, endorsed by, or sponsored by any company in this documentation. InfluxDB is provided "as is" without any warranties, express or implied. Users assume all responsibility for installation, configuration, and usage. Please review official licensing terms before production use.