Overview
CouchDB is an open source NoSQL database that stores your data with JSON documents, which you can access via HTTP. It allows you to index, combine, and transform your documents with JavaScript.
Trademarks: This software listing is packaged by Bitnami. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement.
Why use Bitnami Certified Apps?
Bitnami certified images are always up-to-date, secure, and built to work right out of the box.
Bitnami packages applications following industry standards, and continuously monitors all components and libraries for vulnerabilities and application updates. When any security threat or update is identified, Bitnami automatically repackages the applications and pushes the latest versions to the cloud marketplaces.
Highlights
- Document-oriented NoSQL database.
- It uses JSON to store data, JavaScript as its query language using MapReduce, and HTTP for an API.
- CouchDB is well suited for applications with accumulating, occasionally changing data, on which pre-defined queries are to be run and where versioning is important.
Details
Typical total price
$0.019/hour
Features and programs
Financing for AWS Marketplace purchases
Pricing
- ...
Instance type | Product cost/hour | EC2 cost/hour | Total/hour |
---|---|---|---|
t2.nano | $0.00 | $0.006 | $0.006 |
t2.micro AWS Free Tier | $0.00 | $0.012 | $0.012 |
t2.small | $0.00 | $0.023 | $0.023 |
t2.medium | $0.00 | $0.046 | $0.046 |
t2.large | $0.00 | $0.093 | $0.093 |
t2.xlarge | $0.00 | $0.186 | $0.186 |
t2.2xlarge | $0.00 | $0.371 | $0.371 |
t3.nano | $0.00 | $0.005 | $0.005 |
t3.micro AWS Free Tier | $0.00 | $0.01 | $0.01 |
t3.small | $0.00 | $0.021 | $0.021 |
Additional AWS infrastructure costs
Type | Cost |
---|---|
EBS General Purpose SSD (gp2) volumes | $0.10/per GB/month of provisioned storage |
Vendor refund policy
N/A
Legal
Vendor terms and conditions
Content disclaimer
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
- Maintenance release
Additional details
Usage instructions
Once the instance is running, access your instance via SSH using the username 'bitnami' and your Amazon private key. The default server administrator is 'admin'. Please check our documentation at https://docs.bitnami.com/aws/faq/get-started/find-credentials/ to learn how to get your password. For additional setup instructions and frequently asked questions please go to https://docs.bitnami.com/aws/infrastructure/couchdb/
Resources
Vendor resources
Support
Vendor support
Bitnami also provides technical documentation for installation and setup issues through our support center at
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
Easy to use
Really easy to use, be careful the port 5984 is not open by default so you should change in config of couchdb and the side of your instance ec2 as well.
Excellent
This is by far the easiest way to set up CouchDB. Just launch an instance, grab the password from the logs, and set up an SSH tunnel to the server. It's crazy that it's free.
CouchDB powered by Bitnami
Thank you for free open source virtual image with preinstalled CouchDB. It's useful for launching VM-instance. I setted options for outside access but this is not enough because by default DB server CouchDB is closed for access from outside. To solve this problem I've read documentation (https://docs.bitnami.com/aws/infrastructure/couchdb/ ) and this instruction helped me. Description is here:
Once the firewall rule is in place, perform these additional steps:
Stop your CouchDB server and edit the /opt/bitnami/couchdb/etc/local.ini file. If required, change the bind_address from 127.0.0.1 to 0.0.0.0:
[chttpd]
port = YOUR_PORT
bind_address = 0.0.0.0
...
[httpd]
bind_address = 0.0.0.0
...
Restart your server for the changes to take effect.
sudo /opt/bitnami/ctlscript.sh restart couchdb
To open this file I used ubuntu nano text editor.
>sudo nano ...
Thank you bitnami.