Listing Thumbnail

    Memcached 1.6.9 on CentOS Stream 9 Hardened by ThinkCloud

     Info
    Sold by: ThinkCloud 
    Deployed on AWS
    AWS Free Tier
    This product has charges associated with it for seller-performed integration of Memcached 1.6.9 with CentOS Stream 9, application of a verified operating-system hardening baseline, preparation of cache service configuration and startup settings, and final AMI testing on a documented EC2 baseline.

    Overview

    This product provides Memcached 1.6.9 integrated with CentOS Stream 9 and delivered as an Amazon Machine Image (AMI) by ThinkCloud. The image includes a pre-configured, security-hardened distributed cache service with startup and connection settings for immediate deployment.

    Memcached is a distributed in-memory object caching system that reduces database load and latency for dynamic web applications. This AMI provides a cache service on port 11211 with a 64 MB default cache size, tunable cache limits, and connection settings through /etc/sysconfig/memcached.

    The lightweight service is suitable for caching database query results, session data, and rendered page fragments in web and DevOps workloads.

    Marketplace software charges cover seller-performed software and operating-system integration, preparation of cache service configuration, application of the verified hardening baseline, repeatable image construction, and final AMI testing. Support and maintenance are supplementary services and are not the sole basis for the software charges.

    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 1.6.9 on CentOS Stream 9 Hardened 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.