This product has charges associated with it for image customization, PostgreSQL setup, and Cloudwrxs support. Cloudwrxs Solutions for PostgreSQL 17.5 on Microsoft Windows Server 2025 is a powerful, cloud-ready platform designed to simplify data management, integration, and analytics. It enables organizations with scalable, high-performance database capabilities to optimize operations and support data-driven decision-making.
This is a repackaged software product powered by Cloudwrxs wherein additional charges apply for the preparation of images optimized for PostgreSQL database deployments, including enterprise-ready configurations, performance tuning, and integration with Windows-based data environments. Cloudwrxs Solutions for PostgreSQL 17.5 on Microsoft Windows Server 2025 is a comprehensive, cloud-ready data management platform designed to enhance database performance, scalability, and security. Tailored for enterprises and organizations that rely on PostgreSQL, this solution optimizes data operations, streamlines workflows, and provides the flexibility required for modern business applications. By leveraging AWS cloud infrastructure, Cloudwrxs Solutions ensures high availability, seamless scalability, and enhanced performance for PostgreSQL 17.5 on Microsoft Windows Server 2025. With enterprise-grade security, data governance, and advanced analytics capabilities, businesses can efficiently manage large datasets, improve decision-making processes, and accelerate their digital transformation initiatives.
Highlights
Enterprise-Grade PostgreSQL Deployment : Run PostgreSQL 17.5 on Microsoft Windows Server 2025 with enterprise-class reliability, optimized for high performance, security, and long-term support for mission-critical database workloads.
Centralized Data Management & Integration : Facilitate efficient database administration, high availability setups, and seamless integration with Windows Server 2025 applications to support transactional, analytical, and hybrid data operations.
Security Hardened & Compliance-Ready Build : Safeguard sensitive business data with Windows Server 2025 security enhancements, PostgreSQL authentication and encryption, and compliance-ready configurations aligned with organizational standards.
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.
You pay by the hour for a preconfigured PostgreSQL image running on Windows Server 2025. Pricing is not tiered by features. Instead, you choose an EC2 instance type, and the hourly rate reflects the size and family you select. Options span general-purpose families (t3, m5, m6i), compute-optimized families (c5), and memory-optimized families (r5, r6i). Within each family, larger sizes (medium through 2xlarge) carry higher hourly rates because they provide more compute and memory. You run only what you need, and charges stop when the instance stops.
Top-of-mind questions for buyers
What does one hourly unit cover — the EC2 instance, the operating system, or the PostgreSQL software?
Each hourly rate covers the preconfigured image running on one EC2 instance of the size you pick. That bundles the PostgreSQL software on Windows Server 2025. You pay one hourly charge per running instance. Running more instances multiplies the charge across each one.
Am I charged when the instance is stopped, and is there any long-term commitment?
There is no long-term commitment. You subscribe only for the time you need the image. When the instance is not running, the software charge stops. Note that stopped instances may still incur underlying AWS storage fees, which are separate from this software charge.
Do I pay any separate Windows Server or PostgreSQL license fee on top of the hourly rate?
The hourly rate reflects the running instance you select. Where a license is required, the vendor notes it in the product listing on the cloud provider's website. PostgreSQL is open-source. Check the AWS Marketplace listing page to confirm whether Windows Server licensing is included or billed separately.
cloudwrxs.com
Helpful?
Vendor refund policy
You may terminate the instance at anytime to stop incurring charges.
How can we make this page better?
Tell us how we can improve this page, or report an issue with this product.
Give us feedbackReport a problem with this product or seller
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.
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
PostgreSQL on Microsoft Windows Server 2025 Q2 2026 supported by Cloudwrxs
Additional details
Usage instructions
Prerequisite: IAM Role Requirement (Before Launching the Instance)
Before launching the EC2 instance from this AMI, you must ensure that an IAM Role with AWS Secrets Manager permissions is attached.
During first boot, the PostgreSQL postgres password is:
a. Automatically generated
b. Securely stored in AWS Secrets Manager
If the instance does not have proper IAM permissions, the password will not be stored.
Option 1: Use Existing Role with SecretsManagerReadWrite (Quick Setup)
If you already have an IAM role with the AWS managed policy:
SecretsManagerReadWrite
You may attach that role to the EC2 instance during launch.
Option 2: Recommended (Least Privilege Policy)
Step 1: Create Custom IAM Policy
Go to: IAM, Policies, Create Policy, JSON
Paste:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"secretsmanager:CreateSecret",
"secretsmanager:PutSecretValue",
"secretsmanager:DescribeSecret"
],
"Resource": "arn:aws:secretsmanager:<region>:<account-id>:secret:/awsmarketplace/postgres/*"
}
]
}
Save the policy.
Step 2: Create IAM Role for EC2
Go to IAM, Roles, Create Role
Select AWS Service
Choose EC2
Attach:
a. The custom policy you created
b. (Recommended) AmazonSSMManagedInstanceCore
Name the role (example: PostgresSecretsRole)
Create the role
Step 3: Attach Role During EC2 Launch
When launching the instance from the AMI:
Go to Advanced Details
Under IAM Instance Profile
Select the IAM role you created
Launch the instance
Launch EC2 Instance from AMI
Create Instance from AMI. Retrieve the password from the AWS EC2 console by selecting your instance, Click on Connect for selected Instance, select choosing RDP Client and Get Windows Password, and providing your EC2 key pair to decrypt and log in.
Connect to the Instance via RDP:
Use Remote Desktop Connection (mstsc) on your Windows or Mac machine.
In the Computer field, enter: <your-ec2-public-ip>
Use the Administrator username and the retrieved password from the AWS EC2 console.
Retrieve PostgreSQL Password (Required)
The PostgreSQL administrator password is automatically generated during first boot and securely stored in AWS Secrets Manager.
The installation-time password is NOT valid.
To Retrieve the Password:
a. Go to AWS Console
b. Open AWS Secrets Manager
c. Locate the secret:
/awsmarketplace/postgres/<instance-id>
d. Click Retrieve secret value
e. Copy the password field
Example:
{
"username": "postgres",
"password": "AutoGeneratedSecurePassword",
"engine": "postgres",
"host": "localhost",
"port": 5432
}
Verify PostgreSQL Installation
After connecting via RDP:
Check Version
Open PowerShell:
psql --version
Connect Using psql
& "C:\Program Files\PostgreSQL\17\bin\psql.exe" -U postgres -h localhost
Enter the password retrieved from AWS Secrets Manager when prompted.
Connect Using pgAdmin (Optional GUI)
a. Open pgAdmin from Start Menu
b. Add Server:
Host: localhost
Username: postgres
Password: (retrieved from AWS Secrets Manager)
Changing the PostgreSQL Password (Optional)
If you change the password manually:
a. Open PowerShell as Administrator
b. Connect:
& "C:\Program Files\PostgreSQL\17\bin\psql.exe" -U postgres -h localhost
c. Run:
ALTER USER postgres WITH PASSWORD 'NewStrongPasswordHere';
d. Exit:
\q
If you change the password manually, update the value in AWS Secrets Manager to keep it synchronized.
Support
Vendor support
For more information or to request support, please contact us at: - marketplace@cloudwrxs.com - info@cloudwrxs.com Our team is available to provide tailored advice, support, and a personalized implementation plan for your business.
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.
CloudLens by Cloudwrxs is an AWS intelligence platform for cost optimization, security posture, monitoring, resource inventory, and executive reporting. It helps AWS customers identify savings opportunities, risky configurations, monitoring gaps, and operational improvements across single accounts or AWS Organizations.
Preconfigured SAP S/4HANA 2023 AMI on SUSE SLES 15 for SAP, optimized by Cloudwrxs for rapid AWS deployment, reduced manual setup, and accelerated provisioning of enterprise SAP workloads across sandbox, migration, testing, and production environments.
Cloudwrxs Solution with Apache Cassandra on SUSE SLES 15 delivers high-throughput, distributed data management ideal for real-time analytics, large-scale applications, and time-series data. Seamlessly integrate highly available, decentralized storage into your workflows, enabling scalable, low-latency access across global deployments without the limitations of traditional databases. Built for performance and resilience, the solution empowers modern workloads with continuous availability, strong fault tolerance, and flexible schema design perfect for IoT, big data, and digital platforms. Trust Cloudwrxs to unlock the power of distributed NoSQL on SUSE SLES 15 with enterprise-grade stability and scale.
This product has charges associated with it for Cloudwrxs Solution with MongoDB on RHEL 8 delivers a flexible, document-based NoSQL platform ideal for modern web, mobile, and enterprise applications. Designed for scalability and high availability, MongoDB enables seamless integration of dynamic JSON data with robust querying and indexing capabilities. Perfect for real-time analytics, content management, and distributed systems, this solution offers agility, reliability, and easy deployment on the secure, enterprise-grade RHEL 8 platform.
This product has charges associated with it for Cloudwrxs Solution with MariaDB on SUSE SLES 15 delivers powerful, open-source relational database capabilities optimized for enterprise-grade performance and scalability. Ideal for data-intensive applications, this solution ensures secure, reliable, and efficient data management on a stable, high-performance SUSE SLES 15 platform. Easily integrate advanced SQL querying, high availability, and robust storage into your infrastructure with minimal overhead.
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.