Sign in
Categories
Your Saved List Become a Channel Partner Sell in AWS Marketplace Amazon Web Services Home Help

CouchDB powered by Bitnami

  • By CouchDB powered by Bitnami
  • on 07/25/2017

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.


There are no comments to display