Listing Thumbnail

    Fully Managed, Secured, and Optimized InfluxDB

     Info
    Deployed on AWS
    AWS Free Tier
    Fully automated InfluxDB 3 AMI with preconfigured Docker deployment, secure first-boot setup, SSL automation, domain mapping, and admin UI. Optimized for quick, reliable, production-ready time-series data storage on AWS.

    Overview

    This AMI provides a fully automated, production-ready installation of InfluxDB 3, deployed using Docker and carefully engineered to make setup fast, secure, and predictable.

    On first boot, the AMI initializes your InfluxDB environment through guided automation. It securely generates all required tokens, creates admin credentials, validates DNS mapping, configures Apache reverse proxy, and automatically provisions free SSL certificates using Let's Encrypt. The entire process ensures that your InfluxDB endpoint is ready to use with HTTPS, Basic Authentication, and a clean directory structure.

    The included management scripts allow for seamless provisioning, safe re-runs, and automated recovery in case of interrupted setup. The UI is accessible through the web dashboard with your generated admin token and domain.

    This AMI is ideal for teams deploying observability, analytics, IoT, and time-series workloads who want a hardened, automated, and secure InfluxDB environment on AWS.

    Highlights

    • Runs preinstall, domain validation, SSL provisioning, and InfluxDB token generation automatically without exposing sensitive output to the user.
    • Includes HTTPS via Let's Encrypt, Apache reverse proxy, Basic Auth, clean filesystem preparation, and auto-generated admin credentials.
    • InfluxDB 3 core and UI are deployed via Docker Compose with persistent volumes, ensuring reliable upgrades, restarts, and smooth lifecycle management.

    Details

    Delivery method

    Delivery option
    64-bit (x86) Amazon Machine Image (AMI)

    Latest version

    Operating system
    Ubuntu 24.04

    Deployed on AWS

    Unlock automation with AI agent solutions

    Fast-track AI initiatives with agents, tools, and solutions from AWS Partners.
    AI Agents

    Features and programs

    Financing for AWS Marketplace purchases

    AWS Marketplace now accepts line of credit payments through the PNC Vendor Finance program. This program is available to select AWS customers in the US, excluding NV, NC, ND, TN, & VT.
    Financing for AWS Marketplace purchases

    Pricing

    Fully Managed, Secured, and Optimized InfluxDB

     Info
    This product is available free of charge. Free subscriptions have no end date and may be canceled any time.
    Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator  to estimate your infrastructure costs.
    If you are an AWS Free Tier customer with a free plan, you are eligible to subscribe to this offer. You can use free credits to cover the cost of eligible AWS infrastructure. See AWS Free Tier  for more details. If you created an AWS account before July 15th, 2025, and qualify for the Legacy AWS Free Tier, Amazon EC2 charges for Micro instances are free for up to 750 hours per month. See Legacy AWS Free Tier  for more details.

    Vendor refund policy

    This product is currently offered free of charge on AWS Marketplace. Since there are no fees associated with the use of this AMI, refunds are not applicable.

    Buyers may cancel use of the product at any time by terminating the associated Amazon EC2 instance.

    For any questions or concerns, please contact: Perimattic.com Email: aws@perimattic.com 

    How can we make this page better?

    We'd like to hear your feedback and ideas on how to improve this page.
    We'd like to hear your feedback and ideas on how to improve this page.

    Legal

    Vendor terms and conditions

    Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA) .

    Content disclaimer

    Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.

    Usage information

     Info

    Delivery details

    64-bit (x86) Amazon Machine Image (AMI)

    Amazon Machine Image (AMI)

    An AMI is a virtual image that provides the information required to launch an instance. Amazon EC2 (Elastic Compute Cloud) instances are virtual servers on which you can run your applications and workloads, offering varying combinations of CPU, memory, storage, and networking resources. You can launch as many instances from as many different AMIs as you need.

    Version release notes
    1. Added fully automated first-boot setup including domain validation, DNS checks, and SSL certificate provisioning.
    2. Implemented automated InfluxDB 3 deployment using Docker Compose with persistent storage directories.
    3. Auto-generation of admin token and credentials during installation, with secure storage inside .env.
    4. Introduced Apache reverse proxy configuration with HTTPS support and automatic Let's Encrypt SSL issuance.
    5. Added Basic Authentication protection for the InfluxDB UI using auto-created htpasswd credentials.
    6. Improved error handling and recovery using a failsafe script that retries failed setup steps safely.
    7. Enhanced directory initialization for data, config, plugins, and UI database with clean recreation on installation.
    8. Integrated automated session secret creation for secure UI sessions.
    9. Added customizable domain and admin email prompts to enforce secure, domain-based deployments.
    10. Bundled InfluxDB UI (Admin Mode) for simplified database management and configuration from the browser.

    Additional details

    Usage instructions

    1. Launch an Instance

    From AWS Marketplace, click Continue to Subscribe, then Continue to Configuration, and launch the AMI.

    1. Choose the Recommended Instance Type

    Select t2.medium or higher for smooth InfluxDB 3 and UI performance.

    InfluxDB involves continuous data ingestion - larger instance types improve write throughput, query performance, and UI responsiveness.

    1. Configure Security Group

    Allow inbound traffic on the following ports:

    • 22 (SSH) - For secure terminal access
    • 80 (HTTP) - Required temporarily for SSL validation
    • 443 (HTTPS) - To securely access the InfluxDB UI
    1. Connect to the Instance

    ssh -i <your-key.pem> ubuntu@<public-ip>

    1. First-Boot Setup

    On first boot, the AMI automatically launches an interactive guided setup:

    • Detects the public IP address of the server
    • Prompts for the domain name to map to your InfluxDB instance
    • Validates DNS and checks A-record propagation
    • Asks for the admin email (used for SSL certificate generation)
    • Generates a secure admin password
    • Creates and stores all credentials in /opt/app/.env
    • Configures Apache as a reverse proxy for HTTPS access
    • Automatically requests and installs a Let's Encrypt SSL certificate
    • Deploys InfluxDB and the InfluxDB UI using Docker Compose
    • Generates and injects the InfluxDB admin token into configuration files

    After setup completes, InfluxDB becomes fully accessible over HTTPS.

    1. Configure DNS

    Before (or during) the setup script, add this DNS A record in your domain provider:

    yourdomain.com <your-instance-public-IP>

    The script checks DNS propagation across multiple resolvers and continues only when the domain resolves correctly.

    1. Automatic SSL Setup

    Once DNS mapping is validated:

    • A free SSL certificate is issued using Let's Encrypt
    • HTTPS is activated on Apache
    • Your InfluxDB UI becomes accessible only over a secure connection
    • Basic Authentication is automatically enabled for added security
    1. Start or Restart InfluxDB Manually (if needed)

    cd /opt/app docker compose ps docker compose restart

    You can also run setup.sh again if the Docker stack needs rebuilding.

    1. Access the InfluxDB Web UI

    Open your browser and visit:

    https://<your-domain>

    You will be prompted for HTTP Basic Auth (username: root).

    Then you can log into the InfluxDB UI using the admin password stored in .env.

    1. Login Credentials

    Your credentials and tokens are stored here:

    cat /opt/app/.env

    This file includes:

    • ADMIN_EMAIL
    • ADMIN_PASSWORD (used for Basic Auth & secure access)
    • INFLUXDB_TOKEN (InfluxDB admin token)
    • SESSION_SECRET
    • DOMAIN

    Support

    Vendor support

    For any assistance or inquiries, our dedicated support team is here to help 24/7. Feel free to reach out to us anytime. Email: aws@perimattic.com  We are committed to providing timely and effective solutions to meet your needs.

    AWS infrastructure support

    AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.

    Similar products

    Customer reviews

    Ratings and reviews

     Info
    0 ratings
    5 star
    4 star
    3 star
    2 star
    1 star
    0%
    0%
    0%
    0%
    0%
    0 AWS reviews
    No customer reviews yet
    Be the first to review this product . We've partnered with PeerSpot to gather customer feedback. You can share your experience by writing or recording a review, or scheduling a call with a PeerSpot analyst.