This product has charges associated with it for image customization, CouchDB setup, and Cloudwrxs support. Cloudwrxs Solutions for CouchDB on Microsoft Windows Server 2025 is a robust, production-ready NoSQL platform designed to simplify document-oriented data management and application integration. It empowers organizations with scalable, reliable database capabilities to support modern web, mobile, and offline-first applications efficiently.
This is a repackaged software product powered by Cloudwrxs wherein additional charges apply for the preparation of images optimized for CouchDB deployments, including enterprise-ready configurations, performance tuning, and integration with Windows-based environments. Cloudwrxs Solutions for CouchDB on Microsoft Windows Server 2025 is a comprehensive, production-ready NoSQL database platform designed to simplify document-oriented data management, improve scalability, and enhance data consistency for modern business applications. Tailored for enterprises and developers leveraging CouchDB, this solution optimizes database operations, streamlines workflows, and ensures flexibility required for offline-first and distributed applications. By leveraging AWS cloud infrastructure, Cloudwrxs Solutions ensures high availability, seamless scalability, and robust performance for CouchDB on Microsoft Windows Server 2025. With built-in RESTful APIs, JSON storage, MapReduce querying, and multi-master replication, businesses can efficiently manage unstructured data, build responsive web and mobile apps, and accelerate digital transformation initiatives with confidence.
Highlights
Enterprise-Grade CouchDB Deployment : Deploy CouchDB on Microsoft Windows Server 2025 with enterprise-class reliability, optimized for performance, availability, and long-term operational support for mission-critical applications.
Document-Oriented Data Management : Enable seamless management of JSON-based document stores, with RESTful API access and MapReduce querying to support web-scale data operations and application integration.
Offline-First and Distributed Applications : Support offline-capable mobile apps and distributed systems using CouchDB master-master replication and synchronization features for robust data consistency. Security Hardened & Compliance-Ready Build : Protect sensitive data with Windows Server 2025 security features, CouchDB user authentication, 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 CouchDB running on Windows Server 2025. Pricing scales with the EC2 instance you choose, so the rate rises with compute size and family. General-purpose instances (t3.medium, t3.large, t3.xlarge, m5.large, m5.xlarge, m6i.large, m6i.xlarge) suit balanced workloads. Compute-optimized instances (c5.large, c5.xlarge, c5.2xlarge) favor processing power. Memory-optimized instances (r5.large, r6i.large) favor larger memory needs. Larger sizes within each family cost more per hour. There is no long-term commitment; you pay only while the image runs and stop charges when it is off.
Top-of-mind questions for buyers
What do I actually get when I launch one of these hourly instances?
You get a preconfigured machine image with Apache CouchDB installed on Windows Server 2025. You choose an EC2 instance type, which sets the CPU, memory, and network profile. The image runs on the AWS infrastructure you select, and you manage it like any other virtual machine.
Am I charged when the instance is stopped or not running?
No. You pay only while the image runs. If the instance is stopped, the software charge stops too. There is no long-term commitment. Note that underlying AWS storage for a stopped instance may still incur separate AWS fees billed by the cloud provider.
Do I pay Cloudwrxs directly, and are software licenses included in the price?
You do not pay Cloudwrxs directly. Any payment is collected by the cloud provider. Where a license is required, Cloudwrxs notes it in the product listing. CouchDB is open source, and the hourly rate covers the packaged image running on Windows Server 2025.
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
CouchDB 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 MariaDB root 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/mariadb/*"
}
]
}
Save the policy.
Step 2: Create IAM Role for EC2
Go to IAM, Roles, Create Role
2.Select AWS Service
Choose EC2
Attach:
a. The custom policy you created
b. (Recommended) AmazonSSMManagedInstanceCore
Name the role (example: MariaDBSecretsRole)
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 Windows password from the AWS EC2 console:
Select your instance
Click Connect
Choose RDP Client
Click Get Windows Password
Upload your EC2 key pair to decrypt
Retrieve the Administrator password
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>
Log in using:
Username: Administrator
Password: Retrieved from AWS EC2 console
Retrieve CouchDB Admin Password (Required)
The CouchDB 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/couchdb/<instance-id>
d. Click Retrieve secret value
e. Copy the password field
Example:
{
"username": "admin",
"password": "AutoGeneratedSecurePassword",
"engine": "couchdb",
"host": "localhost",
"port": 5984
}
Verify CouchDB Installation
After connecting via RDP:
Check CouchDB Service Status
Open PowerShell:
Get-Service couchdb
Status should be:
Running
Verify via Browser (Local Access)
Open browser on the server:
http://localhost:5984/_utils/
This opens the CouchDB Fauxton UI.
Login with:
Username:
admin
Password:
Retrieved from AWS Secrets Manager
Connect Remotely (Optional)
If allowing remote access:
Open Windows Firewall for port 5984
Update CouchDB local.ini bind address if required
Default API endpoint:
http://<instance-public-ip>:5984
Login with:
Username: admin
Password: Retrieved from AWS Secrets Manager
Changing the CouchDB Admin Password (Optional)
If you change the password manually:
Option A: Using Fauxton UI
Option B: Direct API Call
From PowerShell:
$pair = "admin:CurrentPassword"
$encoded = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes($pair))
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.