Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Apache CouchDB http://couchdb.apache.org supports authentication and authorization functionalities. This functionality comes in handy when setting up a production server or when you need to restrict (anonymous) users.

Cloudant also supports authentication https://github.com/cloudant/sync-android#authentication making it easier to connect and authorize opensrp-client application.

Below are the steps required to configure this security functionality: -

  1. Create a new Admin user

    For example, creating a system admin with "anna" as the username and "secret" as the password.

    > HOST="http://127.0.0.1:5984"
    
    > curl -X PUT $HOST/_config/admins/anna -d '"secret"'
    ""



  • No labels