Listing Thumbnail

    Memcached On CentOS Stream 9 with support by ThinkCloud

     Info
    Sold by: ThinkCloud 
    Deployed on AWS
    AWS Free Tier
    This product has charges associated with it for seller support. This is open source software, which is repackaged by ThinkCloud. The additional cost is applicable to the extended support of 24-hour response time. A repackaged Memcached 1.6.9 environment on CentOS Stream 9, including support.

    Overview

    This product has charges associated with it for seller support. This is open source software, which is repackaged by ThinkCloud. The additional cost is applicable to the extended support of 24-hour response time. A repackaged Memcached 1.6.9 environment on CentOS Stream 9, including support. It offers a pre-configured, security-hardened environment designed for immediate deployment.

    Memcached is a high-performance, distributed in-memory object caching system designed to speed up dynamic web applications by alleviating database load. It is simple yet powerful, storing arbitrary data in memory using a simple key-value model. Memcached is widely used to cache database query results, session data, and rendered page fragments, reducing latency and improving application throughput at scale.

    Benefits:

    • Memcached 1.6.9 pre-installed and configured with automatic startup on boot
    • Ready-to-use cache service on port 11211 with 64 MB default cache size
    • Security-hardened CentOS Stream 9 base with minimal attack surface and latest updates
    • Easily tunable cache size and connection limits via /etc/sysconfig/memcached
    • Lightweight memory footprint ideal for high-throughput caching workloads
    • 24-hour professional technical support from ThinkCloud experts

    This AMI is ideal for web developers and DevOps engineers who need a fast, reliable distributed caching layer to reduce database load and accelerate application response times on AWS.

    Highlights

    • Professional technical support and fast response
    • Optimized configuration for Memcached 1.6.9 on CentOS Stream 9

    Details

    Delivery method

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

    Latest version

    Operating system
    CentOs 9

    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

    Memcached On CentOS Stream 9 with support by ThinkCloud

     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. Alternatively, you can pay upfront for a contract, which typically covers your anticipated usage for the contract duration. Any usage beyond contract will incur additional usage-based costs.
    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 (770)

     Info
    • ...
    Dimension
    Cost/hour
    t3.large
    Recommended
    $0.05
    t2.micro
    $0.05
    t3.micro
    $0.05
    m7i.xlarge
    $0.17
    g2.2xlarge
    $0.17
    h1.4xlarge
    $0.17
    i2.4xlarge
    $0.17
    r6i.large
    $0.05
    m6id.16xlarge
    $0.50
    x2idn.metal
    $0.50

    AI Insights

     Info

    Dimensions summary

    You pay by the hour for Memcached running on CentOS Stream 9, billed per running instance. Pricing is not tiered. Instead, you pick the AWS EC2 instance type that fits your workload, and the hourly software rate follows that choice. Options span many instance families, including general-purpose, compute-optimized, memory-optimized, storage, and accelerated types. Sizes range from small instances to large multi-core and bare-metal configurations. Larger or more specialized instances carry higher hourly rates. You scale cost by starting or stopping instances and by selecting a size that matches your capacity needs. ThinkCloud provides vendor support.

    Top-of-mind questions for buyers

    One unit is one running EC2 instance of the type you select, billed per hour. Each instance runs Memcached, an in-memory data cache, on the CentOS Stream 9 operating system. The hourly software rate applies while that instance is running, and it varies by the instance type you choose.
    The software rate meters running time only. A stopped instance does not accrue software charges. Separate AWS charges, such as storage for attached volumes, may still apply while the instance is stopped. To stop the software cost, stop or terminate the instance.
    There are no tiers. Cost tracks the instance type you pick. Smaller general-purpose types carry lower hourly rates. Larger multi-core, memory-optimized, storage, accelerated, or bare-metal types carry higher rates. Choose a type that matches your capacity, then start or stop instances to control total spend.
    www.thinkclouds.ai
    Helpful?

    Vendor refund policy

    No refunds provided after usage starts.

    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

    v1.6

    Additional details

    Usage instructions

    1. Connection Method:

      • SSH into the instance: ssh -i your-key.pem ec2-user@<public-ip>
      • Use sudo for administrative operations: sudo su -
    2. Application Details:

      • Memcached version: memcached --version Expected output: memcached 1.6.9
      • Binary: /usr/bin/memcached
      • Config file: /etc/sysconfig/memcached
      • Default port: 11211
      • Default cache size: 64 MB (configurable in /etc/sysconfig/memcached)
    3. Service Management:

      • Start Memcached: sudo systemctl start memcached
      • Stop Memcached: sudo systemctl stop memcached
      • Restart Memcached: sudo systemctl restart memcached
      • Check status: sudo systemctl status memcached
      • Memcached is enabled and starts automatically on boot
    4. Network Configuration:

      • Port 22 (SSH) must be open in your EC2 security group
      • Memcached listens on port 11211 - do not expose this port publicly
      • To allow access from your application servers only, restrict port 11211 to trusted IPs
      • Add firewall rule: sudo firewall-cmd --add-port=11211/tcp --permanent
      • Reload firewall: sudo firewall-cmd --reload
    5. Configuration and Getting Started:

      • Edit config: sudo vi /etc/sysconfig/memcached
      • Adjust cache size (CACHESIZE), max connections (MAXCONN), and port (PORT) in the config file
      • Test connectivity: echo 'stats' | nc 127.0.0.1 11211
      • Set a key: echo 'set mykey 0 300 5\r\nhello\r\n' | nc 127.0.0.1 11211
      • Get a key: echo 'get mykey\r\n' | nc 127.0.0.1 11211

    Support

    Vendor support

    If you encounter problems in the process of using the system, please feel free to contact us by email: support@thinkclouds.ai !

    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.