Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there access control for CouchDB databases like PostgreSQL and MySQL privilege management?

I'm thinking of writing a CouchDB-backed application that will store sensitive data. Is it possible to set things up so that I can get something like MySQL's and PostgreSQL's access control, where particular users on the system (users in the sense of Unix system users) can be denied or granted access to a particular CouchDB database?

like image 791
dan Avatar asked Feb 11 '11 04:02

dan


1 Answers

Absolutely, you can set up users in the _users database. You can assign roles, groups, as well as any other custom fields for each user. In the validate_doc_update function in your design document(s), you can check user roles and approve or deny access based on that. You can also globally assign users as "readers" and "writers". You can authenticate users via Basic HTTP Authentication, OAuth and a variety of other methods.

Refer to the Security Features Overview and Document Update Validation pages on the wiki to get started.

like image 183
Dominic Barnes Avatar answered Oct 16 '22 14:10

Dominic Barnes