Bitnami package for CouchDB logo

    Bitnami package for CouchDB

    Up-to-date and secure image. 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.

    Ratings and reviews

    5
    3 ratings
    4 star
    3 star
    2 star
    1 star
    100%
    0%
    0%
    0%
    0%
    3 AWS reviews

    Filters

    Review type

    AWS Marketplace reviews
    External reviews
    Reviews (3)
    Danny

    Easy to use

    Reviewed on Jan 20, 2022
    Review from a verified AWS customer

    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.

    John Shaffer

    Excellent

    Reviewed on Oct 16, 2019
    Review from a verified AWS customer

    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

    CouchDB powered by Bitnami

    Reviewed on Jul 25, 2017
    Review from a verified AWS customer

    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.