rcouch is a static distribution of couchdb using rebar. It is an extraction of the refuge code to ease the distribution of couchdb.
Based on the couchdb code it is tagged from time to time for stability purpose. At some point some supported branch may appear.
RCouch differs from refuge by only focusing on Apache CouchDB. It won't contain any of the refuge features like P2P nodes handling, ... . Internally we are using it to test couchdb and as an example on how to embed couchdb in your own applications.
RCouch is brought you by the Refuge project.
Look at the rcouch
module for the API usage.
Full documentation is available here: https://docs.rcouch.org
main RCOUCH website is http://rcouch.org
- Apache CouchDB based
- View Changes & view based replication
- Optimised for Mobile usage.
- Geospatial queries
- Easily customizable for your usage
- Fully opensource. All the sources are on refuge GIT repository (http://github.com/refuge) under Apache License 2.
- OS supported: Linux, OSX, BSDs (windows support is coming)
- Erlang R15
- Curl
- zip (during build)
- ICU (if not built statically)
- Latest version of rebar installed on your system.
Installation is pretty simple. Just run the command line:
$ make rel
and it will generate a couch folder in rel/couch. This release is fully relocatable, so you can put it where you want on your system. :w
NOTE: make sur to install rebar somewhere in your
PATH
first.
To create package for your system run make package
. For now we build
packages for OSX, Debian, Redhat & Solaris.
##Notes on building a truly distributable package
The package built above will still depend on some libraries from your system, so additional work has to be done to distribute it to older/newer systems.
-
CouchDB will depend on the ICU library version that was present in your system at build time. To easily bundle this library with the package, build with:
$ make rel USE_STATIC_ICU=1
-
Check whether your package depends on Ncurses:
$ ldd ./rel/rcouch/erts-*/bin/erlexec|grep ncurses
If it does, copy the .so file to ./rel/myapp/lib/ or rebuild Erlang without this dependency.
-
Decide whether you need SSL support in your package and check whether it depends on OpenSSL:
$ ldd ./rel/rcouch/lib/ssl-*/priv/bin/ssl_esock|grep 'libcrypto\|libssl'
If it does, copy the .so file to ./rel/rcouch/lib/ or rebuild Erlang without this dependency.
If you copied any .so files in the last 2 steps, run this command, so that your app can find the libraries:
$ sed -i '/^RUNNER_USER=/a\\nexport LD_LIBRARY_PATH="$RUNNER_BASE_DIR/lib"' ./rel/rcouch/bin/rcouch
On most UNIX systems binding port 80 is a privileged operation (requires root). Running Erlang as root is not recommended so some configuration will need to be done so that rcouch can bind port 80.
If you run a recent Linux kernel with capabilities you can give Erlang the privilege using the setcap command (you may need to install a package named lxc or similar to obtain this command).
$ setcap 'cap_net_bind_service=+ep' /path/to/rel/refuge/erts-5.8.5/bin/beam`
$ setcap 'cap_net_bind_service=+ep' /path/to/rel/refuge/erts-5.8.5/bin/beam.smp
On FreeBSD all ports can be made accessible to all users by issuing:
$ sysctl net.inet.ip.portrange.reservedhigh=0
The contributors are listed in AUTHORS. This project uses the Apache License 2 license, see LICENSE.
rcouch uses the C4.1 (Collective Code Construction Contract) process for contributions.
Under C4.1 process, you are more than welcome to help us by:
- join the discussion over anything from design to code style try out
- and submit issue reports
- or feature requests pick a task in
- issues and get it done fork
- the repository and have your own fixes send us pull requests and even
- star this project ^_^
To run the test suite:
$ make test
RCOUCH allows you to buid a package on your platform by running the following command line:
$ make package
Following packages systems are supported: RPM, DEB, Solaris, Freebsd, MacOSX