Listing Thumbnail

    KeyDB on Ubuntu 24.04 support by Easycloud

     Info
    Sold by: EASYCLOUD 
    Deployed on AWS
    AWS Free Tier
    This product has charges associated with it for technical support with a 24-hour response time. This AMI contains KeyDB, a high-performance multithreaded fork of Redis, on Ubuntu 24.04 LTS repackaged by Easycloud. It is fully configured for production environments with multithreading enabled to maximize throughput on multi-core instances.

    Overview

    This is a repackaged open source software product wherein additional charges apply for technical support with a 24-hour response time. KeyDB 6.3, built on a minimal Ubuntu 24.04 installation, is included in this AMI, repackaged by Easycloud. It provides a fully configured, multithreaded KeyDB environment, deliberately engineered to deliver maximum throughput and minimum latency on modern multi-core EC2 instances.

    Core Features & Integrations

    • Ubuntu 24.04 LTS Minimal: A renowned Linux distribution celebrated for its exceptional stability, vast software repository, and strict adherence to open-source principles. As the world's most widely deployed cloud Linux OS and the direct downstream of Debian, it provides unparalleled ecosystem compatibility while delivering a clean, bloat-free, and secure enterprise-grade core.

    Key Benefits

    • Multithreading Enabled: Unlike standard Redis which is single-threaded, this KeyDB installation is pre-configured to utilize multiple threads. This allows vertical scaling on powerful EC2 instances, processing more requests per second without sharding.

    • Drop-in Redis Replacement: Fully compatible with existing Redis modules, scripts, and clients. You can migrate from Redis to KeyDB without changing a single line of your application code.

    • Optimized Configuration: We have pre-tuned the configuration (/etc/keydb/keydb.conf) to enable server threads and CPU affinity, ensuring the database engine fully utilizes the underlying hardware resources immediately upon launch.

    • Production Ready: Based on a hardened, minimal installation of Ubuntu 24.04, updated with the latest security patches.

    • The High-Performance In-Memory and Data Layer: By starting with a bloat-free Ubuntu 24.04 base, every core and byte of memory is dedicated entirely to the KeyDB engine - enabling the multithreaded performance gains that make it a superior drop-in replacement for Redis and Memcached. This makes it the perfect, conflict-free foundation for high-concurrency caching, real-time pub/sub messaging, and session management across all leading application stacks (Python, Node.js, PHP, Go). It integrates seamlessly with relational backends (PostgreSQL, MySQL) and NoSQL data layers (MongoDB, Apache Cassandra, Couchbase, CouchDB, ArangoDB, Neo4j), pairs natively with search and analytics engines (Elasticsearch, ClickHouse, InfluxDB), and serves as a rock-solid in-memory layer for streaming architectures (NATS, RethinkDB), all within containerized deployments (Docker), ensuring your high-throughput data infrastructure scales without limits.

    • Production Ready & Expert Support: Secured with the latest OS patches. It delivers a highly stable environment, fully supported by comprehensive documentation and fast technical assistance (guaranteed 24-hour response time) to ensure your infrastructure runs smoothly without costly downtime.

    Highlights

    • KeyDB 6.3: Best-practice deployment.
    • Ubuntu 24.04 (Minimal Installation), updated to the latest version.
    • Expert Support: Backed by comprehensive documentation and fast, professional technical assistance.

    Details

    Delivery method

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

    Latest version

    Operating system
    Ubuntu 24.04

    Deployed on AWS
    New

    Introducing multi-product solutions

    You can now purchase comprehensive solutions tailored to use cases and industries.

    Multi-product solutions

    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

    KeyDB on Ubuntu 24.04 support by Easycloud

     Info
    Pricing is based on actual usage, with charges varying according to how much you consume. 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.

    Usage costs (784)

     Info
    • ...
    Dimension
    Cost/hour
    t3.medium
    Recommended
    $0.01
    t3.micro
    $0.01
    t2.micro
    $0.00
    r6id.16xlarge
    $0.05
    x8aedz.xlarge
    $0.05
    c6a.4xlarge
    $0.05
    r5b.16xlarge
    $0.05
    i7i.12xlarge
    $0.05
    g4ad.2xlarge
    $0.05
    f2.6xlarge
    $0.05

    Vendor refund policy

    No refunds. Cancel anytime.

    How can we make this page better?

    Tell us how we can improve this page, or report an issue with this product.
    Tell us how we can improve this page, or report an issue with this product.

    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

    Latest Updates

    Additional details

    Usage instructions

    Connection Methods

    Access the instance via SSH using the ubuntu user.Use sudo to run commands requiring root privileges.To switch to the root user, run: sudo su - root.

    Install Information

    Operating System: Ubuntu 24.04 LTS

    KeyDB Version: 6.3.4

    Redis Compatibility: 6.3.4 (100% Redis API compatible)

    Default Port: 6379

    Configuration File: /etc/keydb/keydb.conf

    Multithreading Config: /etc/keydb/keydb-threads.conf

    Data Directory: /var/lib/keydb

    Service Management

    Start KeyDB service by running: sudo systemctl start keydb-server

    Stop KeyDB service by running: sudo systemctl stop keydb-server

    Restart KeyDB service by running: sudo systemctl restart keydb-server

    Check KeyDB status by running: sudo systemctl status keydb-server

    Quick Verification Commands

    Enter the interactive console by running: keydb-cli

    Check KeyDB server version by running: keydb-server --version

    Check KeyDB CLI version by running: keydb-cli --version

    Enter the interactive console by running: keydb-cli

    External Access Configuration (Optional)

    Security Note: External access is disabled by default to prevent unauthorized access.

    Step 1. Open configuration file by running: sudo nano /etc/keydb/keydb.conf

    Step 2. Allow external connections by changing bind 127.0.0.1 to bind 0.0.0.0

    Step 3. Enable password protection by uncommenting and setting the requirepass parameter (e.g., requirepass StrongPassword123!)

    Step 4. Save and exit the file (Ctrl+O, Enter, Ctrl+X).

    Step 5. Apply changes by running: sudo systemctl restart keydb-server

    Step 6. Connect remotely by running: keydb-cli -h YOUR_IP -p 6379 -a StrongPassword123!

    Firewall Configuration

    SSH (Port 22): Required for initial system access.KeyDB/Redis (Port 6379): Required for database connections.

    Security Recommendation: Strictly limit access to Port 6379 to trusted application server IPs only via AWS Security Groups.

    Documentation

    For a detailed installation and management guide, please visit:https://www.easyclouds.io/docs/keydb-guide  

    Support

    Vendor support

    Should you encounter any issues while using the system, please do not hesitate to contact us via email at: support@easyclouds.io . Thank you!

    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 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.