You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by Apache Wiki <wi...@apache.org> on 2008/11/02 00:21:48 UTC

[Couchdb Wiki] Update of "Installing on RHEL5" by MartinCzura

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.

The following page has been changed by MartinCzura:
http://wiki.apache.org/couchdb/Installing_on_RHEL5

The comment on the change is:
page creation

New page:
Installing on RHEL5 x86_64

1. Install prerequisites. You will need EPEL for js and erlang.

{{{
yum install ncurses-devel openssl-devel icu libicu-devel js js-devel curl-devel erlang
}}}

2. Install couchdb
{{{
svn checkout http://svn.apache.org/repos/asf/incubator/couchdb/trunk couchdb
cd couchdb
./bootstrap
./configure && make && make install
}}}

3. Edit config file to suit

{{{
vi /usr/local/etc/couchdb/couch.ini
}}}

4. Create users, chown directories
{{{
adduser -r -d /usr/local/var/lib/couchdb couchdb
chown -R couchdb /usr/local/var/lib/couchdb
chown -R couchdb /usr/local/var/log/couchdb
}}}

5. Launch! In console:
{{{
sudo -u couchdb couchdb
}}}
or as daemon:
{{{
sudo /usr/local/etc/rc.d/couchdb start
}}}