Bitnami package for CouchDB
Bitnami by VMware | 3.4.2-0-r01 on Debian 12Linux/Unix, Debian 12 - 64-bit Amazon Machine Image (AMI)
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.
- Leave a Comment |
- Mark review as helpful
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.