Listing Thumbnail

    Go 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 Go 1.26.3 with CentOS Stream 9, application of a verified operating-system hardening baseline, preparation of the Go compiler and module tooling, and final AMI testing on a documented EC2 baseline.

    Overview

    This product provides Go 1.26.3 integrated with CentOS Stream 9 and delivered as an Amazon Machine Image (AMI) by ThinkCloud. It includes a pre-configured, security-hardened Go development environment for immediate deployment. The original upstream software description is retained below.

    Go (also known as Golang) is an open source programming language developed by Google. It is statically typed, compiled, and designed for simplicity, reliability, and efficiency. Go excels at building scalable network services, command-line tools, and cloud-native applications. It features garbage collection, memory safety, and built-in concurrency support through goroutines and channels.

    Highlights:

    • Ready-to-use Go 1.26.3 development environment pre-installed on CentOS Stream 9
    • Security-hardened OS with minimal attack surface and latest system updates applied
    • Fast compilation and execution for high-performance application development
    • Built-in concurrency model with goroutines for scalable backend services
    • Access to the full Go standard library and go module ecosystem

    This AMI is ideal for developers, DevOps engineers, and teams who need a reliable, production-ready Go development and deployment environment on AWS.

    Marketplace software charges cover seller-performed software and operating-system integration, preparation of included runtime or artifacts, 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

    • CentOS Stream 9 Minimal installation with latest updates
    • Professional technical support and fast response
    • Optimized configuration for Go 1.26.3 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

    Go 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
    g7e.24xlarge
    $0.50
    r6i.metal
    $0.50
    p6-b200.48xlarge
    $0.50
    vt1.6xlarge
    $0.17
    g7e.4xlarge
    $0.17
    g6f.2xlarge
    $0.17
    c7i-flex.large
    $0.05

    AI Insights

     Info

    Dimensions summary

    You pay by the hour for Go running on a hardened CentOS Stream 9 image. Pricing is not tiered by features. Instead, each dimension maps to a specific AWS EC2 instance type, and the software rate scales with the instance you pick. Smaller shared instances like t3.nano or t2.micro carry lower hourly rates. Larger compute, memory, storage, GPU, and bare-metal instances such as p5.48xlarge, x2iedn.metal, or r8i.32xlarge carry higher rates. You choose the instance that fits your workload size, then run it as many hours as you need.

    Top-of-mind questions for buyers

    The rate covers the software license for Go on the hardened CentOS Stream 9 image, billed per running hour on your chosen EC2 instance. It does not include the underlying AWS compute, storage, or data transfer charges. AWS bills those infrastructure costs separately from the software rate shown here.
    The software rate meters running hours. A stopped instance does not accrue software charges. You pay only while the instance runs. Note that AWS may still charge for attached storage on a stopped instance, but that is separate from the software license rate.
    Each dimension maps to one EC2 instance type. The software rate scales with the instance size and class you select. Smaller shared instances carry lower hourly rates. Larger compute, memory, storage, GPU, and bare-metal instances carry higher rates. You pick the instance that fits your workload.
    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.26.3

    Additional details

    Usage instructions

    1. Connection Method:

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

      • Verify Go installation: go version Expected output: go version go1.26.3 (Red Hat 1.26.3-1.el9) linux/amd64
      • Go binary location: /usr/bin/go
      • Default workspace: ~/go (set GOPATH environment variable as needed)
    3. Network Configuration:

      • Port 22 (SSH) must be open in your EC2 security group
      • Open additional ports based on your application requirements
      • Add firewall rule: sudo firewall-cmd --add-port=<port>/tcp --permanent
      • Reload firewall: sudo firewall-cmd --reload
    4. Getting Started:

      • Verify installation: go version
      • Create workspace: mkdir -p ~/go/{bin,pkg,src}
      • Run a Go file: go run main.go
      • Build a binary: go build -o myapp main.go
      • Run tests: go test ./...
    5. Go Module Support:

      • Initialize a new module: go mod init <module-name>
      • Add a dependency: go get <package>
      • Tidy module dependencies: go mod tidy

    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.