Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Thank you very much for the posting!
I only have a few notes below:
(1) It works also for couchdb version 1.4 i.e. in “Grab the source:” just use e.g. http://mirrors.rackhosting.com/apache/couchdb/source/1.4.0/apache-couchdb-1.4.0.tar.gz instead.
(2) Note that “$ ./configure $ make && make install” above is in two lines (two commands) i.e.: $ ./configure $ make && make install
(3) Also two lines (two commands) for the following: $ ln -s /usr/local/etc/init.d/couchdb /etc/init.d $ update-rc.d couchdb defaults
(4) There is a missing “d” above i.e. it should be “–disabled-password” in: $ adduser --disabled-login --disabled-password --no-create-home couchdb
(5) It may be necessary to ensure the following prior to installing couchdb. That is to ensure proper locale settings in the file “/etc/default/locale” (see more at: https://help.ubuntu.com/community/Locale): LANGUAGE = “en_US:en”, LC_ALL = “en_US.UTF-8”, LC_CTYPE = “UTF-8”, LANG = “en_US.UTF-8” are supported and installed on your system.
PS The configuration changes should be done, as far as I know, in the local.ini file and not in the default.ini file. Thus changes to bind_address, ssl enabling etc. should be done in the local.ini file.
if you want to acces your CouchDB install from the web you can set it up to listen to HTTP on port 80 by forwarding that port by using:
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-ports 5984
I did exactly as this article on Ubuntu 14.04, but there is a problem with Ubuntu 14.04. Something related to permission.
After install, I cant fix Admin Party!
Very good. I used this tutorial for my ubuntu server, but i want to install it on my centos server as well. Luckily i found this good tutorial. If there is another article for installing couchdb on centos, i will be happy to have it.
Thanks.