Listing Thumbnail

    Cloudwrxs - PostgreSQL on Microsoft Windows Server 2022

     Info
    Sold by: Cloudwrxs 
    Deployed on AWS
    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 2022 is a robust, cloud-enabled platform designed to streamline data management, integration, and processing. It empowers organizations with scalable, high-performance capabilities to optimize database operations and drive informed decision-making.

    Overview

    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 2022 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 needed 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 2022. With enterprise-grade security, data governance, and robust analytics capabilities, businesses can efficiently manage large datasets, improve decision-making, and accelerate digital transformation.

    Highlights

    • Enterprise-Grade PostgreSQL Deployment : Run PostgreSQL 17.5 on Microsoft Windows Server 2022 with enterprise-class reliability, optimized for performance, security, and long-term operational support for critical database workloads.
    • Centralized Data Management & Integration : Enable efficient database administration, high availability configurations, and seamless integration with Windows-based applications to support transactional, analytical, and hybrid data operations.
    • Security Hardened & Compliance-Ready Build : Protect sensitive enterprise data with Windows-native security features, PostgreSQL authentication and encryption, and compliance-aligned configurations to meet stringent organizational standards.

    Details

    Delivery method

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

    Latest version

    Operating system
    Win2022 2022 Base

    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

    Cloudwrxs - PostgreSQL on Microsoft Windows Server 2022

     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.

    Usage costs (12)

     Info
    Dimension
    Cost/hour
    m5.large
    Recommended
    $0.79
    t3.medium
    $0.79
    m5.xlarge
    $0.79
    t3.large
    $0.79
    m6i.large
    $0.79
    r5.large
    $0.79
    m6i.xlarge
    $0.79
    t3.xlarge
    $0.79
    r6i.large
    $0.79
    c5.2xlarge
    $0.79

    Vendor refund policy

    You may terminate the instance at anytime to stop incurring charges.

    How can we make this page better?

    We'd like to hear your feedback and ideas on how to improve this page.
    We'd like to hear your feedback and ideas on how to improve this page.

    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

    PostgreSQL on Microsoft Windows Server 2022 Q1 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

    1. Go to IAM, Roles, Create Role
    2. Select AWS Service
    3. Choose EC2
    4. Attach: a. The custom policy you created b. (Recommended) AmazonSSMManagedInstanceCore
    5. Name the role (example: PostgresSecretsRole)
    6. Create the role

    Step 3: Attach Role During EC2 Launch When launching the instance from the AMI:

    1. Go to Advanced Details

    2. Under IAM Instance Profile

    3. Select the IAM role you created

    4. Launch the instance

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

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

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

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

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

    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.