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 oommoo:
http://wiki.apache.org/couchdb/Installing_on_Fedora10

The comment on the change is:
initial text migration

New page:
## The basis for this page is originally from "Installing on Fedora10" which 
was itself renamed from InstallingOnRHEL4
Installing on Fedora Core 10 x86_64

1. install erlang
{{{
  # yum install erlang
}}}

Note : this currently results in a version R12B-4.3.fc10.

2. install other dependencies (no external repos required).

{{{
  # yum install icu libicu-devel js js-devel
}}}

Note : this results in icu version 4.0-3.fc10 and js version 1.70-3.

3. install couchdb

The code can be gotten from subversion using

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


{{{
  $ wget 
http://www.hightechimpact.com/Apache/incubator/couchdb/0.8.1-incubating/apache-couchdb-0.8.1-incubating.tar.gz
  $ tar -xzvf apache-couchdb-0.8.1-incubating.tar.gz 
  $ cd apache-couchdb-0.8.1-incubating
  $ ./configure
  $ make && make install
}}}

4. create couchdb user 
{{{
sudo adduser -r -d /usr/local/var/lib/couchdb couchdb
sudo chown -R couchdb /usr/local/var/lib/couchdb
sudo chown -R couchdb /usr/local/var/log/couchdb
}}}
5. (optional) edit basic settings like Port and !BindAddress
{{{
vim /usr/local/etc/couchdb/couch.ini
}}}
6. start CouchDB server in your terminal
{{{
sudo -u couchdb couchdb
}}}
or as daemon
{{{
sudo /usr/local/etc/rc.d/couchdb start
}}}

Access http://localhost:5984/_utils/index.html
or http://hostname:5984/_utils/index.html if you edited the !BindAddress

Reply via email to