How can one install a CouchDB plugin/daemon like couchperuser?
Asked
Active
Viewed 553 times
1 Answers
1
Install any dependencies. couchperuser requires rebar, e.g.
$ brew install rebar
Ensure the plugin directory exists, e.g.
$ mkdir /usr/local/Cellar/couchdb/1.6.0_1/lib/couchdb/plugins
Clone (download) the repo:
$ git clone https://github.com/etrepum/couchperuser.git
Move the plugin files:
$ mv couchperuser /usr/local/Cellar/couchdb/1.6.0_1/lib/couchdb/plugins
Build the plugin files:
$ cd /usr/local/Cellar/couchdb/1.6.0_1/lib/couchdb/plugins/couchperuser
$ make
Restart couchdb

redgeoff
- 3,163
- 1
- 25
- 39
-
Hi! How to install `couchpereuser` in ubuntu installation? – shikhar bansal Apr 06 '17 at 12:20